From 5327bd399a41b7dad5769279a7d44264bb9e816f Mon Sep 17 00:00:00 2001 From: WanderingFox95 <75953558+WanderingFox95@users.noreply.github.com> Date: Sun, 18 Apr 2021 04:47:05 +0200 Subject: [PATCH 001/259] Modifies Parrots They spawn from hostile triggers, not as friendly pets now. --- code/modules/mob/living/simple_animal/parrot.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/simple_animal/parrot.dm b/code/modules/mob/living/simple_animal/parrot.dm index d146bb855f..f7e586763b 100644 --- a/code/modules/mob/living/simple_animal/parrot.dm +++ b/code/modules/mob/living/simple_animal/parrot.dm @@ -64,7 +64,7 @@ friendly_verb_simple = "groom" mob_size = MOB_SIZE_SMALL movement_type = FLYING - gold_core_spawnable = FRIENDLY_SPAWN + gold_core_spawnable = HOSTILE_SPAWN var/parrot_damage_upper = 10 var/parrot_state = PARROT_WANDER //Hunt for a perch when created From 3140586afa0501036574e3802fbb2742b095cd98 Mon Sep 17 00:00:00 2001 From: WanderingFox95 <75953558+WanderingFox95@users.noreply.github.com> Date: Mon, 19 Apr 2021 03:23:33 +0200 Subject: [PATCH 002/259] Removes Parrots from Gold Extracts altogether --- code/modules/mob/living/simple_animal/parrot.dm | 1 - 1 file changed, 1 deletion(-) diff --git a/code/modules/mob/living/simple_animal/parrot.dm b/code/modules/mob/living/simple_animal/parrot.dm index f7e586763b..bd45c482a2 100644 --- a/code/modules/mob/living/simple_animal/parrot.dm +++ b/code/modules/mob/living/simple_animal/parrot.dm @@ -64,7 +64,6 @@ friendly_verb_simple = "groom" mob_size = MOB_SIZE_SMALL movement_type = FLYING - gold_core_spawnable = HOSTILE_SPAWN var/parrot_damage_upper = 10 var/parrot_state = PARROT_WANDER //Hunt for a perch when created From 57938e7b1570b8c9264e585c86941e8659ca1012 Mon Sep 17 00:00:00 2001 From: WanderingFox95 <75953558+WanderingFox95@users.noreply.github.com> Date: Tue, 20 Apr 2021 19:36:30 +0200 Subject: [PATCH 003/259] Adds the Recipe 2 Ash 1 Lizard Wine 1 Vitrium Froth --- code/modules/food_and_drinks/recipes/drinks_recipes.dm | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/code/modules/food_and_drinks/recipes/drinks_recipes.dm b/code/modules/food_and_drinks/recipes/drinks_recipes.dm index 972f9a8cc3..4e07424159 100644 --- a/code/modules/food_and_drinks/recipes/drinks_recipes.dm +++ b/code/modules/food_and_drinks/recipes/drinks_recipes.dm @@ -604,6 +604,14 @@ mix_message = "You hear faint sounds of gears turning as it mixes." mix_sound = 'sound/machines/clockcult/steam_whoosh.ogg' +/datum/chemical_reaction/pinotmort + name = "Pinot Mort" + id = /datum/reagent/consumable/ethanol/pinotmort + results = list(/datum/reagent/consumable/ethanol/pinotmort = 3) + required_reagents = list(/datum/reagent/ash = 2, /datum/reagent/consumable/ethanol/lizardwine = 1, /datum/reagent/consumable/vitfro = 1) + mix_message = "You hear an undescribable scream as it mixes... You're not sure how to feel about this." + mix_sound = 'sound/effects/tendril_destroyed.ogg' + /datum/chemical_reaction/quadruplesec name = "Quadruple Sec" id = /datum/reagent/consumable/ethanol/quadruple_sec From c25c502b355f93d7f4a9401de599a109a76363fb Mon Sep 17 00:00:00 2001 From: WanderingFox95 <75953558+WanderingFox95@users.noreply.github.com> Date: Tue, 20 Apr 2021 19:39:40 +0200 Subject: [PATCH 004/259] The taste of Lavaland for you. It's really not that great. --- .../chemistry/reagents/alcohol_reagents.dm | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/code/modules/reagents/chemistry/reagents/alcohol_reagents.dm b/code/modules/reagents/chemistry/reagents/alcohol_reagents.dm index aae21464b1..af331a2d87 100644 --- a/code/modules/reagents/chemistry/reagents/alcohol_reagents.dm +++ b/code/modules/reagents/chemistry/reagents/alcohol_reagents.dm @@ -1490,6 +1490,25 @@ All effects don't start immediately, but rather get worse over time; the rate is M.stuttering = min(M.stuttering + 3, 3) ..() +/datum/reagent/consumable/ethanol/pinotmort + name = "Pinot Mort" + description = "If you just can't get enough of lavaland." + color = rgb(167, 36, 36) + boozepwr = 20 + quality = DRINK_FANTASTIC + taste_description = "death, lizards and bubblegum" + glass_icon_state = "pinotmort" + glass_name = "Pinot Mort" + glass_desc = "The taste of lavaland in a small cup. A drink best served hot. You feel like you might regret drinking this." + value = REAGENT_VALUE_UNCOMMON + +/datum/reagent/consumable/ethanol/pinotmort/on_mob_life(mob/living/carbon/M) + if((islizard(M) && M.mind.assigned_role == "Ash Walker") || ispodperson(M) && M.mind.assigned_role == "Lifebringer" || isgolem(M)) + M.heal_bodypart_damage(1, 1) + M.adjustBruteLoss(-2,0) + . = 1 + return ..() + /datum/reagent/consumable/ethanol/triple_sec name = "Triple Sec" description = "A sweet and vibrant orange liqueur." From ac96276f8ea50294b0a75365de8f6ad4c0a34fd0 Mon Sep 17 00:00:00 2001 From: DrPainis <79603707+DrPainis@users.noreply.github.com> Date: Tue, 20 Apr 2021 16:20:44 -0400 Subject: [PATCH 005/259] literally just changes one letter --- .../mob/living/simple_animal/hostile/megafauna/bubblegum.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/simple_animal/hostile/megafauna/bubblegum.dm b/code/modules/mob/living/simple_animal/hostile/megafauna/bubblegum.dm index 72a72d3683..4d54487244 100644 --- a/code/modules/mob/living/simple_animal/hostile/megafauna/bubblegum.dm +++ b/code/modules/mob/living/simple_animal/hostile/megafauna/bubblegum.dm @@ -23,7 +23,7 @@ Difficulty: Hard */ /mob/living/simple_animal/hostile/megafauna/bubblegum - name = "bubblegum" + name = "Bubblegum" desc = "In what passes for a hierarchy among slaughter demons, this one is king." health = 2500 maxHealth = 2500 From 0a5b58730400903e9aff2fcb7a197adf33124c2a Mon Sep 17 00:00:00 2001 From: necromanceranne <40847847+necromanceranne@users.noreply.github.com> Date: Wed, 21 Apr 2021 12:06:34 +1000 Subject: [PATCH 006/259] Adds fake blindfolds. For reasons. --- code/modules/clothing/glasses/_glasses.dm | 6 ++++++ modular_citadel/code/modules/client/loadout/glasses.dm | 4 ++++ 2 files changed, 10 insertions(+) diff --git a/code/modules/clothing/glasses/_glasses.dm b/code/modules/clothing/glasses/_glasses.dm index c79dee926c..01d27531e1 100644 --- a/code/modules/clothing/glasses/_glasses.dm +++ b/code/modules/clothing/glasses/_glasses.dm @@ -358,6 +358,12 @@ ..() user.cure_blind("blindfold_[REF(src)]") +/obj/item/clothing/glasses/fakeblindfold + name = "thin blindfold" + desc = "Covers the eyes, but not thick enough to obscure vision. Mostly for aesthetic." + icon_state = "blindfoldwhite" + item_state = "blindfoldwhite" + /obj/item/clothing/glasses/sunglasses/blindfold/white name = "blind personnel blindfold" desc = "Indicates that the wearer suffers from blindness." diff --git a/modular_citadel/code/modules/client/loadout/glasses.dm b/modular_citadel/code/modules/client/loadout/glasses.dm index b0eecbbf28..f3b07657f4 100644 --- a/modular_citadel/code/modules/client/loadout/glasses.dm +++ b/modular_citadel/code/modules/client/loadout/glasses.dm @@ -6,6 +6,10 @@ name = "Blindfold" path = /obj/item/clothing/glasses/sunglasses/blindfold +/datum/gear/glasses/fakeblindfold + name = "Fake Blindfold" + path = /obj/item/clothing/glasses/fakeblindfold + /datum/gear/glasses/cold name = "Cold goggles" path = /obj/item/clothing/glasses/cold From 57e0056ffcab1b4a46d1e9a637067f56f8dbda4e Mon Sep 17 00:00:00 2001 From: The0bserver Date: Wed, 21 Apr 2021 01:46:33 -0400 Subject: [PATCH 007/259] Spain without the S (Initial Commit) --- code/modules/cargo/packs/security.dm | 5 +---- code/modules/projectiles/guns/ballistic/automatic.dm | 4 ++-- 2 files changed, 3 insertions(+), 6 deletions(-) diff --git a/code/modules/cargo/packs/security.dm b/code/modules/cargo/packs/security.dm index cf9cc5e0d1..5256240704 100644 --- a/code/modules/cargo/packs/security.dm +++ b/code/modules/cargo/packs/security.dm @@ -80,7 +80,7 @@ /datum/supply_pack/security/russianclothing name = "Russian Surplus Clothing" - desc = "An old russian crate full of surplus armor that they used to use! Has two sets of bulletproff armor, a few union suits and some warm hats!" + desc = "An old russian crate full of surplus armor that they used to use! Has two sets of bulletproof armor, a few union suits and some warm hats!" contraband = TRUE cost = 5750 // Its basicly sec suits, good boots/gloves contains = list(/obj/item/clothing/suit/armor/navyblue/russian, @@ -98,13 +98,11 @@ /obj/item/clothing/mask/gas, /obj/item/clothing/mask/gas) crate_name = "surplus russian clothing" - crate_type = /obj/structure/closet/crate/internals /datum/supply_pack/security/russian_partisan name = "Russian Partisan Gear" desc = "An old russian partisan equipment crate, comes with a full russian outfit, a loaded surplus rifle and a second magazine." contraband = TRUE - access = FALSE cost = 6500 contains = list(/obj/item/clothing/suit/armor/navyblue/russian, /obj/item/clothing/shoes/combat, @@ -114,7 +112,6 @@ /obj/item/clothing/gloves/tackler/combat/insulated, /obj/item/clothing/mask/gas) crate_name = "surplus russian gear" - crate_type = /obj/structure/closet/crate/internals /datum/supply_pack/security/russian_partisan/fill(obj/structure/closet/crate/C) ..() diff --git a/code/modules/projectiles/guns/ballistic/automatic.dm b/code/modules/projectiles/guns/ballistic/automatic.dm index e8d53ddeb8..a3985c8f42 100644 --- a/code/modules/projectiles/guns/ballistic/automatic.dm +++ b/code/modules/projectiles/guns/ballistic/automatic.dm @@ -407,11 +407,11 @@ fire_sound = 'sound/weapons/rifleshot.ogg' weapon_weight = WEAPON_HEAVY mag_type = /obj/item/ammo_box/magazine/m10mm/rifle - fire_delay = 30 + fire_delay = 10 burst_size = 1 can_unsuppress = TRUE can_suppress = TRUE - w_class = WEIGHT_CLASS_HUGE + w_class = WEIGHT_CLASS_BULKY slot_flags = ITEM_SLOT_BACK automatic_burst_overlay = FALSE actions_types = list() From 4e3ab78ebdb2e57ab5a24ba157e2a18957cf6c55 Mon Sep 17 00:00:00 2001 From: The0bserver Date: Wed, 21 Apr 2021 02:25:55 -0400 Subject: [PATCH 008/259] Best to look the part. --- code/modules/cargo/packs/security.dm | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/code/modules/cargo/packs/security.dm b/code/modules/cargo/packs/security.dm index 5256240704..5b0766b460 100644 --- a/code/modules/cargo/packs/security.dm +++ b/code/modules/cargo/packs/security.dm @@ -83,12 +83,12 @@ desc = "An old russian crate full of surplus armor that they used to use! Has two sets of bulletproof armor, a few union suits and some warm hats!" contraband = TRUE cost = 5750 // Its basicly sec suits, good boots/gloves - contains = list(/obj/item/clothing/suit/armor/navyblue/russian, - /obj/item/clothing/suit/armor/navyblue/russian, + contains = list(/obj/item/clothing/under/syndicate/rus_army, + /obj/item/clothing/under/syndicate/rus_army, /obj/item/clothing/shoes/combat, /obj/item/clothing/shoes/combat, - /obj/item/clothing/head/ushanka, - /obj/item/clothing/head/ushanka, + /obj/item/clothing/head/helmet/rus_helmet, + /obj/item/clothing/head/helmet/rus_helmet, /obj/item/clothing/suit/armor/bulletproof, /obj/item/clothing/suit/armor/bulletproof, /obj/item/clothing/head/helmet/alt, @@ -110,6 +110,7 @@ /obj/item/clothing/suit/armor/bulletproof, /obj/item/clothing/head/helmet/alt, /obj/item/clothing/gloves/tackler/combat/insulated, + /obj/item/clothing/under/syndicate/rus_army, /obj/item/clothing/mask/gas) crate_name = "surplus russian gear" From 7102ec121c1b08b1837d4273c7e677b3e350bd6b Mon Sep 17 00:00:00 2001 From: The0bserver Date: Wed, 21 Apr 2021 02:31:08 -0400 Subject: [PATCH 009/259] missed one. --- code/modules/cargo/packs/security.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/cargo/packs/security.dm b/code/modules/cargo/packs/security.dm index 5b0766b460..fd5238fb44 100644 --- a/code/modules/cargo/packs/security.dm +++ b/code/modules/cargo/packs/security.dm @@ -106,7 +106,7 @@ cost = 6500 contains = list(/obj/item/clothing/suit/armor/navyblue/russian, /obj/item/clothing/shoes/combat, - /obj/item/clothing/head/ushanka, + /obj/item/clothing/head/helmet/rus_helmet, /obj/item/clothing/suit/armor/bulletproof, /obj/item/clothing/head/helmet/alt, /obj/item/clothing/gloves/tackler/combat/insulated, From 892dcaf9769219f5259d4f98d8e09157cb9a7b2e Mon Sep 17 00:00:00 2001 From: The0bserver Date: Wed, 21 Apr 2021 02:31:44 -0400 Subject: [PATCH 010/259] dumdum crate now dumdum crate dumdum --- code/modules/cargo/packs/security.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/cargo/packs/security.dm b/code/modules/cargo/packs/security.dm index fd5238fb44..8fc1275e4a 100644 --- a/code/modules/cargo/packs/security.dm +++ b/code/modules/cargo/packs/security.dm @@ -239,7 +239,7 @@ access = FALSE access_any = list(ACCESS_SECURITY, ACCESS_FORENSICS_LOCKERS) contains = list(/obj/item/ammo_box/c38/dumdum) - crate_name = ".38 match crate" + crate_name = ".38 dumdum crate" /datum/supply_pack/security/match name = ".38 Match Grade Speedloader" From db046f3dbbac219b6159698f05ae35c21b6fa7a1 Mon Sep 17 00:00:00 2001 From: The0bserver Date: Wed, 21 Apr 2021 03:12:01 -0400 Subject: [PATCH 011/259] I want to play Thermonuclear War (Initial Commit) --- code/modules/cargo/packs/armory.dm | 1 - .../projectiles/boxes_magazines/internal/derringer.dm | 6 +++--- code/modules/projectiles/guns/ballistic/derringer.dm | 4 ---- code/modules/uplink/uplink_items/uplink_stealth.dm | 4 ++-- 4 files changed, 5 insertions(+), 10 deletions(-) diff --git a/code/modules/cargo/packs/armory.dm b/code/modules/cargo/packs/armory.dm index bf79a3ed15..84a159c1e4 100644 --- a/code/modules/cargo/packs/armory.dm +++ b/code/modules/cargo/packs/armory.dm @@ -239,7 +239,6 @@ desc = "Hey kid.. c'mere. Boss says we need to offload these, to any buyer, no questions asked. You pay us, we give you three of these guns, no strings attached. Locks are to ensure they get to PAYING customers." cost = 2000 contraband = TRUE - can_private_buy = TRUE contains = list(/obj/item/storage/fancy/cigarettes/derringer/smuggled, /obj/item/storage/fancy/cigarettes/derringer/smuggled, /obj/item/storage/fancy/cigarettes/derringer/smuggled, diff --git a/code/modules/projectiles/boxes_magazines/internal/derringer.dm b/code/modules/projectiles/boxes_magazines/internal/derringer.dm index cc86549793..e052e0badd 100644 --- a/code/modules/projectiles/boxes_magazines/internal/derringer.dm +++ b/code/modules/projectiles/boxes_magazines/internal/derringer.dm @@ -3,7 +3,7 @@ ammo_type = /obj/item/ammo_casing/c38 caliber = "38" max_ammo = 2 - multiload = FALSE + multiload = 0 /obj/item/ammo_box/magazine/internal/derringer/ammo_count(countempties = 1) if (!countempties) @@ -20,11 +20,11 @@ ammo_type = /obj/item/ammo_casing/a357 caliber = "357" max_ammo = 2 - multiload = FALSE + multiload = 0 /obj/item/ammo_box/magazine/internal/derringer/g4570 name = "\improper derringer muzzle" ammo_type = /obj/item/ammo_casing/g4570 caliber = "45-70g" max_ammo = 2 - multiload = FALSE + multiload = 0 diff --git a/code/modules/projectiles/guns/ballistic/derringer.dm b/code/modules/projectiles/guns/ballistic/derringer.dm index a88a11b416..4b92d1d558 100644 --- a/code/modules/projectiles/guns/ballistic/derringer.dm +++ b/code/modules/projectiles/guns/ballistic/derringer.dm @@ -9,10 +9,6 @@ casing_ejector = FALSE w_class = WEIGHT_CLASS_TINY -/obj/item/gun/ballistic/derringer/Initialize() - ..() - transform *= 0.8 //Spriter too lazy to make icons smaller than default revolvers, local coder hacks in solution. - /obj/item/gun/ballistic/derringer/get_ammo(countchambered = FALSE, countempties = TRUE) var/boolets = 0 //legacy var name maturity if (chambered && countchambered) diff --git a/code/modules/uplink/uplink_items/uplink_stealth.dm b/code/modules/uplink/uplink_items/uplink_stealth.dm index 673f2ab6ee..63d70b9141 100644 --- a/code/modules/uplink/uplink_items/uplink_stealth.dm +++ b/code/modules/uplink/uplink_items/uplink_stealth.dm @@ -49,7 +49,7 @@ name = "Compact Derringer" desc = "An easily concealable handgun capable of firing .357 rounds. Comes in an inconspicuious packet of cigarettes with additional munitions." item = /obj/item/storage/fancy/cigarettes/derringer - cost = 8 + cost = 6 surplus = 30 /datum/uplink_item/stealthy_weapons/derringerpack/purchase(mob/user, datum/component/uplink/U) @@ -57,7 +57,7 @@ item = /obj/item/storage/fancy/cigarettes/derringer/gold ..() -/datum/uplink_item/stalthy_weapons/derringerpack_nukie +/datum/uplink_item/stealthy_weapons/derringerpack_nukie name = "Antique Derringer" desc = "An easy to conceal, yet extremely deadly handgun, capable of firing .45-70 Govt rounds. Comes in a unique pack of cigarettes with additional munitions." item = /obj/item/storage/fancy/cigarettes/derringer/midworld From bbd8086f7b3280a5323e606e4fe5b196c0960018 Mon Sep 17 00:00:00 2001 From: WanderingFox95 <75953558+WanderingFox95@users.noreply.github.com> Date: Wed, 21 Apr 2021 14:53:35 +0200 Subject: [PATCH 012/259] Updated description to fit more with the icon --- code/modules/reagents/chemistry/reagents/alcohol_reagents.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/reagents/chemistry/reagents/alcohol_reagents.dm b/code/modules/reagents/chemistry/reagents/alcohol_reagents.dm index af331a2d87..f53ac7ac40 100644 --- a/code/modules/reagents/chemistry/reagents/alcohol_reagents.dm +++ b/code/modules/reagents/chemistry/reagents/alcohol_reagents.dm @@ -1496,10 +1496,10 @@ All effects don't start immediately, but rather get worse over time; the rate is color = rgb(167, 36, 36) boozepwr = 20 quality = DRINK_FANTASTIC - taste_description = "death, lizards and bubblegum" + taste_description = "death, ash and lizards" glass_icon_state = "pinotmort" glass_name = "Pinot Mort" - glass_desc = "The taste of lavaland in a small cup. A drink best served hot. You feel like you might regret drinking this." + glass_desc = "The taste of Lavaland served in a legion skull. You feel like you might regret drinking this." value = REAGENT_VALUE_UNCOMMON /datum/reagent/consumable/ethanol/pinotmort/on_mob_life(mob/living/carbon/M) From b8292f7f56c19684a03f10ca9092b9ec68e67a2a Mon Sep 17 00:00:00 2001 From: WanderingFox95 <75953558+WanderingFox95@users.noreply.github.com> Date: Wed, 21 Apr 2021 15:15:07 +0200 Subject: [PATCH 013/259] Small adjustment to quantity Oops, it only made 3 instead of 4 --- code/modules/food_and_drinks/recipes/drinks_recipes.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/food_and_drinks/recipes/drinks_recipes.dm b/code/modules/food_and_drinks/recipes/drinks_recipes.dm index 4e07424159..943f421a64 100644 --- a/code/modules/food_and_drinks/recipes/drinks_recipes.dm +++ b/code/modules/food_and_drinks/recipes/drinks_recipes.dm @@ -607,7 +607,7 @@ /datum/chemical_reaction/pinotmort name = "Pinot Mort" id = /datum/reagent/consumable/ethanol/pinotmort - results = list(/datum/reagent/consumable/ethanol/pinotmort = 3) + results = list(/datum/reagent/consumable/ethanol/pinotmort = 4) required_reagents = list(/datum/reagent/ash = 2, /datum/reagent/consumable/ethanol/lizardwine = 1, /datum/reagent/consumable/vitfro = 1) mix_message = "You hear an undescribable scream as it mixes... You're not sure how to feel about this." mix_sound = 'sound/effects/tendril_destroyed.ogg' From 5a7a4d39edcbf12fbd4233ed3f83e57cc4012f61 Mon Sep 17 00:00:00 2001 From: WanderingFox95 <75953558+WanderingFox95@users.noreply.github.com> Date: Wed, 21 Apr 2021 15:20:09 +0200 Subject: [PATCH 014/259] Actually adds the icon, too. Totally forgot to upload it. --- icons/obj/drinks.dmi | Bin 116299 -> 117952 bytes 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/icons/obj/drinks.dmi b/icons/obj/drinks.dmi index 1b28b910c1d5bcf496b663291d1432528e61e54b..1c3b10b9decf52895e4920824b1ab1ee6fbe97cd 100644 GIT binary patch delta 21966 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 C!dYqn delta 20207 zcmb6BcU%+C_dbAb=tvg@Dbf|Bi-7c^h)B0k1p*=pNbfZpLKi8DfT9Re1f};Xp@=jA zrAiM?dT$A&+~xiG{_g$zzFr%$yED5p=ggcl&w0*-miN@Xuc(vQn8+|RQ~&@7RxsBA z0PU0VD;i{AXtQ763M2lWT3$@Lt=s9A+PlEK7fIG4feF`VtmQ5Xo-5&`yY@A?fEmS+ zmbWGO4wkxA#&QqG2VbZwCbK6PwT2j~e4H#z) zfM=fi_S$U=yR7?`XGJ^QDi$YlY36u+#?mj2d}_M?z=*#;#%5ePLh%C&&P{u<_ghX) z#*LDre02Um<2>z6xDJF@KKa;TEB0OjZ3h zJ{-k^j{psd@kqtR_vMc^XKx;lq*IXxccEgGsEsW7%r^HN?dKftJDE4L>g4p$2#5zQ zZe`IY^HR*rQL7Xr_c`>Vi@IlcWx^&*E>{=xDNyo=7(9K_PrX~MbuVI!UyPXo&t|;? zmr&GXo(_K@QGu*<8poYrjB-W2B5Jr3ogXLM)danIB^!0mQL}9MOZMmQr|g>n32pVqrQ4eTC~cZB;&e`s98(mgT}h_lff7{2!Pa*f*J zr;yqW&0AKy8=60@ZNo8j0pvA8md!#fmTkG=JfO_)h^S(--stb*@9EWsQdtto>`qH* z?-o1$Yp!?K&K}C5Q>&JbptY_lXu7>Z(fr)wt~`U#y^JG_a@AtvTj87EbzeY$*8N+rbKsKqrZWsw9+7PQ6H2 ziybrA6~(IGeK%M$`_4JpcMdLlme*5El5OTH8V1Cg==>Ce0=eP}0>)6Di_~F^MBf`7 zPhLg5^2c;rCbd0&Y<%1mqN7SrHtr1@_1Gmp8D(RqwzSy|XrnbTx$D|k4Xco*7K^_i zgDQKAYgm3G`jcLQ8q{KuowwnPb-BI{ehSI25sIOM4+e-v3Ix3PeRZ!MK2ymP zwy)VS?1!)z`p^M67e+Aiwv%@Goa5UjKP!dP^Xv8hd$N)08&6hZ;#siXe%Z}9#g z=_Il7Mmf{9hdbXGA}9HbB?lrE#5gQm-iJgxCzd4}+pQumrpao~j%dmEeX$sOAJSJR z7%zG!{XCNi=VEg`SKjK4zqM-)g(% zgVEtx)L%6vrwkn?N}k_vHBm9n?ua$`TH(9CeqUAL#t$8*ImKP&I_X2}3AXVZ8@21L zoGJIR*&oy0MULOCmNT+J>ur79$h$M|4Y#Gpe<023?C_&Jr|3}?=DJv4mN2ily8ec5 zb*|&E_iLIZ!HG9dKQ}Y>hu!Qt*L1%@c+C;n#P}8#B>AJa;)1VnwuZWSvaGq4B#1)P?S&P|sHB8h`uXzyEwGc}dVJG^aD8aw z_m*_w>McVF#<9Lq_l#tjJI~MAxYqyPD}C30;;xsUAkF%ySeUV8J)h^5*jKY4rI?~C zf;+!uBuUvhOrufXox?SH-QN#-7?T^UVe3EOX^Txx$&KpT|NW}!_t|Lqb|F6%y>_5b zQ}62bVN$nOgGy6CUNFXn;yJ}!^5Uzkny~vjGopebH!HuQONsd9&b7{2(3-%c#-6A- zC}!awo=RJrN(-~`1(V1m?(%;|dYOntPen(5DHJb8Nsb9@iDuKGw$>y=B#c|`M2c>- z5qEBBYK@s_GMmC4YhC&1mBMAURcPS!nfkY&gu(LhU8PkYuiE|hP9Ki2P&j2Z-{U{^cD73M^3U3`SGwlL%%E70U1UVj2ueVd2>Jb#crD z{ObrQt4^vNn+_g`b}f}&3)>Q=LG5UHxFP~QmT!NLTn-*MR<$~v574F|eyAn@?zN?A zM-mI#@&Kki`A#ZD#zpwy71i7*A_ zET`=4?elfMm(<8Tl3)HS-pq6Qt~v)s&ZoC?je_Ki11Z-k(O>Sp)v$~meSQ<@B3#x% z>?Nb;a4%ATg4X8boC-!Og}l0(#ah92v#PG50tXXqc!3vxTYJY&ftFP;1oiH`1QX!Y z`I8JfT3)A3Fm9MUDhjwxi&C6NKJEslQu0eENtq$v2mf3lOl=GIa)u;a8t%)N3bT=D zKLx;+4&oVhu?zSA!nJM`2?zUil1hi(qei)po;4@B2xV;^&~S^#0#4qSiZK?$h!$5i@`D)iPBKi zK7V5N{`58sSia3utnx(UhCiymXA}MD1XS|Eq>(F`i-@aS1UN2Zs)j>^}_1ikA z{)y9DpWer+D=NO9%~(0P(0NsOzbKqwSJ5xoC&smljN7xdO7nr2 z_smi-J$j@Mi(7x8IuD%Jy_cwwXN8t)si|>!vzO<+uFW0$NWA@qKCq;52s*`6jdR_C zE2)fPdY_lJpB@(zMI=r9&^tJP6S&j+w|IR0NwD$4KAaW&ZVpoF=q3-6i^Ok4`LUSU z-Ec+qRncw=l!(p~=Z2TQ0LGp;vI%t}yKIH^oibCYjjfIzF-FARm_?x~VCz3`S6iI3 zD6Ecq(fMup6NU-D@1Q0TnB5z_yW$3D%oecd1bSRQ(T=w@xlrn{8xJ=&m_g#@tV3fR z2!fx+K3gp7gIX%3_IW!o%pSf0q~;Ol6uq^hN0O;J>qWVbckZo=zm26VDJie&zxCc6 z^R@X?kB~n{Q_4Lj=Y^8{Ovr*mb<>KBKq(CmR#lIDO5;?zh#CNRni6{M1tK`2)`?vD z7x|!WRrIpzRK9o4n@2mv?qO1j^oGwfsjb~4+CJLEmxDVrjKV8L-@iAR6vtf3FAn<5 zKwU&B?)!-#s)5)OGno24b7`k>R!}6DrOKcU2Go|q+xrUHlR}ry_w@FZZGKM`ksz{o z-VR~c>yJGBG8u~dF$`xj6dT9c5v3UqPE44SherG64oZ? z&zxNvVjcUi-W&(hm}jdo5o6a=M~0^L-VZSHI8=)3?f8w}_EMypVcoEL9#e9A*41nM ze%-%>{pUtO5~95k%@yk`*;4-S*&dnAMyrJWW3Y^4Trz}cJz{op+;XyS#$X0AshtqE zU`dRG*UVxz95Iwj{x6XgR*Q0*C>2-l#it=;o7K;bFmTvjoZbfj;C*VOCfZY?5Cpr` z_BTNz#^7RxWw9y^3yS1?dg(OM)U4J)P#wo{LYOvtJorX=b%)+Oot`%9F}-|TUs$KT^q_0o?eDAe2%}>T<5T3l?U$EFouLc=(%sPTsxtKz zD^Ge+VK2%sPl|3lB~_AJdDRo=-p38Ol!zLQr^DVcuYwo>V-G^Z6sPdnL?fvbJT6Ub zUA}+ckJ8HcMyDD-WbBIHIS+LUtuE@gogA)5<9$tkd^ytI_?a+*`Xp%$Hk27F;b68; z|Jnv~Jla_$wY>kE7B4`HLmLc`bz3N zxb-6Qpv4<$ojsca@aMjJ2Y2s{^!PHcql2sc-`yerm|L!?4+Jf) zQ(ms=8|bXT;Swvao8da#;P~qL+v`Tjyqgm(vDRA*$nwX^X%s{Bjr^lNl~&lG9m$U(9bO;@lA z%`OHSbU_C!0s#1cds>>0l+90a=;tmSaGmb8)mBJ24&l_yw=cAqBG}E0as?l~Fw&jy z`_6R#&#|2?o>_|noFZlPgfSy$xZYD!cqd@YreumK9-s%Y55Rgd4|hb~fU0qA=arj2 z!#r_tv#f!vpy8t%EAlXAOA_Tg@6B*JI%;;dgl#q6h=sdSn#um{y9$Vd^UbFrNel0= zoqY+jDUIxWb+J5m%yeOoN&ug-2%HdxBBS~^82wR2z>o}7uy%L6rJN;O@LdoK56C@$ zaE<6Bdx8(PFE_cpaPuZ-yfkP0CD4{8*^YVecyICfb$YE6o1tI>pVdrG)r3HT;7_ON zlTKdVuML^de3@iwxxRS!8v5O{V#|g3-5eT5*9balzwDwF#_T6SZO;|AV&6zm)8Bo#%dduu-I^p-;zm-8B{ z0dG%IqVOXGU65-10bxW3u~>wLn;Ej2%B^l~kVbPB=uFo8wAa3EQxhMrx7BBR@gN$%1sOx$+W{}gMO}_S;>ixpg?~%g7KNiLfA=-P zsqXKq*vs|zep|#l#gqpqN5y``e>+`2myjp&*+#Ffj^6pRDF<2omT&Bd4VajR_9~%S zPPjPd_$Bm`QRnGK;fMG-G{?#85WRJfX*`{pe-VvTqGd!MdLsI#mK=j0{?kX7{_@>c zgQStY3E?-Y?)KgZ@w_Y?KYSz%Kl`c|gIc`{>b1OW4SoQYG%Z(ZB7>~2x{2b zNFL0wC>bd6B_)$<-(IU7i(yb(Np;KV&{7rm2CXgk{kcHxkx@fy*Jg>y}f5z zU3dr$f9#neeM`i!+!xfI!t=+J3MZGPe`Ww!KcdCi z!24`Y@)|rI4=24E>SP{mqQt&DcXn&ZzxRR|9ZSHOyF5Mt-72%BJi0p6I`D2suQTyQ z1Sk92$GMrIR|t~pvu1W^eUS8V+{Lec;lq2Q9ecLWURcYo-K)(c)jsCNS)TExgx-Jv zs|Y+k2|jQsh1A~wba-XbUvUN^>KOi^P_cjF)M>6ijDP*M(0h6jj*JSC!X~2 z%&BWd_m~%DcPqT6eL*~#7dFyC7$oe{p#`Ji8pS7LKcuWGqcCPC`^yQz%GI5RVribj z$6xF}g54RntP~M6&zUZ3;HG6B{dGyOr#(}o9x-87Y0k zwF3LXhnSf7wr~3!{7l>D%t^y5p4EGe0w=hem%)91FZcP;c$c$@ui46frrfQ?84AD( z?NvWfPNB&RQru_XRf-Ro;pLqpZKnk94mhOkfTdG(EzL^5WAE-ubDFHb{-nVpkaLTF zN?AhzaaM83kZkxC%?_*2=sCNKS%fifru>YCUvZ|?gOE{OtoDtJj<$DAG>GZrepT~k z)F{gt8~*l}{^?-R0uy~}`i5^n#bFsIrRLn+92VU9rPPRa?SuO6)&}`D=M6aI`kp)t z9_vzvtfJ;9sTJP7e|9?h@%}E}KDS{EP6fJ_kOE#6jVupb{4;>=&ajY6MElH%BEKzZ z2F}d1dbsBwUBI(K(jAhO(zbjc;a;<%u5IVB)>* zi`v5t?s{V7wYq5B!ys0`GvzeWj;ht^%0v=H#-W>m%Dn9r`Rdw-JLg$h$>TauKjXQ~ zxY#B16D}kS{Q6a8^wEb^1UJviAzx=o+`UAb^^Z6)3U@_METfxGN9u?(F$ki8q~)l; z(3$xyc{ZL)y7?^O=5G5*l@Hi7lZqHBpJ%$S%qD4N?)u9sAfPUX@(~U4$At?QvI+_c zCe}pe*#;H8|6zTtyNrk$M`wa*-Om3>3jq2-Q;XPa8^UEul6Vr;?PdY9-?tHa)D@Y0 zP)nQw)w;l0i)TjxysN^Q;moAYjzjYQSCVY;k_C(j(yJ{7Z9e;PKoynW>0gaI&N+Lk z^cV)wc0Jv5+XnX==^<-$)xVnD;Udpv@g01(sz0J@5{hiQ^59%EZgyesL6PGw+EV`vi(KAukTk>%4{xs~Ec5zPVodYYFZ0tuo$Cg6qq8q?|ls|?j-8s}6t z3j!Hv1ej?**ll~6G!))6CfM2Cz|MqfE7-urVk?1`JaXk%$48|>k{gL1uD8Eo%<||y zKW<5^ohtHBuEp@$gW+alB=A*RDyN~sO)p4ykQ830FMI^0{WbH?w>nzW1avrf99z+% zf74|TXXB-`3sucPk@8WI-zdwZ=N-J)@VE@uu-FB`i`Ps8A z&_SbVsJXz8Tc%{!yarVECOu(Clw77JawZC0!53R&qdhSGyE;9lEnx5B253W$Frj>t z{(k&)$QnBf4k9zH!*bQmVLKZXNSK!JyMrg`8DM5GkgJ(ryD9Fm#7x~PPX5H~(8r7? z6|w5q%sQrRC7*YmIcx1>TrcKpkyk(-V;-yYSF^RJ1b;q;mQksd_bFMGGM5+hiK4kM zcZgiQg{UDeR{anM0>nQ50Dz1ScLl1-spzsNvWmdEHqWUSu~%hX&qrW}Ljfd(xr12y z{PkU(lV^=XN6-k-BNndFUz#3ciKuKz21!x3F_8LnZoP%zT%V1}I>|7d!zhtsJ+H@H_5%F@wZh!sKobGT`p{>^k*eWj3Z5e7vG#+}ygd5p?@Ig-@ z=IR@jDi8c8PnIvv2kC{*d%-sP(Y5Q6S#RNgOAnTf*3zy<7qPzXQ=i1 z@c~pE_kq~*Cz^b??$TV)JE3n6O!P#T_Zd#|F81zrmlKjIPWcvf^=qbz%EWnC6In$L z1E!W|HylRE>H_ptn&-9yRNNpH=o4;;d8zPpx~q(2t(P7h4v6fjG%RGu-gpQ;i&|bt z-JI@_zJ zrtELb4*Z?X9QwMZ4z{F8%Ln`uhkyB|4lgaqOth70ntm>0QcYgh*-Lc!Ni4C^emvT; z{gA9ovGdt`?u)Bq45p_4{)&55pR3=SO>EbAls8m0umVj+%XFJ0QBk-o8{Qv(y2*!uJ+gKzoHx)H^YaPz0VoBes1EuThBAe zITasA{?F5DWwl2}Af<|k4D44`?6}iZM<3YhLzA-8j;1JzSBJ0_Wmm?D;6H5SifVJl z#tv`0U1BVpyZHd!Xr}{JxOY~eoD*^7u+SQUYv_qgu%1LDSW@|nzBW@UiP@bwm#x^h z0A}7+Cnk@P6MmSf1LCd~GPVTgOj6XEktkukvzfcI$A}qb&}}d>Jn{zUHn%mk2d7W2 zXac>9?J021h%$XOD_oxDrCv<$*<}U2nl*H((2JQ&fv5kkbfg45F$V7+K*Mj66~@e! zz4(g`-sC)TPi&1Z)vQ2+WkGNdU$VB{tN6Ni``p*eC7jvm$*C970%16OM1GWFR&#~1 zDg=G1{_ao7VP-9K0f83+r@)m;QtC_Md(kntE2v=w61S{9%o1>TTg|03X=XZ%IMc_a zi?qZH{Cz-jl2@04^Z=X`$&%P$x`G0~s_PDf_13Dtr6J})4?0G~WE*Q;h!j1KzeljI zySma7nJvctO=m~!P-;*sTRs0aXqd0FBXyWKmyQA8DDse4(ZlToZH3;nIcVPW93~EW zca5d-!{Mgu185^v;EYT=N>#l%d$O>5_r@{4)F>&cbL=wu({bC-^dJn=_&xd+u!F@k zvjG91>-bRut1zU1`b{Ix%YfEZ4~Z=#-11jehF5}>c_F;oyXv`=u7@dfbkh zYij@WWEytaUG=!lbKjt8fZ+nt)!r`$uYZECL**^x^9nae@XH12`|I%X{g2z!ojy+< zP?g+wq(L?+!0SIVvBvw8#vup(OcW<2ww`h_`7OsEJCe>M@V`HiIKHA~>$-iqea+#$ zLOEWoonATKAIJO}=~-UDyCeNtXMb~&+cv-b&k+xDAf)VH(_DwJa(*~n1q{4cGL!f3 z(aDX07Yv%5JYvMqHtD7JTdNn-*##ILN4W`!iWH)BB7Q$os--a4=2 zGF%Q#_XBpx`~8ie6oT{E?0u^0DbdqI;N{yLh}HkOn92B z*7#aF2Ga;2Yd2uF#?JO4ir`r1T&cbWD(c(f+1D#bz)3ju>c}n~ZHy&?A9lZ2N{G)H z7fG?0r2GFat5r$O!T>ind1636ac&{N#__OpRG^F6spo~2fE2;TGi9MB5D2;I{CiS7BotSsG7oFFyW#Ct%Y45Ip-KW5a-q8?RIB^56k z{QZWD{LK=S zii2`(V&Iy!%R@3V$vnb5P$dEoGyogY{0p-tHS>qKyh3amgnb|=)4O_%Gi(8N2ojPY zI5&&%)|?{eVYVcT^U13$F->HwSxk_pU^FPlfOqrFMY?2zFz>mCA7{7u?+N{SRyn(^$?V0- z#$Max(V5`noE8oRX!6EPfF^T=oy_}y%JEjOh)Vd*oOInv2^B{uH>Z_MdIHG#p zXqZ9&3x_1#W8pTp~L?$az;-;7tVw}81{U?#Cw1mVFDIv#Q$WL=N zP9ytt^r3veY!bczAUri;9>cdH$3zAMd>WWn=x4!`meSBW0P}>(1-uZ@03OMk`8{h$RD+$(sl%Xd(WyU||L~nh zh=Mn6$e`bSCzT4naZc#496ew!A*T(}%|VM19ciC)r%*I$SRV$i2RtV+GvXzA?u}25 zpHkQD)GoBZ7hYFoekWaIC;lH){(>YeQ6vvF``K|?i50adJ3aeH%cd`WJJ!C)eps?kE4)FHNZYLKy=RfNb%E4YvykEht0={9f4PiAvgG z{uR2&WWKY&j*+!0euHG7v(i+`uDn&ujnSc%JH?t_3M9@n$zG!`t7D0EI?9v`Z=~Um^sk1?M+q&VaGSk<6B4X zI_x1WAe1YCu0r+ch+MU2hY$?basHBx_EmXPVWL7JpMPBiS0#y&&zFPxcSyaoSDTW* z%p8J2zidMwy#0)}<@di736k1X04UqVKWLw%9(!Vn-o>7t80~Il`Mn8GhCysY3 z-lQ)F1{la{Vgh(nI_G{*kh*yAbO)a%UoyS?GlzL-mN7%p{ps6$`w`b2R^*wenITVP zOJ?gB_h-Hb?8W{u2lqFrp4~&{m;Ym`b=<|*a>++j?C25(`OKZrVqLR4ge^;W9=Ebz z5y}LBHf~hzoXSzRm@py3$2XRzC3x1S$gJZJUlBg7F-d1etbU{Z(JH~?`19{}Hgx7t z(sS%JeFrb9!BnD}X z79pg?vAc8@J=c|*PHxQmM|h)&`LE7_%@$r8 zkM_CxH=Y^pLtie673)P{;62GkuYRU8xbJ%j!|XggdvChctK|s|ykyGsYfgAbf-BWr zbarhA+xn$fi6vXJs(H=>ZXEFO2ZVn%jm?jA2nuRH@FX3+(YP{8vQTbzPty&jyxD`IK<)5hV z>DW1tHJ(?p^)|VJqtYJs+6D6ot;7oL8_wZUr zu$0o~nA{l3VaFs5A5ZP?bF@rtNEkUP^dwS-IE7JSad|%(0O};%U5M60!nkEsH(E(?{$k-It_}ccaq|;7 zP&MYjF?;zyGFgVU6>a*NB5V7uE6yfA-G1n~B@f_rP7le)M+!seh?N`ZZjF9X%yzT5 z&^v@MV?`kCuq^O!9$mRiP&x7```Z(cfMFfe z6e-*#jo?F6k~V%0I1+Emfx0S~t4(%tq?~k;V#>O@_7e2T7*GdojmQ8@+}lkErhZ<~ z$j88G@R9Zw0u&@Bk9hM!07x$|{@WhHbH7&nqr`#|FVD<{@9mt*L;)G#jwKBw4Q!sa zU*Ofafe}UaWTB@XM7&xaPrJ>H zr-Px(45q|>|29^J-Jdinh?9~iTNH+V9`;fWvYwGxY_uq}|UwRDDni-k$SMyWccT zw*Hx`jHe-Nev|F(#WvPc^!tHJS6n#!dFyM42u5%J@r-r}v ztDtkDh~^PG^b$R8Wao77WNp9`63lw{G*sC3f50AhA_IaZY!vFepZfzsS~I`C{N9ro zEPAu-lmA@5)GzA$U~lPQ2y-+%568!dmgbE(Y+_hMQSey{{4H&;kg^X?1UOlD8G#2{<*iUvH{YNU)`!QpcN1-ZW({F(%^h? zH})E2o|aFaMqhKr!F<<^5WaYZKpGkx`6L9)vS=Bb=|JFlU@#eTt~-6p+Vd$h4#>CSixT^D*iH2kzxXzLGXL`RM2M z+# z7RUKbAn1^zKt+lh;mkcm%obFD1xkqOIr<~tr0;!)BDGc*56MFt!j}JQ4H;xj z`VRmd7sfJUsTsB?!4dOw~*jnQ8mZY3jnBq5Y>W66#Lu_(`SQ~mp)S}7!y)x zlbn~Kko(FvZ1B-W_r_JDMPalh!eJ}>HUymMw4=>D211%2oX2zVQ;-(YO3BuDNo0_R zn5v20-0gU0YEBybjvd>%8t~;}srfp|$lpx?MJ$frcyV4h#r2VHV&cHR&q7Au1BIdO zk?oMK;s|F8RHUnJ{m2d-&*_7LwPEqu!@!A8)H%~ z^%i!pjbtX*J4fPH-3~NoVM5_Dd$MVE^$#s=jE`aSlVbpjIbcC-R%yjNCUi={BiZeP zt|{TE07mLNJM8=CuGfrP-R%T)$^=%-~=aGOL}V>1wZp3k9wcGlMKhD>$Ikv<(fq;ibpkQ{CV@#Dld?gpzal$ii+ zR?8>8x2+~SOA?o!uA)7H@_Q+?Xwewc93tpk*MX3mLcwWoUICy4z<-mgl)J8-yb<_I z4#KX4ld7QouWtcBpxq~ierQhGC&c}+8s!QF3tyQF!8cO&(xbs`QJCHM>0D2-HbM0Y zUlC#E4X+|zmLlfA%*3sTeEv(i6q$?u>J)mhi|s?q;#bxOWN@D;kWe`YlAVh%3NZ75V5URAsIiPkbE~U~1zbV}p^RQa{%z3P* z%`Q{e{>i>ma~8YgG65^&mHAO`pq|7;4O9-O_1136aJJoE-ufYJ1JiXD zNY9!nK<0CpbtjH(9Lh9VZw2GPrGcG(WmXvQ_3PJnir&wX(2-}-t*Lc)cQ-*<%?USI z&ew0=wBhNbe-n0xOclF>NkJ1HSmHZz;BPZNQ1CxK;Ph5mDYd0ITiSQZ%4ZDWE4)u4 z)x99iWD}Xkd@l%~>lxTb&y6w@*8k*0mu_)Z+7W_k zlS{M{FZYIUUxk>SE(8jrzzFp)dz`P(8FY9@>ht);TWKOkLKATk#3Rs1`k1CQ+UFFt zaz!$+mYP4wRRpC>n!0i0(IK@B!M@NH+RAq^-`+?(W(Mxs*mz?0F+ufn>}z)s`jJd) zLg;0(N3YY<*Qz7cuU~(S<3=*9kL~wKxwO|*23{Jit{)muZJgX;>i8)`hk`h05K8xj z8CZ?o2TB^oOJ0%anhL*>hR0LB;nvS>p_uYK*h8*Sj%2QtUiBK8UB1`Sd;pX!riH5S zg;S}u<>i;$$^5aqGDO=&E?xEfk}iyXlQtqEa_)4bcgNVJsJ0ebPP@0Mud$!gQ-nC1 zPqm)h%T!4ahRtr@=hqi5L@yRul5^*(UH#+)LDfpw9MC z?oRl7@Fa6;}V7F&!cAzz7b#up@Bb{{WkIf z?N-K$52-R?nH@p6;Nb>yP@+KL2mH{fs)g9H_oh>5ANhUcF-^?F z2M^xv3saY5^2M}-n~=4=?|W8CEn!&|W2CQNRAxRkYx~PlRsgca8{Yr)El4bG{pA+g zT2vg7ne)ECd0o2aRt#o#z0Jq|fi!_DPF?kkO1P0@e=MOrN(@eVd$HiqY)ERU9i^=T zEH3@a4vb?1kYDHWUQ((rnvF?ag?0t$L`V+_^Sz+N7gB{NyRyQk}Wr~6#Y*QD@-Hcp;K>cu9Q7V==~HMXYJQ(8TEYr zNm~4hAF1LkUF6HDu$TC?lf1e{F-eH5g;p6ia2c>t_|6K!n)$ZX3^(w-C5cwR;}Q-Z z^IL-Js3|?|L);gBO>D?%zuAXc$FSD}i9m?CJ`#U8X#}m!vfNFKFt0QU;~gXBuuj_K zSaso`Y0CcNuY6$pA)S!0@IG4{rFPE!lq=HY)6fI=ABUtwa&%ZoF;Y?)&cJqjQ**@!?lRKBI&A|KY?6UleCNwOBJ2U}I+)9oYNRQ5WwiIjcSevaG#ZtGDK~(n#tz!+? zMtdki6};TG@DogN0kVWz?yjgo=!@Crl3d6;hlNpBHR?x19wTD9AcI0=OD#ByV7r2{ z^+)8<9GtL*MRq@(?|Z|=H{(5^8ltUDg$M|3vY&MS7c%E72^5nF34Y=5{PxW1>?c>Z zY$8V2uaTxlPQK2PW>PJ)s{@tPinU&FKUq_Eb9 zOHT!t!uNaKh=S)?<$Km+3L1#+ItZ}iK-^fS>rcaECS8a9AFwgr%%yIC1`l^8y(pV|{Zf~l@ zHL87bbTrUm^mysOsOh*gpCNiXv6~FJ*_-+NWI*^g;Q_?mH;p$%s2xOPi*Ps&Uj&_F zM~{w1(qsYYM#8DZAi>=_6zn!u@-!O7Z{B^KRoP=xGkm^yvlvw?=a4h{v~LzM>;&qz zPEy(NijmfLnVv<9$IAX%C4@gDu=5a$VZgrwB7a;YoDXtH)W~Xh@z})}xtn z5WK{1{b&~fGeXX_Sj$@CG?u(E&)iDp+VbM`NxX01ilo({d=^&Lg#aEF7XGovtTL4@ zYxa0CUN<|QIEtHp>}~7Rg51`KMQ#gMpSu#5o<0PAQ+d+3WmDTaSVvGr!c~D1OSE;X z48ZhMosWSSDV@b~1?C$;3_Z2*t9?NU&`e`hhmhc~2_HS+ki%15wsQxf z3`?TQ)QB9J(J1<3N;nM;I2eM~ExSEZ629kz-KBg-ieVH6%*;MU)hBYS|2VeN2e+GR z)3y{XM5g=qwo4@Ez7dydy%_{8*Wbf4p=i+o;c~OR8I^s{-3W9zgvRYE40-it@ZqsV z2ZFSn!vpZfX4drVMY)n<>z_Zf)jT*)qYl$(kU(%gb*D^(iXM0>9Yy@Tar}!OK>B>R zs!cQv_)KiRECv!_S$b&+A)uQZ1k~sI-gQTAmIViT?UB& zT?7X0GMp}MHjsij8~3Ch8(=Q5>x~Y%6+OcnR;Qh7Dr1g{vY;gnK+cFCE}C_rZQ~*b zI92TSrh3NWmhG2NIQXu!FbrDSQV~Ifr3kmfgUQTDy{~6bzMroN`u7jTHP$*B zxlMMHAPC)=%EV+w@&Y^o7z7VsS`siY&5w_HjSklys%sS{n{}Oh783GTx_90E*A1(I z{+~EKv)wdwpK6o zFii}Nlcv!5NK@uUV8?gAbGUacV3Lm!d;2D+=43m4B86Q(AhrtdkO>Kq6?GEHkJ$cA z$3|~TRm~x*Tgs*6Q(SlS5DxfTJ5n>L2jo{f4L+55wd(pN1Ew$DM~mwf}JdKZ7wL zdr7XP&5~p+l{I5Yi9)gsF-U|gA%lrCml!uUZX3GUD)+iYhM0_M3?djzhc!IG@<{i1H@A$Uy{YYJ9yju@7dOsD)Uq=(S=f=d zysfI}U@PpL$_4uI3KJLj3(@XTxgMM;UmJ3_iRhv>yoR(Kl5Ujp9uH`U=lszSf`p>S zQH#=i-JqsNHEpOWqJz^o7T6S$zlF}_!QD03>Dxk&mBQ+9YtT)j3*aQs zcKqG8p462&Y)bWo2N|#&oL_P~!9gR%a~xcIv9G(Da#r`1IB;ou`?ZPnQ}2mHo~5JX z6NhR;i?xnpCWk|`dPBDrn-wo>-Q_a$`mroEuFhO~^cE7S?V+g&^?B>B3~YNgxyY)s zgcH9y2dY&*m18pI16fDjkj6f)L}~vb;&y>O0Jzy~E`{_7FEpEX{lOUzw{n3wyaXAT zMZ1#h*%Jah>k4iv=YzVb^?Pn=z~KA06WVj^=t*L^&)maKz!6?l{N-QvB(C451UO?o z2M@84CU9A1Jjr2Ozhoq+O(Ms<@)%NKauLrk**##GM)WPWgZc~2?)ftH$>K3Om#*& ziR?F>ZI|LTSk6Diq?$tvv+b zY_AMZsxyZ$?a{2Xjv8ru%e;D=@)n&&SEcX+)!2qnNj86Dm0iwxW$m&0O$6p_c!@w= z^(;tVJ*^;vYMJj|K|+oOr}Q^b9|;hqg)w7AFH9z0u;Pwe=%X!N(Gb- zkZ)gSatj9mL^em#uF`Dc@gisIWuJ8)kF?aj$h~ z+>r`197CN*nkf$x1`LOJQ-I~WW!7X}#(BbMm?vM^W)OPts$fwrz9LxRbqb+8-7HiT zXp#r$Kx2fWGa}F`z8@rrIrnpn+hS~MJ+34eBISuyLQfxulV5=RU#3aUO6Z8&Yz?g#JQB_q0;8o@-F;oY)2|gWr=iA``aYD%w zN%qvCePqW)PG*YXZ=KNkfsv^~DHZbLYkMs4t_U7bs>zZ0#0W@!jK-pivioy&`a#(| z_MdP-P9eV8p1MQQ@UC&VVTG>9vWdBFf(mH~`~04;v)NL8(*2=vX#ElC{M~gm6LV6- zPOmdq6p%;6GnAX}D1Y`UnzQ?Xu2M%4Bt$!j^}gg1#|7LS)V@s-N5Q7M36wW&_gYNX z2?PTF05flFjOhv77OD7lv*ioe(bToTP*Yd;8Hb3AWpphLycHPwcl?;Y1+#&*FD&W? z15gAg%kca>ErTHXy;gm}$Q-Cfr(JF22jY#-c(0|}4d8?eh;|Bzi_(N78h9t8PMK?d z`>^81hKP>6t4v!`QpPGE--Pl)t;nRt&Bo1SaXWZ2dKr2aeasu6KCb6}32^?-H#1qO zf{=#2W5^%;hawDI#jjS6_RFf4FOR#}lueKx?P-c;UtG zpxS(=2NDT%|L1-OpX{w~#ptn}=<4Y)qIG0ieZLw;eNk#Pxhv^h3;=(W?} zGXCuB&-MPGS*rpqBLC3c@xn6+^zTHb%h>}7Jl1dN>b?B-&gRW&lZ}M}Ub|h1KV?Tl zlNoMZ_~me0>tU!Fe4TyD6>6GpPxiGe`i;93aUJT1G6{u(XFg}{thpYaHx`l6nDpz& zqAWxjIwkPb`Ch@n40ews602(Lq9ZAEj>nof`tTW=M5&dy`^isCkdk8o`QI0P3)**Q zBvdTCu5F==%PGqU+^#|SVmwpFwVNj#pT;_YRh;BH%-co7m=BW$O4*yitsBs`GVel) zaj_$9PQFLNzMq)6U1Q;Y?)-V@=llRLrP}=~v<`>Br#AU+e-lk`{#}%To;OBnGFeI+ zh-sS_+%pvgt()TY*w4cz8OzBj(EQq5VsWADH1g5T=8u+QhaRFI2YxS~*B%!$+vAyf z)Ma2arnKapZ)-QcMo8|8o_$T+xPv&pW^i^ns@1lNbF}$Qr-4K=5Awio zcwmP{I8`SE`yv3h=rWVI(UE4ED1U;rQzvJW1eke#hv&j}pxXiP_Vz z{QPj`{I$0I_$Oo`S17G;t$L;aZU(AFlF~^^`KB0Kww(T3ro-c3mor~F)0I$+>z=GC zPBRMbE1{UOJN*6uF|cwsFSNZqNQ*wnmWT9buP^bs6tFW6nNKly+^t7(d+Ui@2oC!! zkuP6LKD0HTxxnrt(J-b%$U{pCVViDbEIzv(FLllWulxKfgh1$tyDffN z48Q$T==6(JV Date: Wed, 21 Apr 2021 09:58:08 -0400 Subject: [PATCH 015/259] tweaks --- .../projectiles/boxes_magazines/internal/derringer.dm | 11 ----------- code/modules/projectiles/guns/ballistic/derringer.dm | 3 ++- 2 files changed, 2 insertions(+), 12 deletions(-) diff --git a/code/modules/projectiles/boxes_magazines/internal/derringer.dm b/code/modules/projectiles/boxes_magazines/internal/derringer.dm index e052e0badd..dad8386178 100644 --- a/code/modules/projectiles/boxes_magazines/internal/derringer.dm +++ b/code/modules/projectiles/boxes_magazines/internal/derringer.dm @@ -3,17 +3,6 @@ ammo_type = /obj/item/ammo_casing/c38 caliber = "38" max_ammo = 2 - multiload = 0 - -/obj/item/ammo_box/magazine/internal/derringer/ammo_count(countempties = 1) - if (!countempties) - var/boolets = 0 - for(var/obj/item/ammo_casing/bullet in stored_ammo) - if(bullet.BB) - boolets++ - return boolets - else - return ..() /obj/item/ammo_box/magazine/internal/derringer/a357 name = "\improper derringer muzzle" diff --git a/code/modules/projectiles/guns/ballistic/derringer.dm b/code/modules/projectiles/guns/ballistic/derringer.dm index 4b92d1d558..d563e58c42 100644 --- a/code/modules/projectiles/guns/ballistic/derringer.dm +++ b/code/modules/projectiles/guns/ballistic/derringer.dm @@ -4,6 +4,7 @@ icon = 'icons/obj/guns/projectile.dmi' icon_state = "derringer" mag_type = /obj/item/ammo_box/magazine/internal/derringer + fire_delay = 5 obj_flags = UNIQUE_RENAME fire_sound = 'sound/weapons/revolvershot.ogg' casing_ejector = FALSE @@ -23,7 +24,7 @@ return var/num_loaded = magazine.attackby(A, user, params, 1) if(num_loaded) - to_chat(user, "You load [num_loaded] shell\s into \the [src].") + to_chat(user, "You load [num_loaded] bullet\s into \the [src].") playsound(user, 'sound/weapons/bulletinsert.ogg', 60, 1) A.update_icon() update_icon() From 6b4051071dab36a5033698dadccecae7012e2525 Mon Sep 17 00:00:00 2001 From: The0bserver Date: Wed, 21 Apr 2021 10:46:04 -0400 Subject: [PATCH 016/259] Finally, ammo for the funny gun. --- code/modules/projectiles/boxes_magazines/ammo_boxes.dm | 7 +++++++ code/modules/projectiles/guns/ballistic/derringer.dm | 1 + code/modules/uplink/uplink_items/uplink_ammo.dm | 7 +++++++ 3 files changed, 15 insertions(+) diff --git a/code/modules/projectiles/boxes_magazines/ammo_boxes.dm b/code/modules/projectiles/boxes_magazines/ammo_boxes.dm index 70058801f8..1f1cc10459 100644 --- a/code/modules/projectiles/boxes_magazines/ammo_boxes.dm +++ b/code/modules/projectiles/boxes_magazines/ammo_boxes.dm @@ -60,6 +60,13 @@ desc = "Designed to quickly reload revolvers. These rounds are manufactured within extremely tight tolerances, making them easy to show off trickshots with." ammo_type = /obj/item/ammo_casing/c38/match +/obj/item/ammo_box/g4570 + name = "ammo box (.45-70 GOVT)" + desc = "Brought to you at great expense,this box contains 10 more .45-70 GOVT bullets." + ammo_type = /obj/item/ammo_casing/g4570 + icon_state = "45box" + max_ammo = 10 + /obj/item/ammo_box/c9mm name = "ammo box (9mm)" icon_state = "9mmbox" diff --git a/code/modules/projectiles/guns/ballistic/derringer.dm b/code/modules/projectiles/guns/ballistic/derringer.dm index d563e58c42..47213f17df 100644 --- a/code/modules/projectiles/guns/ballistic/derringer.dm +++ b/code/modules/projectiles/guns/ballistic/derringer.dm @@ -3,6 +3,7 @@ desc = "A easily concealable derringer. Uses .38 ammo" icon = 'icons/obj/guns/projectile.dmi' icon_state = "derringer" + flags_1 = CONDUCT_1 mag_type = /obj/item/ammo_box/magazine/internal/derringer fire_delay = 5 obj_flags = UNIQUE_RENAME diff --git a/code/modules/uplink/uplink_items/uplink_ammo.dm b/code/modules/uplink/uplink_items/uplink_ammo.dm index 853f6111b2..2ab6c6f490 100644 --- a/code/modules/uplink/uplink_items/uplink_ammo.dm +++ b/code/modules/uplink/uplink_items/uplink_ammo.dm @@ -7,6 +7,13 @@ // Ammunition +/datum/uplink_item/ammo/derringer + name = "Ammo Box - .45-70 GOVT" + desc = "Contains 10 additional .45-70 GOVT rounds. Caliber is exceedingly rare, and thus, comes at a premium." + item = /obj/item/ammo_box/g4570 + cost = 5 + include_modes = list(/datum/game_mode/nuclear) + /datum/uplink_item/ammo/pistol name = "10mm Handgun Magazine" desc = "An additional 8-round 10mm magazine; compatible with the Stechkin Pistol. These rounds \ From 7e92781e938cb23c3ab99d7f429d6cb7b02462c3 Mon Sep 17 00:00:00 2001 From: The0bserver Date: Wed, 21 Apr 2021 11:50:41 -0400 Subject: [PATCH 017/259] Improved Cigarette Case Handling --- code/game/objects/items/storage/fancy.dm | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/code/game/objects/items/storage/fancy.dm b/code/game/objects/items/storage/fancy.dm index e73097bf18..f68084d63a 100644 --- a/code/game/objects/items/storage/fancy.dm +++ b/code/game/objects/items/storage/fancy.dm @@ -367,7 +367,7 @@ /obj/item/storage/fancy/cigarettes/derringer/AltClick(mob/living/carbon/user) if(!istype(user) || !user.canUseTopic(src, BE_CLOSE, ismonkey(user))) return - var/obj/item/W = (locate(/obj/item/ammo_casing/a357) in contents) || (locate(/obj/item/clothing/mask/cigarette) in contents) || locate(/obj/item/ammo_casing/g4570) //Easy access smokes and bullets + var/obj/item/W = (locate(/obj/item/ammo_casing/a357) in contents) || (locate(/obj/item/clothing/mask/cigarette) in contents) ||(locate(/obj/item/gun/ballistic/derringer) in contents) || (locate(/obj/item/ammo_casing/c38) in contents) || locate(/obj/item/ammo_casing/g4570) in contents//Easy access smokes and bullets if(W && contents.len > 0) SEND_SIGNAL(src, COMSIG_TRY_STORAGE_TAKE, W, user) user.put_in_hands(W) @@ -382,6 +382,7 @@ new /obj/item/ammo_casing/a357(src) new /obj/item/ammo_casing/a357(src) new /obj/item/ammo_casing/a357(src) + new /obj/item/ammo_casing/a357(src) new /obj/item/clothing/mask/cigarette/syndicate(src) //For traitors with luck/class @@ -404,6 +405,7 @@ new /obj/item/ammo_casing/g4570(src) new /obj/item/ammo_casing/g4570(src) new /obj/item/ammo_casing/g4570(src) + new /obj/item/ammo_casing/g4570(src) new /obj/item/clothing/mask/cigarette/xeno(src) //For Cargomen, looking for a good deal on arms, with no quarrels as to where they're from. @@ -419,6 +421,7 @@ new /obj/item/ammo_casing/c38/lethal(src) new /obj/item/ammo_casing/c38/lethal(src) new /obj/item/ammo_casing/c38/lethal(src) + new /obj/item/ammo_casing/c38/lethal(src) new /obj/item/clothing/mask/cigarette/shadyjims (src) ///////////// //CIGAR BOX// From 59d69125f6df853263169caf23dea2f9ec528b64 Mon Sep 17 00:00:00 2001 From: The0bserver Date: Wed, 21 Apr 2021 12:18:01 -0400 Subject: [PATCH 018/259] Consistency: You can hide it in your boots! --- code/datums/components/storage/concrete/pockets.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/datums/components/storage/concrete/pockets.dm b/code/datums/components/storage/concrete/pockets.dm index 20e1a0a4e2..1e3fff8a17 100644 --- a/code/datums/components/storage/concrete/pockets.dm +++ b/code/datums/components/storage/concrete/pockets.dm @@ -57,7 +57,7 @@ /obj/item/reagent_containers/hypospray/medipen, /obj/item/reagent_containers/dropper, /obj/item/implanter, /obj/item/screwdriver, /obj/item/weldingtool/mini, /obj/item/firing_pin, /obj/item/gun/ballistic/automatic/pistol, /obj/item/gun/ballistic/automatic/magrifle/pistol, - /obj/item/toy/plush/snakeplushie, /obj/item/gun/energy/e_gun/mini + /obj/item/toy/plush/snakeplushie, /obj/item/gun/energy/e_gun/mini, /obj/item/gun/ballistic/derringer )) /datum/component/storage/concrete/pockets/shoes/clown/Initialize() From 0f04bbb23b4c94ebf1dcd305a1fb12c47677fd91 Mon Sep 17 00:00:00 2001 From: necromanceranne <40847847+necromanceranne@users.noreply.github.com> Date: Thu, 22 Apr 2021 13:06:31 +1000 Subject: [PATCH 019/259] Ports a significant amount of the tg cybernetic organ code while making some additional changes to their power --- code/__DEFINES/_flags/item_flags.dm | 1 + code/game/objects/items/miscellaneous.dm | 4 +- code/modules/cargo/exports/organs_robotics.dm | 15 ++- .../research/designs/medical_designs.dm | 121 ++++++++++++------ .../research/techweb/nodes/medical_nodes.dm | 15 ++- code/modules/surgery/organs/heart.dm | 74 +++++++---- code/modules/surgery/organs/liver.dm | 36 ++++-- code/modules/surgery/organs/lungs.dm | 51 +++++--- code/modules/surgery/organs/organ_internal.dm | 4 + code/modules/surgery/organs/stomach.dm | 34 +++++ icons/obj/surgery.dmi | Bin 44539 -> 45213 bytes 11 files changed, 252 insertions(+), 103 deletions(-) diff --git a/code/__DEFINES/_flags/item_flags.dm b/code/__DEFINES/_flags/item_flags.dm index 7da71e22cb..529499127d 100644 --- a/code/__DEFINES/_flags/item_flags.dm +++ b/code/__DEFINES/_flags/item_flags.dm @@ -51,3 +51,4 @@ #define ORGAN_NO_SPOIL (1<<5) //Do not spoil under any circumstances #define ORGAN_NO_DISMEMBERMENT (1<<6) //Immune to disembowelment. #define ORGAN_EDIBLE (1<<7) //is a snack? :D +#define ORGAN_SYNTHETIC_EMP (1<<6) //Synthetic organ affected by an EMP. Deteriorates over time. diff --git a/code/game/objects/items/miscellaneous.dm b/code/game/objects/items/miscellaneous.dm index 224c4ffb9b..80466832a6 100644 --- a/code/game/objects/items/miscellaneous.dm +++ b/code/game/objects/items/miscellaneous.dm @@ -135,8 +135,8 @@ /obj/item/organ/cyberimp/arm/toolset, /obj/item/organ/cyberimp/arm/surgery, /obj/item/organ/cyberimp/chest/thrusters, - /obj/item/organ/lungs/cybernetic, - /obj/item/organ/liver/cybernetic) //cyberimplants range from a nice bonus to fucking broken bullshit so no subtypesof + /obj/item/organ/lungs/cybernetic/tier3, + /obj/item/organ/liver/cybernetic/tier3) //cyberimplants range from a nice bonus to fucking broken bullshit so no subtypesof for(var/V in templist) var/atom/A = V augment_list[initial(A.name)] = A diff --git a/code/modules/cargo/exports/organs_robotics.dm b/code/modules/cargo/exports/organs_robotics.dm index b65cf28949..08340e6a56 100644 --- a/code/modules/cargo/exports/organs_robotics.dm +++ b/code/modules/cargo/exports/organs_robotics.dm @@ -75,7 +75,7 @@ cost = 250 unit_name = "heart" export_types = list(/obj/item/organ/heart) - exclude_types = list(/obj/item/organ/heart/cursed, /obj/item/organ/heart/cybernetic) + exclude_types = list(/obj/item/organ/heart/cursed, /obj/item/organ/heart/cybernetic/tier2, /obj/item/organ/heart/cybernetic/tier3) /datum/export/organs/tongue cost = 75 @@ -92,29 +92,30 @@ cost = 50 //can be replaced unit_name = "stomach" export_types = list(/obj/item/organ/stomach) + exclude_types = list(/obj/item/organ/stomach/cybernetic/tier2, /obj/item/organ/stomach/cybernetic/tier3) /datum/export/organs/lungs cost = 150 unit_name = "lungs" - export_types = list(/obj/item/organ/lungs) - exclude_types = list(/obj/item/organ/lungs/cybernetic, /obj/item/organ/lungs/cybernetic/upgraded) + export_types = list(/obj/item/organ/lungs,) + exclude_types = list(/obj/item/organ/lungs/cybernetic/tier2, /obj/item/organ/lungs/cybernetic/tier3) /datum/export/organs/liver cost = 175 unit_name = "liver" export_types = list(/obj/item/organ/liver) - exclude_types = list(/obj/item/organ/liver/cybernetic, /obj/item/organ/liver/cybernetic/upgraded) + exclude_types = list(/obj/item/organ/liver/cybernetic/tier2, /obj/item/organ/liver/cybernetic/tier3) /datum/export/organs/cybernetic cost = 225 unit_name = "cybernetic organ" - export_types = list(/obj/item/organ/liver/cybernetic, /obj/item/organ/lungs/cybernetic, /obj/item/organ/eyes/robotic, /obj/item/organ/heart/cybernetic) - exclude_types = list(/obj/item/organ/lungs/cybernetic/upgraded, /obj/item/organ/liver/cybernetic/upgraded) + export_types = list(/obj/item/organ/liver/cybernetic/tier2, /obj/item/organ/lungs/cybernetic/tier2, /obj/item/organ/eyes/robotic/shield, /obj/item/organ/eyes/robotic/glow, /obj/item/organ/stomach/cybernetic/tier2, /obj/item/organ/heart/cybernetic/tier2) + exclude_types = list(/obj/item/organ/liver/cybernetic/tier3, /obj/item/organ/lungs/cybernetic/tier3, /obj/item/organ/eyes/robotic/xray, /obj/item/organ/eyes/robotic/thermals, /obj/item/organ/stomach/cybernetic/tier3, /obj/item/organ/heart/cybernetic/tier3) /datum/export/organs/upgraded cost = 275 unit_name = "upgraded cybernetic organ" - export_types = list(/obj/item/organ/lungs/cybernetic/upgraded, /obj/item/organ/liver/cybernetic/upgraded) + export_types = list(/obj/item/organ/liver/cybernetic/tier3, /obj/item/organ/lungs/cybernetic/tier3, /obj/item/organ/eyes/robotic/xray, /obj/item/organ/eyes/robotic/thermals, /obj/item/organ/stomach/cybernetic/tier3, /obj/item/organ/heart/cybernetic/tier3) /datum/export/organs/tail // yeah have fun pulling this off someone without catching a bwoink cost = 500 diff --git a/code/modules/research/designs/medical_designs.dm b/code/modules/research/designs/medical_designs.dm index e45434cec4..bb5989e5c6 100644 --- a/code/modules/research/designs/medical_designs.dm +++ b/code/modules/research/designs/medical_designs.dm @@ -644,66 +644,109 @@ //Cybernetic organs /datum/design/cybernetic_liver - name = "Cybernetic Liver" - desc = "A cybernetic liver" + name = "Basic Cybernetic Liver" + desc = "A basic cybernetic liver." id = "cybernetic_liver" build_type = PROTOLATHE | MECHFAB + construction_time = 40 materials = list(/datum/material/iron = 500, /datum/material/glass = 500) build_path = /obj/item/organ/liver/cybernetic - category = list("Misc","Medical Designs") - departmental_flags = DEPARTMENTAL_FLAG_MEDICAL - -/datum/design/cybernetic_heart - name = "Cybernetic Heart" - desc = "A cybernetic heart" - id = "cybernetic_heart" - build_type = PROTOLATHE | MECHFAB - materials = list(/datum/material/iron = 500, /datum/material/glass = 500) - build_path = /obj/item/organ/heart/cybernetic - category = list("Misc","Medical Designs") - departmental_flags = DEPARTMENTAL_FLAG_MEDICAL - -/datum/design/cybernetic_heart_u - name = "Upgraded Cybernetic Heart" - desc = "An upgraded cybernetic heart" - id = "cybernetic_heart_u" - build_type = PROTOLATHE | MECHFAB - construction_time = 50 - materials = list(/datum/material/iron = 500, /datum/material/glass = 500, /datum/material/silver = 500) - build_path = /obj/item/organ/heart/cybernetic/upgraded category = list("Misc", "Medical Designs") departmental_flags = DEPARTMENTAL_FLAG_MEDICAL -/datum/design/cybernetic_liver_u - name = "Upgraded Cybernetic Liver" - desc = "An upgraded cybernetic liver" - id = "cybernetic_liver_u" - build_type = PROTOLATHE | MECHFAB +/datum/design/cybernetic_liver/tier2 + name = "Cybernetic Liver" + desc = "A cybernetic liver." + id = "cybernetic_liver_tier2" materials = list(/datum/material/iron = 500, /datum/material/glass = 500) - build_path = /obj/item/organ/liver/cybernetic/upgraded - category = list("Misc","Medical Designs") + build_path = /obj/item/organ/liver/cybernetic/tier2 + +/datum/design/cybernetic_liver/tier3 + name = "Upgraded Cybernetic Liver" + desc = "An upgraded cybernetic liver." + id = "cybernetic_liver_tier3" + construction_time = 50 + materials = list(/datum/material/iron = 500, /datum/material/glass = 500, /datum/material/silver = 600, /datum/material/gold = 600, /datum/material/plasma = 1000, /datum/material/diamond = 2000) + build_path = /obj/item/organ/liver/cybernetic/tier3 + +/datum/design/cybernetic_heart + name = "Basic Cybernetic Heart" + desc = "A basic cybernetic heart." + id = "cybernetic_heart" + build_type = PROTOLATHE | MECHFAB + construction_time = 40 + materials = list(/datum/material/iron = 500, /datum/material/glass = 500) + build_path = /obj/item/organ/heart/cybernetic + category = list("Misc", "Medical Designs") departmental_flags = DEPARTMENTAL_FLAG_MEDICAL +/datum/design/cybernetic_heart/tier2 + name = "Cybernetic Heart" + desc = "A cybernetic heart." + id = "cybernetic_heart_tier2" + materials = list(/datum/material/iron = 500, /datum/material/glass = 500) + build_path = /obj/item/organ/heart/cybernetic/tier2 + +/datum/design/cybernetic_heart/tier3 + name = "Upgraded Cybernetic Heart" + desc = "An upgraded cybernetic heart." + id = "cybernetic_heart_tier3" + construction_time = 50 + materials = list(/datum/material/iron = 500, /datum/material/glass = 500, /datum/material/silver = 600, /datum/material/gold = 600, /datum/material/plasma = 1000, /datum/material/diamond = 2000) + build_path = /obj/item/organ/heart/cybernetic/tier3 + /datum/design/cybernetic_lungs - name = "Cybernetic Lungs" - desc = "A pair of cybernetic lungs." + name = "Basic Cybernetic Lungs" + desc = "A basic pair of cybernetic lungs." id = "cybernetic_lungs" build_type = PROTOLATHE | MECHFAB + construction_time = 40 materials = list(/datum/material/iron = 500, /datum/material/glass = 500) build_path = /obj/item/organ/lungs/cybernetic - category = list("Misc","Medical Designs") + category = list("Misc", "Medical Designs") departmental_flags = DEPARTMENTAL_FLAG_MEDICAL -/datum/design/cybernetic_lungs_u +/datum/design/cybernetic_lungs/tier2 + name = "Cybernetic Lungs" + desc = "A pair of cybernetic lungs." + id = "cybernetic_lungs_tier2" + materials = list(/datum/material/iron = 500, /datum/material/glass = 500) + build_path = /obj/item/organ/lungs/cybernetic/tier2 + +/datum/design/cybernetic_lungs/tier3 name = "Upgraded Cybernetic Lungs" desc = "A pair of upgraded cybernetic lungs." - id = "cybernetic_lungs_u" + id = "cybernetic_lungs_tier3" + construction_time = 50 + materials = list(/datum/material/iron = 500, /datum/material/glass = 500, /datum/material/silver = 600, /datum/material/gold = 600, /datum/material/plasma = 1000, /datum/material/diamond = 2000) + build_path = /obj/item/organ/lungs/cybernetic/tier3 + +/datum/design/cybernetic_stomach + name = "Basic Cybernetic Stomach" + desc = "A basic cybernetic stomach." + id = "cybernetic_stomach" build_type = PROTOLATHE | MECHFAB - materials = list(/datum/material/iron = 500, /datum/material/glass = 500, /datum/material/silver = 500) - build_path = /obj/item/organ/lungs/cybernetic/upgraded - category = list("Misc","Medical Designs") + construction_time = 40 + materials = list(/datum/material/iron = 500, /datum/material/glass = 500) + build_path = /obj/item/organ/stomach/cybernetic + category = list("Misc", "Medical Designs") departmental_flags = DEPARTMENTAL_FLAG_MEDICAL +/datum/design/cybernetic_stomach/tier2 + name = "Cybernetic Stomach" + desc = "A cybernetic stomach." + id = "cybernetic_stomach_tier2" + materials = list(/datum/material/iron = 500, /datum/material/glass = 500) + build_path = /obj/item/organ/stomach/cybernetic/tier2 + +/datum/design/cybernetic_stomach/tier3 + name = "Upgraded Cybernetic Stomach" + desc = "An upgraded cybernetic stomach." + id = "cybernetic_stomach_tier3" + construction_time = 50 + materials = list(/datum/material/iron = 500, /datum/material/glass = 500, /datum/material/silver = 600, /datum/material/gold = 600, /datum/material/plasma = 1000, /datum/material/diamond = 2000) + build_path = /obj/item/organ/stomach/cybernetic/tier3 + /datum/design/cybernetic_tongue name = "Cybernetic tongue" desc = "A fancy cybernetic tongue." @@ -711,7 +754,7 @@ build_type = PROTOLATHE | MECHFAB materials = list(/datum/material/iron = 500, /datum/material/glass = 500) build_path = /obj/item/organ/tongue/cybernetic - category = list("Misc","Medical Designs") + category = list("Misc", "Medical Designs") departmental_flags = DEPARTMENTAL_FLAG_MEDICAL /datum/design/cybernetic_ears diff --git a/code/modules/research/techweb/nodes/medical_nodes.dm b/code/modules/research/techweb/nodes/medical_nodes.dm index 0eca3ea877..1d7d579dad 100644 --- a/code/modules/research/techweb/nodes/medical_nodes.dm +++ b/code/modules/research/techweb/nodes/medical_nodes.dm @@ -67,20 +67,27 @@ design_ids = list("implanter", "implantcase", "implant_chem", "implant_tracking", "locator", "c38_trac") research_costs = list(TECHWEB_POINT_TYPE_GENERIC = 2500) +/datum/techweb_node/basic_cyber_organs + id = "basic_cyber_organs" + starting_node = TRUE + display_name = "Basic Cybernetic Organs" + description = "We have the techinology to force him to live a disgusting halflife." + design_ids = list("cybernetic_liver", "cybernetic_heart", "cybernetic_lungs", "cybernetic_stomach") + /datum/techweb_node/cyber_organs id = "cyber_organs" display_name = "Cybernetic Organs" description = "We have the technology to rebuild him." - prereq_ids = list("adv_biotech") - design_ids = list("cybernetic_ears", "cybernetic_heart", "cybernetic_liver", "cybernetic_lungs", "cybernetic_tongue") + prereq_ids = list("biotech") + design_ids = list("cybernetic_ears", "cybernetic_heart_tier2", "cybernetic_liver_tier2", "cybernetic_lungs_tier2", "cybernetic_stomach_tier2") research_costs = list(TECHWEB_POINT_TYPE_GENERIC = 1000) /datum/techweb_node/cyber_organs_upgraded id = "cyber_organs_upgraded" display_name = "Upgraded Cybernetic Organs" description = "We have the technology to upgrade him." - prereq_ids = list("cyber_organs") - design_ids = list("cybernetic_ears_u", "cybernetic_heart_u", "cybernetic_liver_u", "cybernetic_lungs_u", "ipc_stomach") + prereq_ids = list("adv_biotech", "cyber_organs") + design_ids = list("cybernetic_ears_u", "cybernetic_heart_tier3", "cybernetic_liver_tier3", "cybernetic_lungs_tier3", "cybernetic_stomach_tier3") research_costs = list(TECHWEB_POINT_TYPE_GENERIC = 1500) /datum/techweb_node/cyber_implants diff --git a/code/modules/surgery/organs/heart.dm b/code/modules/surgery/organs/heart.dm index 4dba68ada3..2079e729f4 100644 --- a/code/modules/surgery/organs/heart.dm +++ b/code/modules/surgery/organs/heart.dm @@ -197,45 +197,67 @@ colour = "red" /obj/item/organ/heart/cybernetic - name = "cybernetic heart" - desc = "An electronic device designed to mimic the functions of an organic human heart. Offers no benefit over an organic heart other than being easy to make." + name = "basic cybernetic heart" + desc = "A basic electronic device designed to mimic the functions of an organic human heart." icon_state = "heart-c" organ_flags = ORGAN_SYNTHETIC + maxHealth = STANDARD_ORGAN_THRESHOLD*0.75 //This also hits defib timer, so a bit higher than its less important counterparts + + var/dose_available = FALSE + var/rid = /datum/reagent/medicine/epinephrine + var/ramount = 10 + var/emp_vulnerability = 80 //Chance of permanent effects if emp-ed. + +/obj/item/organ/heart/cybernetic/tier2 + name = "cybernetic heart" + desc = "An electronic device designed to mimic the functions of an organic human heart. Also holds an emergency dose of epinephrine, used automatically after facing severe trauma." + icon_state = "heart-c-u" + maxHealth = 1.5 * STANDARD_ORGAN_THRESHOLD + dose_available = TRUE + emp_vulnerability = 40 + +/obj/item/organ/heart/cybernetic/tier3 + name = "upgraded cybernetic heart" + desc = "An electronic device designed to mimic the functions of an organic human heart. Also holds an emergency dose of epinephrine, used automatically after facing severe trauma. This upgraded model can regenerate its dose after use." + icon_state = "heart-c-u2" + maxHealth = 2 * STANDARD_ORGAN_THRESHOLD + dose_available = TRUE + rid = /datum/reagent/medicine/atropine + ramount = 5 + emp_vulnerability = 20 /obj/item/organ/heart/cybernetic/emp_act(severity) . = ..() + + // If the owner doesn't need a heart, we don't need to do anything with it. + if(!owner.needs_heart()) + return + if(. & EMP_PROTECT_SELF) return - Stop() - addtimer(CALLBACK(src, .proc/Restart), 0.2*severity SECONDS) - damage += severity + if(!COOLDOWN_FINISHED(src, severe_cooldown)) //So we cant just spam emp to kill people. + owner.Dizzy(10) + owner.losebreath += 10 + COOLDOWN_START(src, severe_cooldown, 20 SECONDS) + if(prob(emp_vulnerability/severity)) //Chance of permanent effects + organ_flags |= ORGAN_SYNTHETIC_EMP //Starts organ faliure - gonna need replacing soon. + Stop() + owner.visible_message("[owner] clutches at [owner.p_their()] chest as if [owner.p_their()] heart is stopping!", \ + "You feel a terrible pain in your chest, as if your heart has stopped!") + addtimer(CALLBACK(src, .proc/Restart), 10 SECONDS) -/obj/item/organ/heart/cybernetic/upgraded - name = "upgraded cybernetic heart" - desc = "An electronic device designed to mimic the functions of an organic human heart. Also holds an emergency dose of epinephrine, used automatically after facing severe trauma. This upgraded model can regenerate its dose after use." - icon_state = "heart-c-u" - maxHealth = 2 * STANDARD_ORGAN_THRESHOLD - - //I put it on upgraded for now. - var/dose_available = TRUE - var/rid = /datum/reagent/medicine/epinephrine - var/ramount = 10 - -/obj/item/organ/heart/cybernetic/upgraded/on_life() +/obj/item/organ/heart/cybernetic/on_life(delta_time, times_fired) . = ..() - if(!.) - return if(dose_available && owner.health <= owner.crit_threshold && !owner.reagents.has_reagent(rid)) - owner.reagents.add_reagent(rid, ramount) used_dose() - if(ramount < 10) //eats your nutrition to regen epinephrine - var/regen_amount = owner.nutrition/2000 - owner.adjust_nutrition(-regen_amount) - ramount += regen_amount -/obj/item/organ/heart/cybernetic/upgraded/proc/used_dose() +/obj/item/organ/heart/cybernetic/proc/used_dose() + owner.reagents.add_reagent(rid, ramount) + dose_available = FALSE + +/obj/item/organ/heart/cybernetic/tier3/used_dose() + . = ..() addtimer(VARSET_CALLBACK(src, dose_available, TRUE), 5 MINUTES) - ramount = 0 /obj/item/organ/heart/ipc name = "IPC heart" diff --git a/code/modules/surgery/organs/liver.dm b/code/modules/surgery/organs/liver.dm index 749f5a8c38..afc770efae 100755 --- a/code/modules/surgery/organs/liver.dm +++ b/code/modules/surgery/organs/liver.dm @@ -98,23 +98,41 @@ icon_state = "liver-c" /obj/item/organ/liver/cybernetic - name = "cybernetic liver" + name = "basic cybernetic liver" icon_state = "liver-c" - desc = "An electronic device designed to mimic the functions of a human liver. It has no benefits over an organic liver, but is easy to produce." + desc = "A very basic device designed to mimic the functions of a human liver. Handles toxins slightly worse than an organic liver." organ_flags = ORGAN_SYNTHETIC - maxHealth = 1.1 * STANDARD_ORGAN_THRESHOLD + toxTolerance = 0.3 * LIVER_DEFAULT_TOX_TOLERANCE //little less than 1u of toxin purging + toxLethality = 1.1 * LIVER_DEFAULT_TOX_LETHALITY + maxHealth = STANDARD_ORGAN_THRESHOLD*0.5 -/obj/item/organ/liver/cybernetic/upgraded - name = "upgraded cybernetic liver" + var/emp_vulnerability = 80 //Chance of permanent effects if emp-ed. + +/obj/item/organ/liver/cybernetic/tier2 + name = "cybernetic liver" icon_state = "liver-c-u" - desc = "An upgraded version of the cybernetic liver, designed to improve upon organic livers. It is resistant to alcohol poisoning and is very robust at filtering toxins." + desc = "An electronic device designed to mimic the functions of a human liver. Handles toxins slightly better than an organic liver." + maxHealth = 1.5 * STANDARD_ORGAN_THRESHOLD + toxTolerance = 2 * LIVER_DEFAULT_TOX_TOLERANCE //6 units of toxin purging + toxLethality = 0.8 * LIVER_DEFAULT_TOX_LETHALITY //20% less damage than a normal liver + emp_vulnerability = 40 + +/obj/item/organ/liver/cybernetic/tier3 + name = "upgraded cybernetic liver" + icon_state = "liver-c-u2" + desc = "An upgraded version of the cybernetic liver, designed to improve further upon organic livers. It is resistant to alcohol poisoning and is very robust at filtering toxins." alcohol_tolerance = 0.001 maxHealth = 2 * STANDARD_ORGAN_THRESHOLD - toxTolerance = 15 //can shrug off up to 15u of toxins - toxLethality = 0.008 //20% less damage than a normal liver + toxTolerance = 5 * LIVER_DEFAULT_TOX_TOLERANCE //15 units of toxin purging + toxLethality = 0.4 * LIVER_DEFAULT_TOX_LETHALITY //60% less damage than a normal liver + emp_vulnerability = 20 /obj/item/organ/liver/cybernetic/emp_act(severity) . = ..() if(. & EMP_PROTECT_SELF) return - damage += severity + if(!COOLDOWN_FINISHED(src, severe_cooldown)) //So we cant just spam emp to kill people. + owner.adjustToxLoss(10) + COOLDOWN_START(src, severe_cooldown, 10 SECONDS) + if(prob(emp_vulnerability/severity)) //Chance of permanent effects + organ_flags |= ORGAN_SYNTHETIC_EMP //Starts organ faliure - gonna need replacing soon. diff --git a/code/modules/surgery/organs/lungs.dm b/code/modules/surgery/organs/lungs.dm index 083c71fda2..73fbe3412c 100644 --- a/code/modules/surgery/organs/lungs.dm +++ b/code/modules/surgery/organs/lungs.dm @@ -547,33 +547,52 @@ maxHealth = INFINITY//I don't understand how plamamen work, so I'm not going to try t give them special lungs atm /obj/item/organ/lungs/cybernetic - name = "cybernetic lungs" - desc = "A cybernetic version of the lungs found in traditional humanoid entities. It functions the same as an organic lung and is merely meant as a replacement." + name = "basic cybernetic lungs" + desc = "A basic cybernetic version of the lungs found in traditional humanoid entities." icon_state = "lungs-c" organ_flags = ORGAN_SYNTHETIC - maxHealth = 400 - safe_oxygen_min = 13 + maxHealth = STANDARD_ORGAN_THRESHOLD * 0.5 -/obj/item/organ/lungs/cybernetic/emp_act() - . = ..() - if(. & EMP_PROTECT_SELF) - return - owner.losebreath = 20 - owner.adjustOrganLoss(ORGAN_SLOT_LUNGS, 25) + var/emp_vulnerability = 80 //Chance of permanent effects if emp-ed. -/obj/item/organ/lungs/cybernetic/upgraded - name = "upgraded cybernetic lungs" - desc = "A more advanced version of the stock cybernetic lungs. They are capable of filtering out lower levels of toxins and carbon dioxide." +/obj/item/organ/lungs/cybernetic/tier2 + name = "cybernetic lungs" + desc = "A cybernetic version of the lungs found in traditional humanoid entities. Allows for greater intakes of oxygen than organic lungs, requiring slightly less pressure." icon_state = "lungs-c-u" - safe_toxins_max = 20 - safe_co2_max = 20 - safe_oxygen_max = 250 + maxHealth = 1.5 * STANDARD_ORGAN_THRESHOLD + safe_oxygen_min = 13 + safe_oxygen_max = 100 + emp_vulnerability = 40 + +/obj/item/organ/lungs/cybernetic/tier3 + name = "upgraded cybernetic lungs" + desc = "A more advanced version of the stock cybernetic lungs. Features the ability to filter out various airbourne toxins and carbon dioxide even at heavy levels." + icon_state = "lungs-c-u2" + maxHealth = 2 * STANDARD_ORGAN_THRESHOLD + safe_oxygen_min = 4 //You could literally be breathing the thinnest amount of oxygen and be fine + safe_oxygen_max = 250 //Or be in an enriched oxygen room for that matter + safe_toxins_max = 50 + safe_co2_max = 50 + SA_para_min = 50 + SA_sleep_min = 100 + BZ_trip_balls_min = 50 + emp_vulnerability = 20 cold_level_1_threshold = 200 cold_level_2_threshold = 140 cold_level_3_threshold = 100 maxHealth = 550 +/obj/item/organ/lungs/cybernetic/emp_act(severity) + . = ..() + if(. & EMP_PROTECT_SELF) + return + if(!COOLDOWN_FINISHED(src, severe_cooldown)) //So we cant just spam emp to kill people. + owner.losebreath += 20 + COOLDOWN_START(src, severe_cooldown, 30 SECONDS) + if(prob(emp_vulnerability/severity)) //Chance of permanent effects + organ_flags |= ORGAN_SYNTHETIC_EMP //Starts organ faliure - gonna need replacing soon. + /obj/item/organ/lungs/ashwalker name = "ash lungs" desc = "blackened lungs identical from specimens recovered from lavaland, unsuited to higher air pressures." diff --git a/code/modules/surgery/organs/organ_internal.dm b/code/modules/surgery/organs/organ_internal.dm index cb4de69fbd..6cdeadcbb3 100644 --- a/code/modules/surgery/organs/organ_internal.dm +++ b/code/modules/surgery/organs/organ_internal.dm @@ -16,6 +16,7 @@ var/decay_factor = 0 //same as above but when without a living owner, set to 0 for generic organs var/high_threshold = STANDARD_ORGAN_THRESHOLD * 0.45 //when severe organ damage occurs var/low_threshold = STANDARD_ORGAN_THRESHOLD * 0.1 //when minor organ damage occurs + var/severe_cooldown //cooldown for severe effects, used for synthetic organ emp effects. ///Organ variables for determining what we alert the owner with when they pass/clear the damage thresholds var/prev_damage = 0 @@ -153,6 +154,9 @@ /obj/item/organ/proc/on_life() //repair organ damage if the organ is not failing or synthetic if(organ_flags & ORGAN_FAILING || !owner) return FALSE + if(organ_flags & ORGAN_SYNTHETIC_EMP) //Synthetic organ has been emped, is now failing. + applyOrganDamage(maxHealth * decay_factor) + return if(!is_cold() && damage) ///Damage decrements by a percent of its maxhealth var/healing_amount = -(maxHealth * healing_factor) diff --git a/code/modules/surgery/organs/stomach.dm b/code/modules/surgery/organs/stomach.dm index ba7b950602..f286c294fc 100644 --- a/code/modules/surgery/organs/stomach.dm +++ b/code/modules/surgery/organs/stomach.dm @@ -93,6 +93,40 @@ icon_state = "stomach-p" desc = "A strange crystal that is responsible for metabolizing the unseen energy force that feeds plasmamen." +/obj/item/organ/stomach/cybernetic + name = "basic cybernetic stomach" + icon_state = "stomach-c" + desc = "A basic device designed to mimic the functions of a human stomach" + organ_flags = ORGAN_SYNTHETIC + maxHealth = STANDARD_ORGAN_THRESHOLD * 0.5 + var/emp_vulnerability = 80 //Chance of permanent effects if emp-ed. + +/obj/item/organ/stomach/cybernetic/tier2 + name = "cybernetic stomach" + icon_state = "stomach-c-u" + desc = "An electronic device designed to mimic the functions of a human stomach. Handles disgusting food a bit better." + maxHealth = 1.5 * STANDARD_ORGAN_THRESHOLD + disgust_metabolism = 2 + emp_vulnerability = 40 + +/obj/item/organ/stomach/cybernetic/tier3 + name = "upgraded cybernetic stomach" + icon_state = "stomach-c-u2" + desc = "An upgraded version of the cybernetic stomach, designed to improve further upon organic stomachs. Handles disgusting food very well." + maxHealth = 2 * STANDARD_ORGAN_THRESHOLD + disgust_metabolism = 3 + emp_vulnerability = 20 + +/obj/item/organ/stomach/cybernetic/emp_act(severity) + . = ..() + if(. & EMP_PROTECT_SELF) + return + if(!COOLDOWN_FINISHED(src, severe_cooldown)) //So we cant just spam emp to kill people. + owner.vomit(stun = FALSE) + COOLDOWN_START(src, severe_cooldown, 10 SECONDS) + if(prob(emp_vulnerability/severity)) //Chance of permanent effects + organ_flags |= ORGAN_SYNTHETIC_EMP //Starts organ faliure - gonna need replacing soon. + /obj/item/organ/stomach/ipc name = "ipc cell" icon_state = "stomach-ipc" diff --git a/icons/obj/surgery.dmi b/icons/obj/surgery.dmi index 0460934eee163988b724d4398cf7cade6593aadd..52172bbe292a5303fda2eaa53d57428de1d43aa0 100755 GIT binary patch literal 45213 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 ZNBJ{g!`6M7mjnWSo;=joEYYwI`yU6Nb`Agl literal 44539 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
    @~0KohCAw9Xanx`)0FFt!W-4K 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 Oeh)SE?iH!qz5ZXZ9mN0u From c924d479119b7b9c42a6afd7681a8a8bcd844278 Mon Sep 17 00:00:00 2001 From: necromanceranne <40847847+necromanceranne@users.noreply.github.com> Date: Thu, 22 Apr 2021 13:13:10 +1000 Subject: [PATCH 020/259] brings the values down even further --- code/modules/surgery/organs/lungs.dm | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/code/modules/surgery/organs/lungs.dm b/code/modules/surgery/organs/lungs.dm index 73fbe3412c..4d19d847f6 100644 --- a/code/modules/surgery/organs/lungs.dm +++ b/code/modules/surgery/organs/lungs.dm @@ -571,11 +571,11 @@ maxHealth = 2 * STANDARD_ORGAN_THRESHOLD safe_oxygen_min = 4 //You could literally be breathing the thinnest amount of oxygen and be fine safe_oxygen_max = 250 //Or be in an enriched oxygen room for that matter - safe_toxins_max = 50 - safe_co2_max = 50 - SA_para_min = 50 - SA_sleep_min = 100 - BZ_trip_balls_min = 50 + safe_toxins_max = 30 + safe_co2_max = 30 + SA_para_min = 30 + SA_sleep_min = 50 + BZ_trip_balls_min = 30 emp_vulnerability = 20 cold_level_1_threshold = 200 From c819879473e0d90a9baff1ff83b1687fddc99bde Mon Sep 17 00:00:00 2001 From: necromanceranne <40847847+necromanceranne@users.noreply.github.com> Date: Fri, 23 Apr 2021 12:06:24 +1000 Subject: [PATCH 021/259] Changes the space adaptation sprite to something more subtle. --- code/datums/mutations/space_adaptation.dm | 2 +- icons/effects/genetics.dmi | Bin 22667 -> 23497 bytes 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/code/datums/mutations/space_adaptation.dm b/code/datums/mutations/space_adaptation.dm index a3a2f10f2f..8b2263c2f2 100644 --- a/code/datums/mutations/space_adaptation.dm +++ b/code/datums/mutations/space_adaptation.dm @@ -11,7 +11,7 @@ /datum/mutation/human/space_adaptation/New(class_ = MUT_OTHER, timer, datum/mutation/human/copymut) ..() if(!(type in visual_indicators)) - visual_indicators[type] = list(mutable_appearance('icons/effects/genetics.dmi', "fire", -MUTATIONS_LAYER)) + visual_indicators[type] = list(mutable_appearance('icons/effects/genetics.dmi', "space_adapt", -MUTATIONS_LAYER)) /datum/mutation/human/space_adaptation/get_visual_indicator() return visual_indicators[type][1] diff --git a/icons/effects/genetics.dmi b/icons/effects/genetics.dmi index 373a9de623b7bfabc4f6fed86f82e6234e588964..16ceb1f18cd0ad71deb57e2d1596bf2eb473617f 100644 GIT binary patch delta 4595 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 delta 3765 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 Date: Fri, 23 Apr 2021 12:17:13 +1000 Subject: [PATCH 022/259] Changes emp_vulnerability from the probably to the division of the emp severity. Higher is better. --- code/modules/surgery/organs/heart.dm | 8 ++++---- code/modules/surgery/organs/liver.dm | 8 ++++---- code/modules/surgery/organs/lungs.dm | 8 ++++---- code/modules/surgery/organs/stomach.dm | 8 ++++---- 4 files changed, 16 insertions(+), 16 deletions(-) diff --git a/code/modules/surgery/organs/heart.dm b/code/modules/surgery/organs/heart.dm index 2079e729f4..6263284584 100644 --- a/code/modules/surgery/organs/heart.dm +++ b/code/modules/surgery/organs/heart.dm @@ -206,7 +206,7 @@ var/dose_available = FALSE var/rid = /datum/reagent/medicine/epinephrine var/ramount = 10 - var/emp_vulnerability = 80 //Chance of permanent effects if emp-ed. + var/emp_vulnerability = 1 //The value the severity of emps are divided by to determine the likelihood of permanent damage. /obj/item/organ/heart/cybernetic/tier2 name = "cybernetic heart" @@ -214,7 +214,7 @@ icon_state = "heart-c-u" maxHealth = 1.5 * STANDARD_ORGAN_THRESHOLD dose_available = TRUE - emp_vulnerability = 40 + emp_vulnerability = 2 /obj/item/organ/heart/cybernetic/tier3 name = "upgraded cybernetic heart" @@ -224,7 +224,7 @@ dose_available = TRUE rid = /datum/reagent/medicine/atropine ramount = 5 - emp_vulnerability = 20 + emp_vulnerability = 3 /obj/item/organ/heart/cybernetic/emp_act(severity) . = ..() @@ -239,7 +239,7 @@ owner.Dizzy(10) owner.losebreath += 10 COOLDOWN_START(src, severe_cooldown, 20 SECONDS) - if(prob(emp_vulnerability/severity)) //Chance of permanent effects + if(prob(severity/emp_vulnerability)) //Chance of permanent effects organ_flags |= ORGAN_SYNTHETIC_EMP //Starts organ faliure - gonna need replacing soon. Stop() owner.visible_message("[owner] clutches at [owner.p_their()] chest as if [owner.p_their()] heart is stopping!", \ diff --git a/code/modules/surgery/organs/liver.dm b/code/modules/surgery/organs/liver.dm index afc770efae..2037547d36 100755 --- a/code/modules/surgery/organs/liver.dm +++ b/code/modules/surgery/organs/liver.dm @@ -106,7 +106,7 @@ toxLethality = 1.1 * LIVER_DEFAULT_TOX_LETHALITY maxHealth = STANDARD_ORGAN_THRESHOLD*0.5 - var/emp_vulnerability = 80 //Chance of permanent effects if emp-ed. + var/emp_vulnerability = 1 //The value the severity of emps are divided by to determine the likelihood of permanent damage. /obj/item/organ/liver/cybernetic/tier2 name = "cybernetic liver" @@ -115,7 +115,7 @@ maxHealth = 1.5 * STANDARD_ORGAN_THRESHOLD toxTolerance = 2 * LIVER_DEFAULT_TOX_TOLERANCE //6 units of toxin purging toxLethality = 0.8 * LIVER_DEFAULT_TOX_LETHALITY //20% less damage than a normal liver - emp_vulnerability = 40 + emp_vulnerability = 2 /obj/item/organ/liver/cybernetic/tier3 name = "upgraded cybernetic liver" @@ -125,7 +125,7 @@ maxHealth = 2 * STANDARD_ORGAN_THRESHOLD toxTolerance = 5 * LIVER_DEFAULT_TOX_TOLERANCE //15 units of toxin purging toxLethality = 0.4 * LIVER_DEFAULT_TOX_LETHALITY //60% less damage than a normal liver - emp_vulnerability = 20 + emp_vulnerability = 3 /obj/item/organ/liver/cybernetic/emp_act(severity) . = ..() @@ -134,5 +134,5 @@ if(!COOLDOWN_FINISHED(src, severe_cooldown)) //So we cant just spam emp to kill people. owner.adjustToxLoss(10) COOLDOWN_START(src, severe_cooldown, 10 SECONDS) - if(prob(emp_vulnerability/severity)) //Chance of permanent effects + if(prob(severity/emp_vulnerability)) //Chance of permanent effects organ_flags |= ORGAN_SYNTHETIC_EMP //Starts organ faliure - gonna need replacing soon. diff --git a/code/modules/surgery/organs/lungs.dm b/code/modules/surgery/organs/lungs.dm index 4d19d847f6..c94fb16add 100644 --- a/code/modules/surgery/organs/lungs.dm +++ b/code/modules/surgery/organs/lungs.dm @@ -553,7 +553,7 @@ organ_flags = ORGAN_SYNTHETIC maxHealth = STANDARD_ORGAN_THRESHOLD * 0.5 - var/emp_vulnerability = 80 //Chance of permanent effects if emp-ed. + var/emp_vulnerability = 1 //The value the severity of emps are divided by to determine the likelihood of permanent damage. /obj/item/organ/lungs/cybernetic/tier2 name = "cybernetic lungs" @@ -562,7 +562,7 @@ maxHealth = 1.5 * STANDARD_ORGAN_THRESHOLD safe_oxygen_min = 13 safe_oxygen_max = 100 - emp_vulnerability = 40 + emp_vulnerability = 2 /obj/item/organ/lungs/cybernetic/tier3 name = "upgraded cybernetic lungs" @@ -576,7 +576,7 @@ SA_para_min = 30 SA_sleep_min = 50 BZ_trip_balls_min = 30 - emp_vulnerability = 20 + emp_vulnerability = 3 cold_level_1_threshold = 200 cold_level_2_threshold = 140 @@ -590,7 +590,7 @@ if(!COOLDOWN_FINISHED(src, severe_cooldown)) //So we cant just spam emp to kill people. owner.losebreath += 20 COOLDOWN_START(src, severe_cooldown, 30 SECONDS) - if(prob(emp_vulnerability/severity)) //Chance of permanent effects + if(prob(severity/emp_vulnerability)) //Chance of permanent effects organ_flags |= ORGAN_SYNTHETIC_EMP //Starts organ faliure - gonna need replacing soon. /obj/item/organ/lungs/ashwalker diff --git a/code/modules/surgery/organs/stomach.dm b/code/modules/surgery/organs/stomach.dm index f286c294fc..defb062f1a 100644 --- a/code/modules/surgery/organs/stomach.dm +++ b/code/modules/surgery/organs/stomach.dm @@ -99,7 +99,7 @@ desc = "A basic device designed to mimic the functions of a human stomach" organ_flags = ORGAN_SYNTHETIC maxHealth = STANDARD_ORGAN_THRESHOLD * 0.5 - var/emp_vulnerability = 80 //Chance of permanent effects if emp-ed. + var/emp_vulnerability = 1 //The value the severity of emps are divided by to determine the likelihood of permanent damage. /obj/item/organ/stomach/cybernetic/tier2 name = "cybernetic stomach" @@ -107,7 +107,7 @@ desc = "An electronic device designed to mimic the functions of a human stomach. Handles disgusting food a bit better." maxHealth = 1.5 * STANDARD_ORGAN_THRESHOLD disgust_metabolism = 2 - emp_vulnerability = 40 + emp_vulnerability = 2 /obj/item/organ/stomach/cybernetic/tier3 name = "upgraded cybernetic stomach" @@ -115,7 +115,7 @@ desc = "An upgraded version of the cybernetic stomach, designed to improve further upon organic stomachs. Handles disgusting food very well." maxHealth = 2 * STANDARD_ORGAN_THRESHOLD disgust_metabolism = 3 - emp_vulnerability = 20 + emp_vulnerability = 3 /obj/item/organ/stomach/cybernetic/emp_act(severity) . = ..() @@ -124,7 +124,7 @@ if(!COOLDOWN_FINISHED(src, severe_cooldown)) //So we cant just spam emp to kill people. owner.vomit(stun = FALSE) COOLDOWN_START(src, severe_cooldown, 10 SECONDS) - if(prob(emp_vulnerability/severity)) //Chance of permanent effects + if(prob(severity/emp_vulnerability)) //Chance of permanent effects organ_flags |= ORGAN_SYNTHETIC_EMP //Starts organ faliure - gonna need replacing soon. /obj/item/organ/stomach/ipc From e6c23728eb7c7c6ae51b99372374ad89c5914ca2 Mon Sep 17 00:00:00 2001 From: SandPoot Date: Fri, 23 Apr 2021 12:56:11 -0300 Subject: [PATCH 023/259] upload files --- code/__HELPERS/global_lists.dm | 1 + code/__HELPERS/mobs.dm | 2 + code/__HELPERS/reagents.dm | 6 + code/game/machinery/limbgrower.dm | 429 +++++++++++--------- tgui/packages/tgui/interfaces/Limbgrower.js | 109 +++++ 5 files changed, 352 insertions(+), 195 deletions(-) create mode 100644 tgui/packages/tgui/interfaces/Limbgrower.js diff --git a/code/__HELPERS/global_lists.dm b/code/__HELPERS/global_lists.dm index b8c009ff4f..9719157d4d 100644 --- a/code/__HELPERS/global_lists.dm +++ b/code/__HELPERS/global_lists.dm @@ -68,6 +68,7 @@ for(var/spath in subtypesof(/datum/species)) var/datum/species/S = new spath() GLOB.species_list[S.id] = spath + GLOB.species_datums[S.id] = S //Surgeries for(var/path in subtypesof(/datum/surgery)) diff --git a/code/__HELPERS/mobs.dm b/code/__HELPERS/mobs.dm index 513437e57e..92cf7050e0 100644 --- a/code/__HELPERS/mobs.dm +++ b/code/__HELPERS/mobs.dm @@ -320,6 +320,8 @@ GLOBAL_LIST_INIT(nonstandard_skin_tones, list("orange")) GLOBAL_LIST_EMPTY(species_list) +GLOBAL_LIST_EMPTY(species_datums) + /proc/age2agedescription(age) switch(age) if(0 to 1) diff --git a/code/__HELPERS/reagents.dm b/code/__HELPERS/reagents.dm index de225b3b53..fa655efce4 100644 --- a/code/__HELPERS/reagents.dm +++ b/code/__HELPERS/reagents.dm @@ -95,3 +95,9 @@ if("I'm feeling lucky") chosen_id = pick(subtypesof(/datum/reagent)) return chosen_id + +/proc/find_reagent_object_from_type(input) + if(GLOB.chemical_reagents_list[input]) //prefer IDs! + return GLOB.chemical_reagents_list[input] + else + return null diff --git a/code/game/machinery/limbgrower.dm b/code/game/machinery/limbgrower.dm index aa1d05884e..dc87322b57 100644 --- a/code/game/machinery/limbgrower.dm +++ b/code/game/machinery/limbgrower.dm @@ -1,9 +1,5 @@ -#define LIMBGROWER_MAIN_MENU 1 -#define LIMBGROWER_CATEGORY_MENU 2 -#define LIMBGROWER_CHEMICAL_MENU 3 -//use these for the menu system - - +/// The limbgrower. Makes organd and limbs with synthflesh and chems. +/// See [limbgrower_designs.dm] for everything we can make. /obj/machinery/limbgrower name = "limb grower" desc = "It grows new limbs using Synthflesh." @@ -15,161 +11,235 @@ active_power_usage = 100 circuit = /obj/item/circuitboard/machine/limbgrower - var/operating = FALSE - var/disabled = FALSE + /// The category of limbs we're browing in our UI. + var/selected_category = "human" + /// If we're currently printing something. var/busy = FALSE - var/prod_coeff = 1 + /// How efficient our machine is. Better parts = less chemicals used and less power used. Range of 1 to 0.25. + var/production_coefficient = 1 + /// How long it takes for us to print a limb. Affected by production_coefficient. + var/production_speed = 3 SECONDS + /// The design we're printing currently. var/datum/design/being_built + /// Our internal techweb for limbgrower designs. var/datum/techweb/stored_research - var/selected_category - var/screen = 1 + /// All the categories of organs we can print. var/list/categories = list( - "human" = /datum/species/human, - "lizard" = /datum/species/lizard, - "mammal" = /datum/species/mammal, - "insect" = /datum/species/insect, - "fly" = /datum/species/fly, - "plasmaman" = /datum/species/plasmaman, - "xeno" = /datum/species/xeno, - "other" = /datum/species, - ) - var/list/stored_species = list() + "human", + "lizard", + "mammal", + "insect", + "fly", + "plasmaman", + "xeno", + "other", + ) var/obj/item/disk/data/dna_disk /obj/machinery/limbgrower/Initialize() create_reagents(100, OPENCONTAINER) stored_research = new /datum/techweb/specialized/autounlocking/limbgrower - for(var/i in categories) - var/species = categories[i] - stored_species[i] = new species() . = ..() + AddComponent(/datum/component/plumbing/simple_demand) + AddComponent(/datum/component/simple_rotation, ROTATION_WRENCH | ROTATION_CLOCKWISE, null, CALLBACK(src, .proc/can_be_rotated)) -/obj/machinery/limbgrower/ui_interact(mob/user) +/obj/machinery/limbgrower/ui_interact(mob/user, datum/tgui/ui) . = ..() - if(!is_operational()) - return + ui = SStgui.try_update_ui(user, src, ui) + if(!ui) + ui = new(user, src, "Limbgrower", src) + ui.open() - var/dat = main_win(user) +/obj/machinery/limbgrower/ui_data(mob/user) + var/list/data = list() - switch(screen) - if(LIMBGROWER_MAIN_MENU) - dat = main_win(user) - if(LIMBGROWER_CATEGORY_MENU) - dat = category_win(user,selected_category) - if(LIMBGROWER_CHEMICAL_MENU) - dat = chemical_win(user) + for(var/datum/reagent/reagent_id in reagents.reagent_list) + var/list/reagent_data = list( + reagent_name = reagent_id.name, + reagent_amount = reagent_id.volume, + reagent_type = reagent_id.type + ) + data["reagents"] += list(reagent_data) - var/datum/browser/popup = new(user, "Limb Grower", name, 400, 500) - popup.set_content(dat) - popup.open() + data["total_reagents"] = reagents.total_volume + data["max_reagents"] = reagents.maximum_volume + data["busy"] = busy + var/list/disk_data = list() + disk_data["disk"] = dna_disk //Do i, the machine, have a disk? + disk_data["name"] = dna_disk?.fields["name"] //Name for the human saved if there is one + data["disk"] = disk_data + + return data + +/obj/machinery/limbgrower/ui_static_data(mob/user) + var/list/data = list() + data["categories"] = list() + + var/species_categories = categories.Copy() + for(var/species in species_categories) + species_categories[species] = list() + for(var/design_id in stored_research.researched_designs) + var/datum/design/limb_design = SSresearch.techweb_design_by_id(design_id) + for(var/found_category in species_categories) + if(found_category in limb_design.category) + species_categories[found_category] += limb_design + + for(var/category in species_categories) + var/list/category_data = list( + name = category, + designs = list(), + ) + for(var/datum/design/found_design in species_categories[category]) + var/list/all_reagents = list() + for(var/reagent_typepath in found_design.reagents_list) + var/datum/reagent/reagent_id = find_reagent_object_from_type(reagent_typepath) + var/list/reagent_data = list( + name = reagent_id.name, + amount = (found_design.reagents_list[reagent_typepath] * production_coefficient), + ) + all_reagents += list(reagent_data) + + category_data["designs"] += list(list( + parent_category = category, + name = found_design.name, + id = found_design.id, + needed_reagents = all_reagents, + )) + + data["categories"] += list(category_data) + + return data /obj/machinery/limbgrower/on_deconstruction() - for(var/obj/item/reagent_containers/glass/G in component_parts) - reagents.trans_to(G, G.reagents.maximum_volume) + for(var/obj/item/reagent_containers/glass/our_beaker in component_parts) + reagents.trans_to(our_beaker, our_beaker.reagents.maximum_volume) ..() -/obj/machinery/limbgrower/attackby(obj/item/O, mob/user, params) - if(busy) +/obj/machinery/limbgrower/attackby(obj/item/user_item, mob/living/user, params) + if (busy) to_chat(user, "\The [src] is busy. Please wait for completion of previous operation.") return - if(default_deconstruction_screwdriver(user, "limbgrower_panelopen", "limbgrower_idleoff", O)) - updateUsrDialog() + if(default_deconstruction_screwdriver(user, "limbgrower_panelopen", "limbgrower_idleoff", user_item)) + ui_close(user) return - if(panel_open && default_deconstruction_crowbar(O)) - return - - if(user.a_intent == INTENT_HARM) //so we can hit the machine + if(user_item.tool_behaviour == TOOL_WRENCH && panel_open) return ..() - if(istype(O, /obj/item/disk)) + if(panel_open && default_deconstruction_crowbar(user_item)) + return + + if(istype(user_item, /obj/item/disk)) if(dna_disk) to_chat(user, "\The [src] already has a dna disk, take it out first!") return else - O.forceMove(src) - dna_disk = O - to_chat(user, "You insert \the [O] into \the [src].") + user_item.forceMove(src) + dna_disk = user_item + to_chat(user, "You insert \the [user_item] into \the [src].") + playsound(src, 'sound/machines/terminal_insert_disc.ogg', 50, 0) return -/obj/machinery/limbgrower/Topic(href, href_list) - if(..()) + if(user.a_intent != INTENT_HELP) + return ..() + +/obj/machinery/limbgrower/proc/can_be_rotated() + if(panel_open) + return TRUE + return FALSE + +/obj/machinery/limbgrower/ui_act(action, list/params) + . = ..() + if(.) return - if (!busy) - if(href_list["menu"]) - screen = text2num(href_list["menu"]) - if(href_list["category"]) - selected_category = href_list["category"] + if (busy) + to_chat(usr, "\The [src] is busy. Please wait for completion of previous operation.") + return - if(href_list["disposeI"]) //Get rid of a reagent incase you add the wrong one by mistake - reagents.del_reagent(text2path(href_list["disposeI"])) + switch(action) - if(href_list["make"]) + if("empty_reagent") + reagents.del_reagent(text2path(params["reagent_type"])) + . = TRUE - ///////////////// - //href protection - being_built = stored_research.isDesignResearchedID(href_list["make"]) //check if it's a valid design + if("eject_disk") + eject_disk(usr) + + if("make_limb") + being_built = stored_research.isDesignResearchedID(params["design_id"]) if(!being_built) - return + CRASH("[src] was passed an invalid design id!") + /// All the reagents we're using to make our organ. + var/list/consumed_reagents_list = being_built.reagents_list.Copy() + /// The amount of power we're going to use, based on how much reagent we use. + var/power = 0 - var/synth_cost = being_built.reagents_list[/datum/reagent/medicine/synthflesh]*prod_coeff - var/power = max(2000, synth_cost/5) + for(var/reagent_id in consumed_reagents_list) + consumed_reagents_list[reagent_id] *= production_coefficient + if(!reagents.has_reagent(reagent_id, consumed_reagents_list[reagent_id])) + audible_message("\The [src] buzzes.") + playsound(src, 'sound/machines/buzz-sigh.ogg', 50, FALSE) + return - if(reagents.has_reagent(/datum/reagent/medicine/synthflesh, being_built.reagents_list[/datum/reagent/medicine/synthflesh]*prod_coeff)) - busy = TRUE - use_power(power) - flick("limbgrower_fill",src) - icon_state = "limbgrower_idleon" - addtimer(CALLBACK(src, .proc/build_item),32*prod_coeff) + power = max(2000, (power + consumed_reagents_list[reagent_id])) - if(href_list["dna_disk"]) - var/mob/living/carbon/user = usr - if(istype(user)) - if(!dna_disk) - var/obj/item/disk/diskette = user.get_active_held_item() - if(istype(diskette)) - diskette.forceMove(src) - dna_disk = diskette - to_chat(user, "You insert \the [diskette] into \the [src].") - else - dna_disk.forceMove(src.loc) - user.put_in_active_hand(dna_disk) - to_chat(user, "You remove \the [dna_disk] from \the [src].") - dna_disk = null - else - to_chat(user, "You are unable to grasp \the [dna_disk] disk from \the [src].") - else - to_chat(usr, "\The [src] is busy. Please wait for completion of previous operation.") + busy = TRUE + use_power(power) + flick("limbgrower_fill",src) + icon_state = "limbgrower_idleon" + selected_category = params["active_tab"] + addtimer(CALLBACK(src, .proc/build_item, consumed_reagents_list), production_speed * production_coefficient) + . = TRUE - updateUsrDialog() return -/obj/machinery/limbgrower/proc/build_item() - if(reagents.has_reagent(/datum/reagent/medicine/synthflesh, being_built.reagents_list[/datum/reagent/medicine/synthflesh]*prod_coeff)) //sanity check, if this happens we are in big trouble - reagents.remove_reagent(/datum/reagent/medicine/synthflesh, being_built.reagents_list[/datum/reagent/medicine/synthflesh]*prod_coeff) - var/buildpath = being_built.build_path - if(ispath(buildpath, /obj/item/bodypart)) //This feels like spaghetti code, but i need to initiliaze a limb somehow - build_limb(buildpath) - else if(ispath(buildpath, /obj/item/organ/genital)) //genitals are uhh... customizable - build_genital(buildpath) - else - //Just build whatever it is - new buildpath(loc) - else - src.visible_message(" Something went very wrong and there isnt enough synthflesh anymore!") - busy = FALSE - flick("limbgrower_unfill",src) - icon_state = "limbgrower_idleoff" - updateUsrDialog() +/* + * The process of beginning to build a limb or organ. + * Goes through and sanity checks that we actually have enough reagent to build our item. + * Then, remove those reagents from our reagents datum. + * + * After the reagents are handled, we can proceede with making the limb or organ. (Limbs are handled in a separate proc) + * + * modified_consumed_reagents_list - the list of reagents we will consume on build, modified by the production coefficient. + */ +/obj/machinery/limbgrower/proc/build_item(list/modified_consumed_reagents_list) + for(var/reagent_id in modified_consumed_reagents_list) + if(!reagents.has_reagent(reagent_id, modified_consumed_reagents_list[reagent_id])) + audible_message("\The [src] buzzes.") + playsound(src, 'sound/machines/buzz-sigh.ogg', 50, FALSE) + break -/obj/machinery/limbgrower/proc/build_limb(buildpath) + reagents.remove_reagent(reagent_id, modified_consumed_reagents_list[reagent_id]) + + var/built_typepath = being_built.build_path + // If we have a bodypart, we need to initialize the limb on its own. Otherwise we can build it here. + if(ispath(built_typepath, /obj/item/bodypart)) + build_limb(built_typepath) + else if(ispath(built_typepath, /obj/item/organ/genital)) //genitals are uhh... customizable + build_genital(built_typepath) + else + new built_typepath(loc) + + busy = FALSE + flick("limbgrower_unfill", src) + icon_state = "limbgrower_idleoff" + +/* + * The process of putting together a limb. + * This is called from after we remove the reagents, so this proc is just initializing the limb type. + * + * This proc handles skin / mutant color, greyscaling, names and descriptions, and various other limb creation steps. + * + * built_typepath - the path of the bodypart we're building. + */ +/obj/machinery/limbgrower/proc/build_limb(built_typepath) //i need to create a body part manually using a set icon (otherwise it doesnt appear) var/obj/item/bodypart/limb - var/datum/species/selected = stored_species[selected_category] - limb = new buildpath(loc) + var/datum/species/selected = GLOB.species_datums[selected_category] + limb = new built_typepath(loc) limb.base_bp_icon = selected.icon_limbs || DEFAULT_BODYPART_ICON_ORGANIC limb.species_id = selected.limbs_id limb.color_src = (MUTCOLORS in selected.species_traits ? MUTCOLORS : (selected.use_skintones ? SKINTONE : FALSE)) @@ -189,135 +259,103 @@ BP.name = "\improper synthetic [lowertext(selected.name)] [limb.name]" BP.desc = "A synthetic [selected_category] limb that will morph on its first use in surgery. This one is for the [parse_zone(limb.body_zone)]." -/obj/machinery/limbgrower/proc/build_genital(buildpath) +/* + * Builds genitals, modifies to be the same + * as the person's cloning data on the data disk + */ +/obj/machinery/limbgrower/proc/build_genital(built_typepath) //i needed to create a way to customize gene tools using dna var/list/features = dna_disk?.fields["features"] if(length(features)) - switch(buildpath) + switch(built_typepath) if(/obj/item/organ/genital/penis) var/obj/item/organ/genital/penis/penis = new(loc) if(features["has_cock"]) penis.shape = features["cock_shape"] penis.length = features["cock_shape"] penis.diameter_ratio = features["cock_diameter_ratio"] - penis.color = sanitize_hexcolor(features["cock_color"], 6) - penis.update_icon() + penis.color = sanitize_hexcolor(features["cock_color"], 6, TRUE) + penis.update() if(/obj/item/organ/genital/testicles) var/obj/item/organ/genital/testicles/balls = new(loc) if(features["has_balls"]) - balls.color = sanitize_hexcolor(features["balls_color"], 6) + balls.color = sanitize_hexcolor(features["balls_color"], 6, TRUE) balls.shape = features["balls_shape"] balls.size = features["balls_size"] balls.fluid_rate = features["balls_cum_rate"] balls.fluid_mult = features["balls_cum_mult"] balls.fluid_efficiency = features["balls_efficiency"] + balls.update() if(/obj/item/organ/genital/vagina) var/obj/item/organ/genital/vagina/vegana = new(loc) - if(features["has_vagina"]) - vegana.color = sanitize_hexcolor(features["vag_color"], 6) + if(features["has_vag"]) + vegana.color = sanitize_hexcolor(features["vag_color"], 6, TRUE) vegana.shape = features["vag_shape"] + vegana.update() if(/obj/item/organ/genital/breasts) var/obj/item/organ/genital/breasts/boobs = new(loc) if(features["has_breasts"]) - boobs.color = sanitize_hexcolor(features["breasts_color"], 6) + boobs.color = sanitize_hexcolor(features["breasts_color"], 6, TRUE) boobs.size = features["breasts_size"] boobs.shape = features["breasts_shape"] if(!features["breasts_producing"]) boobs.genital_flags &= ~(GENITAL_FUID_PRODUCTION|CAN_CLIMAX_WITH|CAN_MASTURBATE_WITH) + boobs.update() else - new buildpath(loc) + new built_typepath(loc) else - new buildpath(loc) + new built_typepath(loc) /obj/machinery/limbgrower/RefreshParts() reagents.maximum_volume = 0 - for(var/obj/item/reagent_containers/glass/G in component_parts) - reagents.maximum_volume += G.volume - G.reagents.trans_to(src, G.reagents.total_volume) - var/T=1.2 - for(var/obj/item/stock_parts/manipulator/M in component_parts) - T -= M.rating*0.2 - prod_coeff = min(1,max(0,T)) // Coeff going 1 -> 0,8 -> 0,6 -> 0,4 + for(var/obj/item/reagent_containers/glass/our_beaker in component_parts) + reagents.maximum_volume += our_beaker.volume + our_beaker.reagents.trans_to(src, our_beaker.reagents.total_volume) + production_coefficient = 1.2 + for(var/obj/item/stock_parts/manipulator/our_manipulator in component_parts) + production_coefficient -= our_manipulator.rating * 0.2 + production_coefficient = clamp(production_coefficient, 0, 1) // coefficient goes from 1 -> 0.8 -> 0.6 -> 0.4 /obj/machinery/limbgrower/examine(mob/user) . = ..() + if(!panel_open) + . += "It looks like as if the panel were open you could rotate it with a wrench." + else + . += "The panel is open." if(in_range(user, src) || isobserver(user)) - . += "The status display reads: Storing up to [reagents.maximum_volume]u of synthflesh.
    Synthflesh consumption at [prod_coeff*100]%." + . += "The status display reads: Storing up to [reagents.maximum_volume]u of reagents.
    Reagent consumption rate at [production_coefficient * 100]%.
    " -/obj/machinery/limbgrower/proc/main_win(mob/user) - var/dat = "

    [src] Menu:


    " - dat += "[dna_disk ? "Remove" : "Insert"] cloning data disk" - dat += "
    " - dat += "Chemical Storage" - dat += materials_printout() - dat += "" - - for(var/C in categories) - dat += "" - dat += "" - //one category per line - - dat += "
    [C]
    " - return dat - -/obj/machinery/limbgrower/proc/category_win(mob/user,selected_category) - var/dat = "Return to main menu" - dat += "

    Browsing [selected_category]:


    " - dat += materials_printout() - - for(var/v in stored_research.researched_designs) - var/datum/design/D = SSresearch.techweb_design_by_id(v) - if(!(selected_category in D.category)) - continue - if(disabled || !can_build(D)) - dat += "[D.name]" - else - dat += "[D.name]" - dat += "[get_design_cost(D)]
    " - - dat += "
    " - return dat - - -/obj/machinery/limbgrower/proc/chemical_win(mob/user) - var/dat = "Return to main menu" - dat += "

    Browsing Chemical Storage:


    " - dat += materials_printout() - - for(var/datum/reagent/R in reagents.reagent_list) - dat += "[R.name]: [R.volume]" - dat += "Purge
    " - - dat += "
    " - return dat - -/obj/machinery/limbgrower/proc/materials_printout() - var/dat = "Total amount:> [reagents.total_volume] / [reagents.maximum_volume] cm3
    " - return dat - -/obj/machinery/limbgrower/proc/can_build(datum/design/D) - return (reagents.has_reagent(/datum/reagent/medicine/synthflesh, D.reagents_list[/datum/reagent/medicine/synthflesh]*prod_coeff)) //Return whether the machine has enough synthflesh to produce the design - -/obj/machinery/limbgrower/proc/get_design_cost(datum/design/D) - var/dat - if(D.reagents_list[/datum/reagent/medicine/synthflesh]) - dat += "[D.reagents_list[/datum/reagent/medicine/synthflesh] * prod_coeff] Synthetic flesh " - return dat +/* + * Checks our reagent list to see if a design can be built. + * + * limb_design - the design we're checking for buildability. + * + * returns TRUE if we have enough reagent to build it. Returns FALSE if we do not. + */ +/obj/machinery/limbgrower/proc/can_build(datum/design/limb_design) + for(var/datum/reagent/reagent_id in limb_design.reagents_list) + if(!reagents.has_reagent(reagent_id, limb_design.reagents_list[reagent_id] * production_coefficient)) + return FALSE + return TRUE +/// Emagging a limbgrower allows you to build synthetic armblades. /obj/machinery/limbgrower/emag_act(mob/user) . = ..() if(obj_flags & EMAGGED) return - for(var/id in SSresearch.techweb_designs) - var/datum/design/D = SSresearch.techweb_design_by_id(id) - if((D.build_type & LIMBGROWER) && ("emagged" in D.category)) - stored_research.add_design(D) + for(var/design_id in SSresearch.techweb_designs) + var/datum/design/found_design = SSresearch.techweb_design_by_id(design_id) + if((found_design.build_type & LIMBGROWER) && ("emagged" in found_design.category)) + stored_research.add_design(found_design) to_chat(user, "A warning flashes onto the screen, stating that safety overrides have been deactivated!") obj_flags |= EMAGGED - return TRUE + update_static_data(user) /obj/machinery/limbgrower/AltClick(mob/living/user) . = ..() + eject_disk(user) + +/obj/machinery/limbgrower/proc/eject_disk(mob/user) if(istype(user) && user.canUseTopic(src, BE_CLOSE, FALSE, NO_TK)) if(busy) to_chat(user, "\The [src] is busy. Please wait for completion of previous operation.") @@ -326,6 +364,7 @@ dna_disk.forceMove(src.loc) user.put_in_active_hand(dna_disk) to_chat(user, "You remove \the [dna_disk] from \the [src].") + playsound(src, 'sound/machines/terminal_insert_disc.ogg', 50, 0) dna_disk = null else to_chat(user, "\The [src] has doesn't have a disk on it!") diff --git a/tgui/packages/tgui/interfaces/Limbgrower.js b/tgui/packages/tgui/interfaces/Limbgrower.js new file mode 100644 index 0000000000..61aa5c8a02 --- /dev/null +++ b/tgui/packages/tgui/interfaces/Limbgrower.js @@ -0,0 +1,109 @@ +import { useBackend, useSharedState } from '../backend'; +import { Box, Button, Dimmer, Icon, LabeledList, Section, Tabs } from '../components'; +import { Window } from '../layouts'; + +export const Limbgrower = (props, context) => { + const { act, data } = useBackend(context); + const { + reagents = [], + total_reagents, + max_reagents, + categories = [], + busy, + disk = [], + } = data; + const [tab, setTab] = useSharedState( + context, 'category', categories[0]?.name); + const designList = categories + .find(category => category.name === tab) + ?.designs; + + return ( + + {!!busy && ( + + + {' Building...'} + + )} + +
    act('eject_disk')} + disabled={!disk['disk']} + /> + }> + {disk['name'] ? ( +
    + Containing data for {disk['name']},
    + Attempting to create genitalia will use the disk's data. +
    + ) : disk['disk'] ? "No data." : "No disk."} +
    +
    + + {total_reagents} / {max_reagents} reagent capacity used. + + + {reagents.map(reagent => ( + act('empty_reagent', { + reagent_type: reagent.reagent_type, + })} /> + )}> + {reagent.reagent_amount}u + + ))} + +
    +
    + + {categories.map(category => ( + setTab(category.name)}> + {category.name} + + ))} + + + {designList.map(design => ( + act('make_limb', { + design_id: design.id, + active_tab: design.parent_category, + })} /> + )}> + {design.needed_reagents.map(reagent => ( + + {reagent.name}: {reagent.amount}u + + ))} + + ))} + +
    +
    +
    + ); +}; From b386d3826aaaccd6d76938484db623d6b28e1b96 Mon Sep 17 00:00:00 2001 From: SandPoot Date: Fri, 23 Apr 2021 13:22:59 -0300 Subject: [PATCH 024/259] tgui part 1 --- tgui/packages/tgui/interfaces/Limbgrower.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tgui/packages/tgui/interfaces/Limbgrower.js b/tgui/packages/tgui/interfaces/Limbgrower.js index 61aa5c8a02..b91c7e4b45 100644 --- a/tgui/packages/tgui/interfaces/Limbgrower.js +++ b/tgui/packages/tgui/interfaces/Limbgrower.js @@ -36,14 +36,14 @@ export const Limbgrower = (props, context) => { icon="eject" onClick={() => act('eject_disk')} disabled={!disk['disk']} - /> + /> }> {disk['name'] ? (
    Containing data for {disk['name']},
    - Attempting to create genitalia will use the disk's data. + Attempting to create genitalia will use the disk's data.
    - ) : disk['disk'] ? "No data." : "No disk."} + ) : disk['disk'] ? "No data." : "No disk."}
    From e89b05cfdd282094b0f530225032e93c2483fb14 Mon Sep 17 00:00:00 2001 From: Timothy Teakettle <59849408+timothyteakettle@users.noreply.github.com> Date: Fri, 23 Apr 2021 21:13:32 +0100 Subject: [PATCH 025/259] oh dear --- code/modules/client/preferences.dm | 21 +++-- code/modules/surgery/bodyparts/_bodyparts.dm | 99 ++++++++++---------- 2 files changed, 64 insertions(+), 56 deletions(-) diff --git a/code/modules/client/preferences.dm b/code/modules/client/preferences.dm index 3e4b962bc4..60be3dac5c 100644 --- a/code/modules/client/preferences.dm +++ b/code/modules/client/preferences.dm @@ -124,7 +124,7 @@ GLOBAL_LIST_EMPTY(preferences_datums) var/eye_type = DEFAULT_EYES_TYPE //Eye type var/split_eye_colors = FALSE var/datum/species/pref_species = new /datum/species/human() //Mutant race - var/list/features = list("mcolor" = "FFFFFF", "mcolor2" = "FFFFFF", "mcolor3" = "FFFFFF", "tail_lizard" = "Smooth", "tail_human" = "None", "snout" = "Round", "horns" = "None", "horns_color" = "85615a", "ears" = "None", "wings" = "None", "wings_color" = "FFF", "frills" = "None", "deco_wings" = "None", "spines" = "None", "body_markings" = "None", "legs" = "Plantigrade", "insect_wings" = "Plain", "insect_fluff" = "None", "insect_markings" = "None", "arachnid_legs" = "Plain", "arachnid_spinneret" = "Plain", "arachnid_mandibles" = "Plain", "mam_body_markings" = "Plain", "mam_ears" = "None", "mam_snouts" = "None", "mam_tail" = "None", "mam_tail_animated" = "None", "xenodorsal" = "Standard", "xenohead" = "Standard", "xenotail" = "Xenomorph Tail", "taur" = "None", "genitals_use_skintone" = FALSE, "has_cock" = FALSE, "cock_shape" = DEF_COCK_SHAPE, "cock_length" = COCK_SIZE_DEF, "cock_diameter_ratio" = COCK_DIAMETER_RATIO_DEF, "cock_color" = "ffffff", "cock_taur" = FALSE, "has_balls" = FALSE, "balls_color" = "ffffff", "balls_shape" = DEF_BALLS_SHAPE, "balls_size" = BALLS_SIZE_DEF, "balls_cum_rate" = CUM_RATE, "balls_cum_mult" = CUM_RATE_MULT, "balls_efficiency" = CUM_EFFICIENCY, "has_breasts" = FALSE, "breasts_color" = "ffffff", "breasts_size" = BREASTS_SIZE_DEF, "breasts_shape" = DEF_BREASTS_SHAPE, "breasts_producing" = FALSE, "has_vag" = FALSE, "vag_shape" = DEF_VAGINA_SHAPE, "vag_color" = "ffffff", "has_womb" = FALSE, "balls_visibility" = GEN_VISIBLE_NO_UNDIES, "breasts_visibility"= GEN_VISIBLE_NO_UNDIES, "cock_visibility" = GEN_VISIBLE_NO_UNDIES, "vag_visibility" = GEN_VISIBLE_NO_UNDIES, "ipc_screen" = "Sunburst", "ipc_antenna" = "None", "flavor_text" = "", "silicon_flavor_text" = "", "ooc_notes" = "", "meat_type" = "Mammalian", "body_model" = MALE, "body_size" = RESIZE_DEFAULT_SIZE, "color_scheme" = OLD_CHARACTER_COLORING) + var/list/features = list("mcolor" = "FFFFFF", "mcolor2" = "FFFFFF", "mcolor3" = "FFFFFF", "tail_lizard" = "Smooth", "tail_human" = "None", "snout" = "Round", "horns" = "None", "horns_color" = "85615a", "ears" = "None", "wings" = "None", "wings_color" = "FFF", "frills" = "None", "deco_wings" = "None", "spines" = "None", "body_markings" = list(), "legs" = "Plantigrade", "insect_wings" = "Plain", "insect_fluff" = "None", "insect_markings" = "None", "arachnid_legs" = "Plain", "arachnid_spinneret" = "Plain", "arachnid_mandibles" = "Plain", "mam_body_markings" = list(), "mam_ears" = "None", "mam_snouts" = "None", "mam_tail" = "None", "mam_tail_animated" = "None", "xenodorsal" = "Standard", "xenohead" = "Standard", "xenotail" = "Xenomorph Tail", "taur" = "None", "genitals_use_skintone" = FALSE, "has_cock" = FALSE, "cock_shape" = DEF_COCK_SHAPE, "cock_length" = COCK_SIZE_DEF, "cock_diameter_ratio" = COCK_DIAMETER_RATIO_DEF, "cock_color" = "ffffff", "cock_taur" = FALSE, "has_balls" = FALSE, "balls_color" = "ffffff", "balls_shape" = DEF_BALLS_SHAPE, "balls_size" = BALLS_SIZE_DEF, "balls_cum_rate" = CUM_RATE, "balls_cum_mult" = CUM_RATE_MULT, "balls_efficiency" = CUM_EFFICIENCY, "has_breasts" = FALSE, "breasts_color" = "ffffff", "breasts_size" = BREASTS_SIZE_DEF, "breasts_shape" = DEF_BREASTS_SHAPE, "breasts_producing" = FALSE, "has_vag" = FALSE, "vag_shape" = DEF_VAGINA_SHAPE, "vag_color" = "ffffff", "has_womb" = FALSE, "balls_visibility" = GEN_VISIBLE_NO_UNDIES, "breasts_visibility"= GEN_VISIBLE_NO_UNDIES, "cock_visibility" = GEN_VISIBLE_NO_UNDIES, "vag_visibility" = GEN_VISIBLE_NO_UNDIES, "ipc_screen" = "Sunburst", "ipc_antenna" = "None", "flavor_text" = "", "silicon_flavor_text" = "", "ooc_notes" = "", "meat_type" = "Mammalian", "body_model" = MALE, "body_size" = RESIZE_DEFAULT_SIZE, "color_scheme" = OLD_CHARACTER_COLORING) var/custom_speech_verb = "default" //if your say_mod is to be something other than your races var/custom_tongue = "default" //if your tongue is to be something other than your races @@ -1725,12 +1725,12 @@ GLOBAL_LIST_EMPTY(preferences_datums) //let's ensure that no weird shit happens on species swapping. custom_species = null if(!parent.can_have_part("body_markings")) - features["body_markings"] = "None" + features["body_markings"] = list() if(!parent.can_have_part("mam_body_markings")) - features["mam_body_markings"] = "None" + features["mam_body_markings"] = list() if(parent.can_have_part("mam_body_markings")) if(features["mam_body_markings"] == "None") - features["mam_body_markings"] = "Plain" + features["mam_body_markings"] = list() if(parent.can_have_part("tail_lizard")) features["tail_lizard"] = "Smooth" if(pref_species.id == "felinid") @@ -1963,9 +1963,12 @@ GLOBAL_LIST_EMPTY(preferences_datums) var/new_body_markings new_body_markings = input(user, "Choose your character's body markings:", "Character Preference") as null|anything in GLOB.body_markings_list if(new_body_markings) - features["body_markings"] = new_body_markings + var/marking_list = list() + for(var/part in list(ARM_LEFT, ARM_RIGHT, LEG_LEFT, LEG_RIGHT, CHEST, HEAD)) + marking_list += list(part, new_body_markings) + features["body_markings"] = marking_list if(new_body_markings != "None") - features["mam_body_markings"] = "None" + features["mam_body_markings"] = list() if("legs") var/new_legs @@ -2101,10 +2104,10 @@ GLOBAL_LIST_EMPTY(preferences_datums) if(new_mam_body_markings) features["mam_body_markings"] = new_mam_body_markings if(new_mam_body_markings != "None") - features["body_markings"] = "None" + features["body_markings"] = list() else if(new_mam_body_markings == "None") - features["mam_body_markings"] = "Plain" - features["body_markings"] = "None" + features["mam_body_markings"] = list() + features["body_markings"] = list() //Xeno Bodyparts if("xenohead")//Head or caste type diff --git a/code/modules/surgery/bodyparts/_bodyparts.dm b/code/modules/surgery/bodyparts/_bodyparts.dm index 38f53c93a5..1790809d14 100644 --- a/code/modules/surgery/bodyparts/_bodyparts.dm +++ b/code/modules/surgery/bodyparts/_bodyparts.dm @@ -47,10 +47,11 @@ var/species_color = "" var/mutation_color = "" var/no_update = 0 - var/body_markings = "" //for bodypart markings - var/body_markings_icon = 'modular_citadel/icons/mob/mam_markings.dmi' + var/body_markings = "" //for bodypart markings, deprecated + var/list/body_markings_list // stores body markings as lists, with the first value being the name of the bodypart, the second value being the name of the marking, and the third being the colour + var/marking_value // combination of old aux_marking and body_marking variables as they were always set together to the same value + var/static/default_body_markings_icon = 'modular_citadel/icons/mob/mam_markings.dmi' var/list/markings_color = list() - var/aux_marking var/digitigrade_type var/animal_origin = null //for nonhuman bodypart (e.g. monkey) @@ -632,8 +633,7 @@ color_src = FALSE base_bp_icon = DEFAULT_BODYPART_ICON no_update = TRUE - body_markings = "husk" // reeee - aux_marking = "husk" + marking_value = "husk" if(no_update) return @@ -649,11 +649,7 @@ //body marking memes var/list/colorlist = list() - //var/advanced_color_system = (H.dna.features["color_scheme"] == ADVANCED_CHARACTER_COLORING) colorlist.Cut() - //colorlist += advanced_color_system ? ReadRGB("[H.dna.features["mam_body_markings_primary"]]00") : ReadRGB("[H.dna.features["mcolor"]]00") - //colorlist += advanced_color_system ? ReadRGB("[H.dna.features["mam_body_markings_secondary"]]00") : ReadRGB("[H.dna.features["mcolor2"]]00") - //colorlist += advanced_color_system ? ReadRGB("[H.dna.features["mam_body_markings_tertiary"]]00") : ReadRGB("[H.dna.features["mcolor3"]]00") colorlist += ReadRGB("[H.dna.features["mcolor"]]00") colorlist += ReadRGB("[H.dna.features["mcolor2"]]00") colorlist += ReadRGB("[H.dna.features["mcolor3"]]00") @@ -688,21 +684,26 @@ else digitigrade_type = null - if(S.mutant_bodyparts["mam_body_markings"]) - var/datum/sprite_accessory/Smark - Smark = GLOB.mam_body_markings_list[H.dna.features["mam_body_markings"]] - if(Smark) - body_markings_icon = Smark.icon - if(H.dna.features["mam_body_markings"] != "None") - body_markings = Smark?.icon_state || lowertext(H.dna.features["mam_body_markings"]) - aux_marking = Smark?.icon_state || lowertext(H.dna.features["mam_body_markings"]) - else - body_markings = "plain" - aux_marking = "plain" + if(S.mutant_bodyparts["mam_body_markings"]) // checks if the species can actually have body markings + // get all markings for this bodypart type + for(var/list/marking in H.dna.features["mam_body_markings"]) + // marking is a list containing bodypart type, bodymarking name, and then the colour (colour won't be used in v1) + if(marking[1] == body_part) + var/datum/sprite_accessory/Smark + Smark = GLOB.mam_body_markings_list[marking[2]] + var/body_markings_icon = default_body_markings_icon + if(Smark) + body_markings_icon = Smark.icon + var/marking_value = "" // combination of body and aux markings from old system + if(H.dna.features["mam_body_markings"] != "None") + marking_value = Smark?.icon_state || lowertext(H.dna.features["mam_body_markings"]) + else + marking_value = "plain" + body_markings_list += list(body_markings_icon, marking_value) + markings_color = list(colorlist) else - body_markings = null - aux_marking = null + marking_value = null if(S.override_bp_icon) base_bp_icon = S.override_bp_icon @@ -728,8 +729,7 @@ if(is_robotic_limb()) dmg_overlay_type = "robotic" if(is_robotic_limb(FALSE)) - body_markings = null - aux_marking = null + marking_value = null if(dropping_limb) no_update = TRUE //when attached, the limb won't be affected by the appearance changes of its mob owner. @@ -755,7 +755,7 @@ var/image_dir = 0 var/icon_gender = (body_gender == FEMALE) ? "f" : "m" //gender of the icon, if applicable - +/* if(dropped) image_dir = SOUTH if(dmg_overlay_type) @@ -772,7 +772,7 @@ . += image(body_markings_icon, "[body_markings]_[body_zone]", -MARKING_LAYER, image_dir) else . += image(body_markings_icon, "[body_markings]_[digitigrade_type]_[use_digitigrade]_[body_zone]", -MARKING_LAYER, image_dir) - +*/ var/image/limb = image(layer = -BODYPARTS_LAYER, dir = image_dir) var/list/aux = list() var/image/marking @@ -808,21 +808,22 @@ limb.icon_state = "[species_id]_[body_zone]" // Body markings - if(!isnull(body_markings)) + if(!length(body_markings_list)) if(species_id == "husk") marking = image('modular_citadel/icons/mob/markings_notmammals.dmi', "husk_[body_zone]", -MARKING_LAYER, image_dir) else if(species_id == "husk" && use_digitigrade) marking = image('modular_citadel/icons/mob/markings_notmammals.dmi', "husk_[digitigrade_type]_[use_digitigrade]_[body_zone]", -MARKING_LAYER, image_dir) - else if(!use_digitigrade) - if(body_zone == BODY_ZONE_CHEST) - marking = image(body_markings_icon, "[body_markings]_[body_zone]_[icon_gender]", -MARKING_LAYER, image_dir) - else - marking = image(body_markings_icon, "[body_markings]_[body_zone]", -MARKING_LAYER, image_dir) else - marking = image(body_markings_icon, "[body_markings]_[digitigrade_type]_[use_digitigrade]_[body_zone]", -MARKING_LAYER, image_dir) - - . += marking + for(var/list/marking_list in body_markings_list) + // marking stores icon and value for the specific bodypart + if(!use_digitigrade) + if(body_zone == BODY_ZONE_CHEST) + . += image(marking_list[1], "[marking_list[2]]_[body_zone]_[icon_gender]", -MARKING_LAYER, image_dir) + else + . += image(marking_list[1], "[marking_list[2]]_[body_zone]", -MARKING_LAYER, image_dir) + else + . += image(marking[1], "[marking_list[2]]_[digitigrade_type]_[use_digitigrade]_[body_zone]", -MARKING_LAYER, image_dir) // Citadel End @@ -830,11 +831,12 @@ for(var/I in aux_icons) var/aux_layer = aux_icons[I] aux += image(limb.icon, "[species_id]_[I]", -aux_layer, image_dir) - if(!isnull(aux_marking)) + if(!isnull(marking_value)) if(species_id == "husk") auxmarking += image('modular_citadel/icons/mob/markings_notmammals.dmi', "husk_[I]", -aux_layer, image_dir) else - auxmarking += image(body_markings_icon, "[body_markings]_[I]", -aux_layer, image_dir) + for(var/marking_list in body_markings_list) + auxmarking += image(body_markings_list[1], "[body_markings_list[2]]_[I]", -aux_layer, image_dir) . += aux . += auxmarking @@ -849,11 +851,12 @@ for(var/I in aux_icons) var/aux_layer = aux_icons[I] aux += image(limb.icon, "[I]", -aux_layer, image_dir) - if(!isnull(aux_marking)) + if(!isnull(marking_value)) if(species_id == "husk") auxmarking += image('modular_citadel/icons/mob/markings_notmammals.dmi', "husk_[I]", -aux_layer, image_dir) else - auxmarking += image(body_markings_icon, "[body_markings]_[I]", -aux_layer, image_dir) + for(var/marking_list in body_markings_list) + auxmarking += image(body_markings_list[1], "[body_markings_list[2]]_[I]", -aux_layer, image_dir) . += auxmarking . += aux @@ -863,14 +866,16 @@ else if(species_id == "husk" && use_digitigrade) marking = image('modular_citadel/icons/mob/markings_notmammals.dmi', "husk_digitigrade_[use_digitigrade]_[body_zone]", -MARKING_LAYER, image_dir) - else if(!use_digitigrade) - if(body_zone == BODY_ZONE_CHEST) - marking = image(body_markings_icon, "[body_markings]_[body_zone]_[icon_gender]", -MARKING_LAYER, image_dir) - else - marking = image(body_markings_icon, "[body_markings]_[body_zone]", -MARKING_LAYER, image_dir) else - marking = image(body_markings_icon, "[body_markings]_[digitigrade_type]_[use_digitigrade]_[body_zone]", -MARKING_LAYER, image_dir) - . += marking + for(var/list/marking_list in body_markings_list) + // marking stores icon and value for the specific bodypart + if(!use_digitigrade) + if(body_zone == BODY_ZONE_CHEST) + . += image(marking_list[1], "[marking_list[2]]_[body_zone]_[icon_gender]", -MARKING_LAYER, image_dir) + else + . += image(marking_list[1], "[marking_list[2]]_[body_zone]", -MARKING_LAYER, image_dir) + else + . += image(marking[1], "[marking_list[2]]_[digitigrade_type]_[use_digitigrade]_[body_zone]", -MARKING_LAYER, image_dir) return if(color_src) //TODO - add color matrix support for base species limbs @@ -891,7 +896,7 @@ if(grayscale) I.icon_state += "_g" I.color = draw_color - if(!isnull(aux_marking)) + if(!isnull(marking_value)) for(var/a in auxmarking) var/image/I = a if(species_id == "husk") From 1d42e9f4e0aae2542eddbe3d4d8c19ee115f7926 Mon Sep 17 00:00:00 2001 From: WanderingFox95 <75953558+WanderingFox95@users.noreply.github.com> Date: Fri, 23 Apr 2021 23:12:58 +0200 Subject: [PATCH 026/259] Adjusts projectile count and delay --- code/modules/projectiles/guns/misc/chem_gun.dm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/modules/projectiles/guns/misc/chem_gun.dm b/code/modules/projectiles/guns/misc/chem_gun.dm index dcabc13989..779ab64bc2 100644 --- a/code/modules/projectiles/guns/misc/chem_gun.dm +++ b/code/modules/projectiles/guns/misc/chem_gun.dm @@ -13,9 +13,9 @@ custom_materials = list(/datum/material/iron=2000) clumsy_check = FALSE fire_sound = 'sound/items/syringeproj.ogg' - var/time_per_syringe = 250 - var/syringes_left = 4 - var/max_syringes = 4 + var/time_per_syringe = 300 + var/syringes_left = 5 + var/max_syringes = 5 var/last_synth = 0 /obj/item/gun/chem/Initialize() From 4e0bf12c0c8c4e970ddc0839e805100da8ce6277 Mon Sep 17 00:00:00 2001 From: WanderingFox95 <75953558+WanderingFox95@users.noreply.github.com> Date: Fri, 23 Apr 2021 23:15:40 +0200 Subject: [PATCH 027/259] Modifies dart size and properties They inject less but pierce again --- code/modules/projectiles/ammunition/special/syringe.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/projectiles/ammunition/special/syringe.dm b/code/modules/projectiles/ammunition/special/syringe.dm index 10e4402856..caf5da3562 100644 --- a/code/modules/projectiles/ammunition/special/syringe.dm +++ b/code/modules/projectiles/ammunition/special/syringe.dm @@ -25,7 +25,7 @@ /obj/item/ammo_casing/chemgun name = "dart synthesiser" desc = "A high-power spring, linked to an energy-based dart synthesiser." - projectile_type = /obj/item/projectile/bullet/dart + projectile_type = /obj/item/projectile/bullet/dart/piercing firing_effect_type = null /obj/item/ammo_casing/chemgun/ready_proj(atom/target, mob/living/user, quiet, zone_override = "") @@ -35,7 +35,7 @@ var/obj/item/gun/chem/CG = loc if(CG.syringes_left <= 0) return - CG.reagents.trans_to(BB, 15) + CG.reagents.trans_to(BB, 10) BB.name = "chemical dart" CG.syringes_left-- ..() From 35269554bb7c6a4af5f88738c6a09aaa623816fa Mon Sep 17 00:00:00 2001 From: WanderingFox95 <75953558+WanderingFox95@users.noreply.github.com> Date: Fri, 23 Apr 2021 23:18:13 +0200 Subject: [PATCH 028/259] Adjusts TC cost Shouldn't be over half your TC, if the Dart Pistol is only 2 TC and infinitely more useful under non-role restricted circumstances --- code/modules/uplink/uplink_items/uplink_roles.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/uplink/uplink_items/uplink_roles.dm b/code/modules/uplink/uplink_items/uplink_roles.dm index 4edbe2f2c7..253e8d0f85 100644 --- a/code/modules/uplink/uplink_items/uplink_roles.dm +++ b/code/modules/uplink/uplink_items/uplink_roles.dm @@ -210,7 +210,7 @@ name = "Reagent Dartgun" desc = "A heavily modified syringe gun which is capable of synthesizing its own chemical darts using input reagents. Can hold 100u of reagents." item = /obj/item/gun/chem - cost = 12 + cost = 10 restricted_roles = list("Chemist", "Chief Medical Officer") /datum/uplink_item/role_restricted/reverse_bear_trap @@ -257,4 +257,4 @@ item = /obj/item/storage/toolbox/emergency/turret cost = 11 restricted_roles = list("Station Engineer") - + From bda28655304379a4fe5bf238c75b31359e323ed2 Mon Sep 17 00:00:00 2001 From: WanderingFox95 <75953558+WanderingFox95@users.noreply.github.com> Date: Fri, 23 Apr 2021 23:24:41 +0200 Subject: [PATCH 029/259] Made the description actually describe the limitaitons --- code/modules/uplink/uplink_items/uplink_roles.dm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/code/modules/uplink/uplink_items/uplink_roles.dm b/code/modules/uplink/uplink_items/uplink_roles.dm index 253e8d0f85..774c2d9794 100644 --- a/code/modules/uplink/uplink_items/uplink_roles.dm +++ b/code/modules/uplink/uplink_items/uplink_roles.dm @@ -208,7 +208,8 @@ /datum/uplink_item/role_restricted/chemical_gun name = "Reagent Dartgun" - desc = "A heavily modified syringe gun which is capable of synthesizing its own chemical darts using input reagents. Can hold 100u of reagents." + desc = "A heavily modified syringe gun which is capable of synthesizing its own chemical darts using input reagents. \ + Synthesizes one piercing 10 unit dart every 30 seconds up to a maximum of five. Can hold 100u of reagents." item = /obj/item/gun/chem cost = 10 restricted_roles = list("Chemist", "Chief Medical Officer") From f40f4c8257498cfc09c9749449604e70c312f355 Mon Sep 17 00:00:00 2001 From: SandPoot Date: Fri, 23 Apr 2021 19:30:28 -0300 Subject: [PATCH 030/259] upload files --- code/game/objects/items/airlock_painter.dm | 8 +- code/modules/asset_cache/asset_list_items.dm | 8 ++ icons/turf/decals.dmi | Bin 56641 -> 56569 bytes tgui/packages/tgui/interfaces/DecalPainter.js | 72 +++++++++++++++--- 4 files changed, 76 insertions(+), 12 deletions(-) diff --git a/code/game/objects/items/airlock_painter.dm b/code/game/objects/items/airlock_painter.dm index b28de437ed..8edd1c2a76 100644 --- a/code/game/objects/items/airlock_painter.dm +++ b/code/game/objects/items/airlock_painter.dm @@ -157,7 +157,7 @@ to_chat(user, "You need to get closer!") return if(use_paint(user) && isturf(F)) - F.AddElement(/datum/element/decal, 'icons/turf/decals.dmi', stored_decal_total, turn(stored_dir, -dir2angle(F.dir)), CLEAN_STRONG, color, null, null, alpha) + F.AddElement(/datum/element/decal, 'icons/turf/decals.dmi', stored_decal_total, stored_dir, CLEAN_STRONG, color, null, null, alpha) /obj/item/airlock_painter/decal/attack_self(mob/user) if((ink) && (ink.charges >= 1)) @@ -180,6 +180,11 @@ stored_decal_total = "[stored_decal][yellow_fix][stored_color]" return +/obj/item/airlock_painter/decal/ui_assets(mob/user) + return list( + get_asset_datum(/datum/asset/spritesheet/decals) + ) + /obj/item/airlock_painter/decal/ui_interact(mob/user, datum/tgui/ui) ui = SStgui.try_update_ui(user, src, ui) if(!ui) @@ -189,6 +194,7 @@ /obj/item/airlock_painter/decal/ui_data(mob/user) var/list/data = list() data["decal_direction"] = stored_dir + data["decal_dir_text"] = dir2text(stored_dir) data["decal_color"] = stored_color data["decal_style"] = stored_decal data["decal_list"] = list() diff --git a/code/modules/asset_cache/asset_list_items.dm b/code/modules/asset_cache/asset_list_items.dm index e32fcee639..8eedd640a7 100644 --- a/code/modules/asset_cache/asset_list_items.dm +++ b/code/modules/asset_cache/asset_list_items.dm @@ -345,6 +345,14 @@ InsertAll("", each, GLOB.alldirs) ..() +/datum/asset/spritesheet/decals + name = "decals" + +/datum/asset/spritesheet/decals/register() + for(var/each in list('icons/turf/decals.dmi')) + InsertAll("", each, GLOB.alldirs) + ..() + /datum/asset/spritesheet/supplypods name = "supplypods" diff --git a/icons/turf/decals.dmi b/icons/turf/decals.dmi index 2b2b62a99c26bf77583794fa5acdbec25b8d0fb7..4ed8c8db9a7c770241611f7da0eb678447fff02b 100644 GIT binary patch literal 56569 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%0ARrr~ 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π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

    1^Y-oM?}IcwWz zA0r*CmL2;(SJi27oE!BEXW#+`5II_Nlrr^%T)c@>M9BL`qF087Js{VWsk#^5$ceek zW8Hvc=elv~?6MCBP{A1~&pJ%S4NCw%tgMX@1_@*QS5cda@?ZgxCzv?i=g*j3yH;wH zHnMT%^m$!h1Q;gJ}yKdl!ObDOyCsx$wG(_$SIYk(P-GTz)0V0Mc=;0ak;tnzd3<^w}dCr;0zC zOgHk_!UK%$IZ&Z%Wj{ZaptdW<^3E#U-a%lelHCVzfH&K5j5(+L=R58TUyJ?yoL znn%no$-213nq2%6>dQ#_Lt?k`)@6NQB0itqtUpprzcR1ec_da;)RxLs{BCN+B|ogoA80Aeqw#gN zyfgH;ZC$*mnq5_#yW%eE_cU2(J7$2T@9U7=Qi*^==1a^VHBs_acycS2Yna4$h~(W! z#A;o%Uq>|3RB$|YKCHc;;1*THX&5@dI9)kUoA8^UdE8bB`?Oz_+0haKn|%Y3jW3$| zws^d6iuaWaJ@*|^@UL}-;L{23rgj%PTs@VWTfyc>^lYE2-?4Y!QG=9ZtEQ>0YP!o2 zv|-0yyB!X0A0up+dqf6dq7MlR1vefN-J#l_JT5P|S0yI)945rP5Q7r^FmGYB!KKw!Xf$^7u7I*J`eyZ0?cG{U&x23GreIVL? z&mnSLa9T*61i&C#AT91}y}~&d9eir`?LO@vWNPZu`w_4`kSsreal(Dy)$LlI`@FpN zd5Bh|Nc>CBYVZdU{{gtDty6O2N016_S^Ta~%1%wMlS(^QZCsk#FLCiYxxRd(Y5xhr; zhlKvz8_LKa>Byj>;akje! LJe;d`1~LB$)W@eb diff --git a/tgui/packages/tgui/interfaces/DecalPainter.js b/tgui/packages/tgui/interfaces/DecalPainter.js index 90ab589208..7ca080f5e5 100644 --- a/tgui/packages/tgui/interfaces/DecalPainter.js +++ b/tgui/packages/tgui/interfaces/DecalPainter.js @@ -1,6 +1,7 @@ import { useBackend } from '../backend'; -import { Button, Section } from '../components'; +import { Box, Button, Section } from '../components'; import { Window } from '../layouts'; +import { classes } from 'common/react'; export const DecalPainter = (props, context) => { const { act, data } = useBackend(context); @@ -16,11 +17,25 @@ export const DecalPainter = (props, context) => { {decal_list.map(decal => ( ))}

    @@ -28,15 +43,29 @@ export const DecalPainter = (props, context) => { return ( ); })}
    @@ -45,7 +74,12 @@ export const DecalPainter = (props, context) => { return ( ); })} From 3438da2b445c9d0d2a6db75647c8e25fb3f8ee66 Mon Sep 17 00:00:00 2001 From: SandPoot Date: Fri, 23 Apr 2021 19:43:20 -0300 Subject: [PATCH 031/259] indentation part 1 --- tgui/packages/tgui/interfaces/DecalPainter.js | 58 +++++++++---------- 1 file changed, 29 insertions(+), 29 deletions(-) diff --git a/tgui/packages/tgui/interfaces/DecalPainter.js b/tgui/packages/tgui/interfaces/DecalPainter.js index 7ca080f5e5..c28ba8b4f1 100644 --- a/tgui/packages/tgui/interfaces/DecalPainter.js +++ b/tgui/packages/tgui/interfaces/DecalPainter.js @@ -27,14 +27,14 @@ export const DecalPainter = (props, context) => { onClick={() => act('select decal', { decals: decal.decal, })}> - + ))} @@ -49,22 +49,22 @@ export const DecalPainter = (props, context) => { padding: 0, }} tooltip={color.colors === "red" - ? "Red" - : color.colors === "white" - ? "White" - : "Yellow"} + ? "Red" + : color.colors === "white" + ? "White" + : "Yellow"} selected={color.colors === data.decal_color} onClick={() => act('select color', { colors: color.colors, })}> - + ); })} @@ -90,10 +90,10 @@ export const DecalPainter = (props, context) => { onClick={() => act('selected direction', { dirs: dir.dirs, })}> - { ? "east" : "west") + '-' + data.decal_style + (data.decal_color ? '_' + data.decal_color : ''), - ])} - style={{ - transform: 'scale(1.5) translate(17%, 17%)', - }} /> - + ])} + style={{ + transform: 'scale(1.5) translate(17%, 17%)', + }} /> + ); })} From aebca1767efe03536a2cb960e38b00090e115e58 Mon Sep 17 00:00:00 2001 From: The0bserver Date: Fri, 23 Apr 2021 23:20:16 -0400 Subject: [PATCH 032/259] In a station full of bad ideas, these costs were.. --- .../boxes_magazines/external/pistol.dm | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/modular_citadel/code/modules/projectiles/boxes_magazines/external/pistol.dm b/modular_citadel/code/modules/projectiles/boxes_magazines/external/pistol.dm index c39c66578b..65dc14a0f5 100644 --- a/modular_citadel/code/modules/projectiles/boxes_magazines/external/pistol.dm +++ b/modular_citadel/code/modules/projectiles/boxes_magazines/external/pistol.dm @@ -3,8 +3,7 @@ desc = "A gun magazine. Loaded with rounds which ignite the target.." id = "10mminc" build_type = PROTOLATHE - materials = list(/datum/material/plasma = 50000, /datum/material/iron = 18000) - reagents_list = list(/datum/reagent/toxin/plasma = 120, /datum/reagent/napalm = 240) + materials = list(/datum/material/plasma = 5000, /datum/material/iron = 7500) build_path = /obj/item/ammo_box/magazine/m10mm/fire category = list("Weapons") departmental_flags = DEPARTMENTAL_FLAG_SECURITY @@ -14,7 +13,7 @@ desc = "A gun magazine." id = "10mm" build_type = PROTOLATHE - materials = list(/datum/material/iron = 55000) + materials = list(/datum/material/iron = 6000) build_path = /obj/item/ammo_box/magazine/m10mm category = list("Ammo") departmental_flags = DEPARTMENTAL_FLAG_SECURITY @@ -24,8 +23,7 @@ desc = "A gun magazine. Loaded with hollow-point rounds, extremely effective against unarmored targets, but nearly useless against protective clothing." id = "10mmhp" build_type = PROTOLATHE - materials = list(/datum/material/iron = 40000, /datum/material/glass = 50000) - reagents_list = list(/datum/reagent/sonic_powder = 280) + materials = list(/datum/material/iron = 7500, /datum/material/glass = 5000) build_path = /obj/item/ammo_box/magazine/m10mm/hp category = list("Ammo") departmental_flags = DEPARTMENTAL_FLAG_SECURITY @@ -35,7 +33,7 @@ desc = "A gun magazine. Loaded with rounds which penetrate armour, but are less effective against normal targets." id = "10mmap" build_type = PROTOLATHE - materials = list(/datum/material/iron = 40000, /datum/material/titanium = 60000) + materials = list(/datum/material/iron = 7500, /datum/material/titanium = 6500) build_path = /obj/item/ammo_box/magazine/m10mm/ap category = list("Ammo") departmental_flags = DEPARTMENTAL_FLAG_SECURITY @@ -54,7 +52,7 @@ name = "handgun magazine (.45)" id = "m45" build_type = PROTOLATHE - materials = list(/datum/material/iron = 80000) + materials = list(/datum/material/iron = 8000) build_path = /obj/item/ammo_box/magazine/m45 category = list("Ammo") departmental_flags = DEPARTMENTAL_FLAG_SECURITY @@ -64,7 +62,7 @@ desc = "A gun magazine." id = "pistolm9mm" build_type = PROTOLATHE - materials = list(/datum/material/iron = 80000) + materials = list(/datum/material/iron = 7500) build_path = /obj/item/ammo_box/magazine/pistolm9mm category = list("Ammo") departmental_flags = DEPARTMENTAL_FLAG_SECURITY @@ -84,7 +82,7 @@ desc = "A revolver speedloader. Cuts through like a hot knife through butter." id = "sl357ap" build_type = PROTOLATHE - materials = list(/datum/material/iron = 30000, /datum/material/titanium = 45000) + materials = list(/datum/material/iron = 30000, /datum/material/titanium = 5000) build_path = /obj/item/ammo_box/a357/ap category = list("Ammo") departmental_flags = DEPARTMENTAL_FLAG_SECURITY From c7b231637e064f130a1034aa8502c661cec85202 Mon Sep 17 00:00:00 2001 From: The0bserver Date: Sat, 24 Apr 2021 00:53:57 -0400 Subject: [PATCH 033/259] boxes of ammo, also fire not weapon is bullet --- .../research/techweb/nodes/syndicate_nodes.dm | 2 +- .../boxes_magazines/external/pistol.dm | 32 ++++++++++++++++++- 2 files changed, 32 insertions(+), 2 deletions(-) diff --git a/code/modules/research/techweb/nodes/syndicate_nodes.dm b/code/modules/research/techweb/nodes/syndicate_nodes.dm index e659e49ac7..5a3c0f541f 100644 --- a/code/modules/research/techweb/nodes/syndicate_nodes.dm +++ b/code/modules/research/techweb/nodes/syndicate_nodes.dm @@ -21,7 +21,7 @@ id = "advanced_illegal_ballistics" display_name = "Advanced Non-Standard Ballistics" description = "Ballistic ammunition for non-standard firearms. Usually the ones you don't have nor want to be involved with." - design_ids = list("10mm","10mmap","10mminc","10mmhp","sl357","sl357ap","pistolm9mm","m45","bolt_clip") + design_ids = list("10mm","10mmap","10mminc","10mmhp","sl357","sl357ap","pistolm9mm","m45","bolt_clip","m10apbox","m10firebox","m10hpbox") prereq_ids = list("ballistic_weapons","syndicate_basic","explosive_weapons") research_costs = list(TECHWEB_POINT_TYPE_GENERIC = 25000) //This gives sec lethal mags/clips for guns from traitors, space, or anything in between. diff --git a/modular_citadel/code/modules/projectiles/boxes_magazines/external/pistol.dm b/modular_citadel/code/modules/projectiles/boxes_magazines/external/pistol.dm index 65dc14a0f5..394ffcc58d 100644 --- a/modular_citadel/code/modules/projectiles/boxes_magazines/external/pistol.dm +++ b/modular_citadel/code/modules/projectiles/boxes_magazines/external/pistol.dm @@ -5,7 +5,7 @@ build_type = PROTOLATHE materials = list(/datum/material/plasma = 5000, /datum/material/iron = 7500) build_path = /obj/item/ammo_box/magazine/m10mm/fire - category = list("Weapons") + category = list("Ammo") departmental_flags = DEPARTMENTAL_FLAG_SECURITY /datum/design/m10mm @@ -86,3 +86,33 @@ build_path = /obj/item/ammo_box/a357/ap category = list("Ammo") departmental_flags = DEPARTMENTAL_FLAG_SECURITY + +/datum/design/m10apbox + name = "ammo box (10mm Armour Piercing)" + desc = "A box of ammo containing 20 rounds designed to penetrate armor, at the cost of raw damage." + id = "10apbox" + build_type = PROTOLATHE + materials = list(/datum/material/iron = 30000, /datum/material/titanium = 5000) + build_path = /obj/item/ammo_box/c10mm/ap + category = list("Ammo") + departmental_flags = DEPARTMENTAL_FLAG_SECURITY + +/datum/design/m10firebox + name = "ammo box (10mm Incendiary)" + desc = "A box of ammo containing 20 rounds designed to set people ablaze, at the cost of raw damage." + id = "10apbox" + build_type = PROTOLATHE + materials = list(/datum/material/iron = 30000, /datum/material/titanium = 5000) + build_path = /obj/item/ammo_box/c10mm/fire + category = list("Ammo") + departmental_flags = DEPARTMENTAL_FLAG_SECURITY + +/datum/design/m10hpbox + name = "ammo box (10mm Hollowpoint)" + desc = "A box of ammo containing 20 rounds designed to tear through unarmored opponents, while being completely ineffective against armor." + id = "10apbox" + build_type = PROTOLATHE + materials = list(/datum/material/iron = 30000, /datum/material/titanium = 5000) + build_path = /obj/item/ammo_box/c10mm/hp + category = list("Ammo") + departmental_flags = DEPARTMENTAL_FLAG_SECURITY From 42ed17d2aff128d396525a8c08e2f0172b655580 Mon Sep 17 00:00:00 2001 From: The0bserver Date: Sat, 24 Apr 2021 00:54:56 -0400 Subject: [PATCH 034/259] this too --- .../modules/projectiles/boxes_magazines/external/pistol.dm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/modular_citadel/code/modules/projectiles/boxes_magazines/external/pistol.dm b/modular_citadel/code/modules/projectiles/boxes_magazines/external/pistol.dm index 394ffcc58d..eb8da2726e 100644 --- a/modular_citadel/code/modules/projectiles/boxes_magazines/external/pistol.dm +++ b/modular_citadel/code/modules/projectiles/boxes_magazines/external/pistol.dm @@ -92,7 +92,7 @@ desc = "A box of ammo containing 20 rounds designed to penetrate armor, at the cost of raw damage." id = "10apbox" build_type = PROTOLATHE - materials = list(/datum/material/iron = 30000, /datum/material/titanium = 5000) + materials = list(/datum/material/iron = 30000, /datum/material/titanium = 6000) build_path = /obj/item/ammo_box/c10mm/ap category = list("Ammo") departmental_flags = DEPARTMENTAL_FLAG_SECURITY @@ -102,7 +102,7 @@ desc = "A box of ammo containing 20 rounds designed to set people ablaze, at the cost of raw damage." id = "10apbox" build_type = PROTOLATHE - materials = list(/datum/material/iron = 30000, /datum/material/titanium = 5000) + materials = list(/datum/material/iron = 30000, /datum/material/plasma = 6000) build_path = /obj/item/ammo_box/c10mm/fire category = list("Ammo") departmental_flags = DEPARTMENTAL_FLAG_SECURITY @@ -112,7 +112,7 @@ desc = "A box of ammo containing 20 rounds designed to tear through unarmored opponents, while being completely ineffective against armor." id = "10apbox" build_type = PROTOLATHE - materials = list(/datum/material/iron = 30000, /datum/material/titanium = 5000) + materials = list(/datum/material/iron = 30000, /datum/material/glass = 6000) build_path = /obj/item/ammo_box/c10mm/hp category = list("Ammo") departmental_flags = DEPARTMENTAL_FLAG_SECURITY From 00f50713eb77c641a6541b7143f0edff10b3674d Mon Sep 17 00:00:00 2001 From: The0bserver Date: Sat, 24 Apr 2021 02:04:21 -0400 Subject: [PATCH 035/259] The fault in my stars --- .../modules/projectiles/boxes_magazines/external/pistol.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modular_citadel/code/modules/projectiles/boxes_magazines/external/pistol.dm b/modular_citadel/code/modules/projectiles/boxes_magazines/external/pistol.dm index eb8da2726e..8737c4593f 100644 --- a/modular_citadel/code/modules/projectiles/boxes_magazines/external/pistol.dm +++ b/modular_citadel/code/modules/projectiles/boxes_magazines/external/pistol.dm @@ -100,7 +100,7 @@ /datum/design/m10firebox name = "ammo box (10mm Incendiary)" desc = "A box of ammo containing 20 rounds designed to set people ablaze, at the cost of raw damage." - id = "10apbox" + id = "10firebox" build_type = PROTOLATHE materials = list(/datum/material/iron = 30000, /datum/material/plasma = 6000) build_path = /obj/item/ammo_box/c10mm/fire @@ -110,7 +110,7 @@ /datum/design/m10hpbox name = "ammo box (10mm Hollowpoint)" desc = "A box of ammo containing 20 rounds designed to tear through unarmored opponents, while being completely ineffective against armor." - id = "10apbox" + id = "10hpbox" build_type = PROTOLATHE materials = list(/datum/material/iron = 30000, /datum/material/glass = 6000) build_path = /obj/item/ammo_box/c10mm/hp From 87eee1e15ea5c25534b4aed43717e4fd975256ce Mon Sep 17 00:00:00 2001 From: The0bserver Date: Sat, 24 Apr 2021 02:22:43 -0400 Subject: [PATCH 036/259] Why do I do this to myself at 2:22 AM --- .../modules/projectiles/boxes_magazines/external/pistol.dm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/modular_citadel/code/modules/projectiles/boxes_magazines/external/pistol.dm b/modular_citadel/code/modules/projectiles/boxes_magazines/external/pistol.dm index 8737c4593f..858fe8fd5f 100644 --- a/modular_citadel/code/modules/projectiles/boxes_magazines/external/pistol.dm +++ b/modular_citadel/code/modules/projectiles/boxes_magazines/external/pistol.dm @@ -90,7 +90,7 @@ /datum/design/m10apbox name = "ammo box (10mm Armour Piercing)" desc = "A box of ammo containing 20 rounds designed to penetrate armor, at the cost of raw damage." - id = "10apbox" + id = "m10apbox" build_type = PROTOLATHE materials = list(/datum/material/iron = 30000, /datum/material/titanium = 6000) build_path = /obj/item/ammo_box/c10mm/ap @@ -100,7 +100,7 @@ /datum/design/m10firebox name = "ammo box (10mm Incendiary)" desc = "A box of ammo containing 20 rounds designed to set people ablaze, at the cost of raw damage." - id = "10firebox" + id = "m10firebox" build_type = PROTOLATHE materials = list(/datum/material/iron = 30000, /datum/material/plasma = 6000) build_path = /obj/item/ammo_box/c10mm/fire @@ -110,7 +110,7 @@ /datum/design/m10hpbox name = "ammo box (10mm Hollowpoint)" desc = "A box of ammo containing 20 rounds designed to tear through unarmored opponents, while being completely ineffective against armor." - id = "10hpbox" + id = "m10hpbox" build_type = PROTOLATHE materials = list(/datum/material/iron = 30000, /datum/material/glass = 6000) build_path = /obj/item/ammo_box/c10mm/hp From 6b736ef3b82185390ce17b919429db64d99aa344 Mon Sep 17 00:00:00 2001 From: WanderingFox95 <75953558+WanderingFox95@users.noreply.github.com> Date: Sat, 24 Apr 2021 11:36:13 +0200 Subject: [PATCH 037/259] Cleaning up something annoying --- code/modules/mob/living/simple_animal/parrot.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/simple_animal/parrot.dm b/code/modules/mob/living/simple_animal/parrot.dm index f7e586763b..d146bb855f 100644 --- a/code/modules/mob/living/simple_animal/parrot.dm +++ b/code/modules/mob/living/simple_animal/parrot.dm @@ -64,7 +64,7 @@ friendly_verb_simple = "groom" mob_size = MOB_SIZE_SMALL movement_type = FLYING - gold_core_spawnable = HOSTILE_SPAWN + gold_core_spawnable = FRIENDLY_SPAWN var/parrot_damage_upper = 10 var/parrot_state = PARROT_WANDER //Hunt for a perch when created From 80f4f1b4b3094fb1ddd98574d9d5636b9beef18d Mon Sep 17 00:00:00 2001 From: WanderingFox95 <75953558+WanderingFox95@users.noreply.github.com> Date: Sat, 24 Apr 2021 11:36:49 +0200 Subject: [PATCH 038/259] Cleaning up something annoying --- code/modules/mob/living/simple_animal/parrot.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/simple_animal/parrot.dm b/code/modules/mob/living/simple_animal/parrot.dm index f7e586763b..d146bb855f 100644 --- a/code/modules/mob/living/simple_animal/parrot.dm +++ b/code/modules/mob/living/simple_animal/parrot.dm @@ -64,7 +64,7 @@ friendly_verb_simple = "groom" mob_size = MOB_SIZE_SMALL movement_type = FLYING - gold_core_spawnable = HOSTILE_SPAWN + gold_core_spawnable = FRIENDLY_SPAWN var/parrot_damage_upper = 10 var/parrot_state = PARROT_WANDER //Hunt for a perch when created From 869124bb5035837e9401447ceed406c4848f5f4a Mon Sep 17 00:00:00 2001 From: Timothy Teakettle <59849408+timothyteakettle@users.noreply.github.com> Date: Sat, 24 Apr 2021 15:56:57 +0100 Subject: [PATCH 039/259] markings --- code/modules/client/preferences.dm | 17 +++++++++-------- .../carbon/human/species_types/anthromorph.dm | 2 +- .../carbon/human/species_types/lizardpeople.dm | 2 +- .../living/carbon/human/species_types/xeno.dm | 2 +- 4 files changed, 12 insertions(+), 11 deletions(-) diff --git a/code/modules/client/preferences.dm b/code/modules/client/preferences.dm index 60be3dac5c..af38521b4a 100644 --- a/code/modules/client/preferences.dm +++ b/code/modules/client/preferences.dm @@ -1967,7 +1967,7 @@ GLOBAL_LIST_EMPTY(preferences_datums) for(var/part in list(ARM_LEFT, ARM_RIGHT, LEG_LEFT, LEG_RIGHT, CHEST, HEAD)) marking_list += list(part, new_body_markings) features["body_markings"] = marking_list - if(new_body_markings != "None") + if(new_body_markings != list()) features["mam_body_markings"] = list() if("legs") @@ -2101,13 +2101,14 @@ GLOBAL_LIST_EMPTY(preferences_datums) snowflake_markings_list[S.name] = path var/new_mam_body_markings new_mam_body_markings = input(user, "Choose your character's body markings:", "Character Preference") as null|anything in snowflake_markings_list - if(new_mam_body_markings) - features["mam_body_markings"] = new_mam_body_markings - if(new_mam_body_markings != "None") - features["body_markings"] = list() - else if(new_mam_body_markings == "None") - features["mam_body_markings"] = list() - features["body_markings"] = list() + if(new_mam_body_markings != "None") + var/marking_list = list() + for(var/part in list(ARM_LEFT, ARM_RIGHT, LEG_LEFT, LEG_RIGHT, CHEST, HEAD)) + marking_list += list(part, new_mam_body_markings) + features["mam_body_markings"] = marking_list + else if(new_mam_body_markings == "None") + features["mam_body_markings"] = list() + features["body_markings"] = list() //Xeno Bodyparts if("xenohead")//Head or caste type diff --git a/code/modules/mob/living/carbon/human/species_types/anthromorph.dm b/code/modules/mob/living/carbon/human/species_types/anthromorph.dm index d718db818c..1c0936af37 100644 --- a/code/modules/mob/living/carbon/human/species_types/anthromorph.dm +++ b/code/modules/mob/living/carbon/human/species_types/anthromorph.dm @@ -5,7 +5,7 @@ species_traits = list(MUTCOLORS,EYECOLOR,LIPS,HAIR,HORNCOLOR,WINGCOLOR,HAS_FLESH,HAS_BONE) inherent_biotypes = MOB_ORGANIC|MOB_HUMANOID|MOB_BEAST mutant_bodyparts = list("mcolor" = "FFFFFF","mcolor2" = "FFFFFF","mcolor3" = "FFFFFF", "mam_snouts" = "Husky", "mam_tail" = "Husky", "mam_ears" = "Husky", "deco_wings" = "None", - "mam_body_markings" = "Husky", "taur" = "None", "horns" = "None", "legs" = "Plantigrade", "meat_type" = "Mammalian") + "mam_body_markings" = list(), "taur" = "None", "horns" = "None", "legs" = "Plantigrade", "meat_type" = "Mammalian") attack_verb = "claw" attack_sound = 'sound/weapons/slash.ogg' miss_sound = 'sound/weapons/slashmiss.ogg' diff --git a/code/modules/mob/living/carbon/human/species_types/lizardpeople.dm b/code/modules/mob/living/carbon/human/species_types/lizardpeople.dm index 40645b13d4..a6cc8e8b8c 100644 --- a/code/modules/mob/living/carbon/human/species_types/lizardpeople.dm +++ b/code/modules/mob/living/carbon/human/species_types/lizardpeople.dm @@ -11,7 +11,7 @@ coldmod = 1.5 heatmod = 0.67 mutant_bodyparts = list("mcolor" = "0F0", "mcolor2" = "0F0", "mcolor3" = "0F0", "tail_lizard" = "Smooth", "mam_snouts" = "Round", - "horns" = "None", "frills" = "None", "spines" = "None", "body_markings" = "None", + "horns" = "None", "frills" = "None", "spines" = "None", "body_markings" = list(), "legs" = "Digitigrade", "taur" = "None", "deco_wings" = "None") attack_verb = "slash" attack_sound = 'sound/weapons/slash.ogg' diff --git a/code/modules/mob/living/carbon/human/species_types/xeno.dm b/code/modules/mob/living/carbon/human/species_types/xeno.dm index 9d5a700417..e9d9aa2d5b 100644 --- a/code/modules/mob/living/carbon/human/species_types/xeno.dm +++ b/code/modules/mob/living/carbon/human/species_types/xeno.dm @@ -5,7 +5,7 @@ say_mod = "hisses" default_color = "00FF00" species_traits = list(MUTCOLORS,EYECOLOR,LIPS,CAN_SCAR,HAS_FLESH,HAS_BONE) - mutant_bodyparts = list("xenotail"="Xenomorph Tail","xenohead"="Standard","xenodorsal"="Standard", "mam_body_markings" = "Xeno","mcolor" = "0F0","mcolor2" = "0F0","mcolor3" = "0F0","taur" = "None", "legs" = "Digitigrade","deco_wings"= "None") + mutant_bodyparts = list("xenotail"="Xenomorph Tail","xenohead"="Standard","xenodorsal"="Standard", "mam_body_markings" = list(),"mcolor" = "0F0","mcolor2" = "0F0","mcolor3" = "0F0","taur" = "None", "legs" = "Digitigrade","deco_wings"= "None") attack_verb = "slash" attack_sound = 'sound/weapons/slash.ogg' miss_sound = 'sound/weapons/slashmiss.ogg' From ec41b301c792f110ad66ddbb15f5ceaa98d99c4b Mon Sep 17 00:00:00 2001 From: Timothy Teakettle <59849408+timothyteakettle@users.noreply.github.com> Date: Sat, 24 Apr 2021 18:55:07 +0100 Subject: [PATCH 040/259] a --- code/modules/client/preferences.dm | 4 ++-- code/modules/surgery/bodyparts/_bodyparts.dm | 16 +++++++--------- 2 files changed, 9 insertions(+), 11 deletions(-) diff --git a/code/modules/client/preferences.dm b/code/modules/client/preferences.dm index af38521b4a..ccb79ce255 100644 --- a/code/modules/client/preferences.dm +++ b/code/modules/client/preferences.dm @@ -1965,7 +1965,7 @@ GLOBAL_LIST_EMPTY(preferences_datums) if(new_body_markings) var/marking_list = list() for(var/part in list(ARM_LEFT, ARM_RIGHT, LEG_LEFT, LEG_RIGHT, CHEST, HEAD)) - marking_list += list(part, new_body_markings) + marking_list += list(list(part, new_body_markings)) features["body_markings"] = marking_list if(new_body_markings != list()) features["mam_body_markings"] = list() @@ -2104,7 +2104,7 @@ GLOBAL_LIST_EMPTY(preferences_datums) if(new_mam_body_markings != "None") var/marking_list = list() for(var/part in list(ARM_LEFT, ARM_RIGHT, LEG_LEFT, LEG_RIGHT, CHEST, HEAD)) - marking_list += list(part, new_mam_body_markings) + marking_list += list(list(part, new_mam_body_markings)) features["mam_body_markings"] = marking_list else if(new_mam_body_markings == "None") features["mam_body_markings"] = list() diff --git a/code/modules/surgery/bodyparts/_bodyparts.dm b/code/modules/surgery/bodyparts/_bodyparts.dm index 1790809d14..f8c1b525c6 100644 --- a/code/modules/surgery/bodyparts/_bodyparts.dm +++ b/code/modules/surgery/bodyparts/_bodyparts.dm @@ -810,10 +810,9 @@ // Body markings if(!length(body_markings_list)) if(species_id == "husk") - marking = image('modular_citadel/icons/mob/markings_notmammals.dmi', "husk_[body_zone]", -MARKING_LAYER, image_dir) + . += image('modular_citadel/icons/mob/markings_notmammals.dmi', "husk_[body_zone]", -MARKING_LAYER, image_dir) else if(species_id == "husk" && use_digitigrade) - marking = image('modular_citadel/icons/mob/markings_notmammals.dmi', "husk_[digitigrade_type]_[use_digitigrade]_[body_zone]", -MARKING_LAYER, image_dir) - + . += image('modular_citadel/icons/mob/markings_notmammals.dmi', "husk_[digitigrade_type]_[use_digitigrade]_[body_zone]", -MARKING_LAYER, image_dir) else for(var/list/marking_list in body_markings_list) // marking stores icon and value for the specific bodypart @@ -862,10 +861,9 @@ if(!isnull(body_markings)) if(species_id == "husk") - marking = image('modular_citadel/icons/mob/markings_notmammals.dmi', "husk_[body_zone]", -MARKING_LAYER, image_dir) + . += image('modular_citadel/icons/mob/markings_notmammals.dmi', "husk_[body_zone]", -MARKING_LAYER, image_dir) else if(species_id == "husk" && use_digitigrade) - marking = image('modular_citadel/icons/mob/markings_notmammals.dmi', "husk_digitigrade_[use_digitigrade]_[body_zone]", -MARKING_LAYER, image_dir) - + . += = image('modular_citadel/icons/mob/markings_notmammals.dmi', "husk_digitigrade_[use_digitigrade]_[body_zone]", -MARKING_LAYER, image_dir) else for(var/list/marking_list in body_markings_list) // marking stores icon and value for the specific bodypart @@ -877,8 +875,8 @@ else . += image(marking[1], "[marking_list[2]]_[digitigrade_type]_[use_digitigrade]_[body_zone]", -MARKING_LAYER, image_dir) return - - if(color_src) //TODO - add color matrix support for base species limbs +/* + if(color_src) //TODO - add color matrix support for base species limbs (or dont because color matrixes suck) var/draw_color = mutation_color || species_color var/grayscale = FALSE if(!draw_color) @@ -909,7 +907,7 @@ marking.color = "#141414" else marking.color = list(markings_color) - +*/ /obj/item/bodypart/deconstruct(disassembled = TRUE) drop_organs() From fce471cabbc2b53f23ab3d590c1be20648d532d9 Mon Sep 17 00:00:00 2001 From: Timothy Teakettle <59849408+timothyteakettle@users.noreply.github.com> Date: Sat, 24 Apr 2021 23:40:55 +0100 Subject: [PATCH 041/259] debug messages --- code/modules/surgery/bodyparts/_bodyparts.dm | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/code/modules/surgery/bodyparts/_bodyparts.dm b/code/modules/surgery/bodyparts/_bodyparts.dm index f8c1b525c6..88834d4e0d 100644 --- a/code/modules/surgery/bodyparts/_bodyparts.dm +++ b/code/modules/surgery/bodyparts/_bodyparts.dm @@ -615,6 +615,7 @@ //we inform the bodypart of the changes that happened to the owner, or give it the informations from a source mob. /obj/item/bodypart/proc/update_limb(dropping_limb, mob/living/carbon/source) + body_markings_list = list() var/mob/living/carbon/C if(source) C = source @@ -689,6 +690,7 @@ for(var/list/marking in H.dna.features["mam_body_markings"]) // marking is a list containing bodypart type, bodymarking name, and then the colour (colour won't be used in v1) if(marking[1] == body_part) + message_admins("MATCH FOUND FOR [marking[1]] ON PART [body_part] ON USER [C]") var/datum/sprite_accessory/Smark Smark = GLOB.mam_body_markings_list[marking[2]] var/body_markings_icon = default_body_markings_icon @@ -699,7 +701,7 @@ marking_value = Smark?.icon_state || lowertext(H.dna.features["mam_body_markings"]) else marking_value = "plain" - body_markings_list += list(body_markings_icon, marking_value) + body_markings_list += list(list(body_markings_icon, marking_value)) markings_color = list(colorlist) else @@ -808,7 +810,8 @@ limb.icon_state = "[species_id]_[body_zone]" // Body markings - if(!length(body_markings_list)) + if(length(body_markings_list)) + message_admins("ADDING FUNNY IMAGES AT [owner] FOR [src]") if(species_id == "husk") . += image('modular_citadel/icons/mob/markings_notmammals.dmi', "husk_[body_zone]", -MARKING_LAYER, image_dir) else if(species_id == "husk" && use_digitigrade) @@ -822,7 +825,7 @@ else . += image(marking_list[1], "[marking_list[2]]_[body_zone]", -MARKING_LAYER, image_dir) else - . += image(marking[1], "[marking_list[2]]_[digitigrade_type]_[use_digitigrade]_[body_zone]", -MARKING_LAYER, image_dir) + . += image(marking_list[1], "[marking_list[2]]_[digitigrade_type]_[use_digitigrade]_[body_zone]", -MARKING_LAYER, image_dir) // Citadel End @@ -859,11 +862,11 @@ . += auxmarking . += aux - if(!isnull(body_markings)) + if(length(body_markings)) if(species_id == "husk") . += image('modular_citadel/icons/mob/markings_notmammals.dmi', "husk_[body_zone]", -MARKING_LAYER, image_dir) else if(species_id == "husk" && use_digitigrade) - . += = image('modular_citadel/icons/mob/markings_notmammals.dmi', "husk_digitigrade_[use_digitigrade]_[body_zone]", -MARKING_LAYER, image_dir) + . += image('modular_citadel/icons/mob/markings_notmammals.dmi', "husk_digitigrade_[use_digitigrade]_[body_zone]", -MARKING_LAYER, image_dir) else for(var/list/marking_list in body_markings_list) // marking stores icon and value for the specific bodypart From 97e18833d5c168e6a5d9e8f22794ea0e5714721a Mon Sep 17 00:00:00 2001 From: timothyteakettle <59849408+timothyteakettle@users.noreply.github.com> Date: Sun, 25 Apr 2021 00:07:59 +0100 Subject: [PATCH 042/259] better debug info --- code/modules/surgery/bodyparts/_bodyparts.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/surgery/bodyparts/_bodyparts.dm b/code/modules/surgery/bodyparts/_bodyparts.dm index 88834d4e0d..e843be9212 100644 --- a/code/modules/surgery/bodyparts/_bodyparts.dm +++ b/code/modules/surgery/bodyparts/_bodyparts.dm @@ -690,7 +690,6 @@ for(var/list/marking in H.dna.features["mam_body_markings"]) // marking is a list containing bodypart type, bodymarking name, and then the colour (colour won't be used in v1) if(marking[1] == body_part) - message_admins("MATCH FOUND FOR [marking[1]] ON PART [body_part] ON USER [C]") var/datum/sprite_accessory/Smark Smark = GLOB.mam_body_markings_list[marking[2]] var/body_markings_icon = default_body_markings_icon @@ -701,6 +700,7 @@ marking_value = Smark?.icon_state || lowertext(H.dna.features["mam_body_markings"]) else marking_value = "plain" + message_admins("MATCH FOUND FOR [marking[1]] ON PART [body_part] ON USER [C], VALUE IS [body_markings_icon] AND [marking_value]") body_markings_list += list(list(body_markings_icon, marking_value)) markings_color = list(colorlist) From f243c6b7c4b98ca7ed2ea0725a94e72e26c05eb2 Mon Sep 17 00:00:00 2001 From: Timothy Teakettle <59849408+timothyteakettle@users.noreply.github.com> Date: Sun, 25 Apr 2021 13:23:16 +0100 Subject: [PATCH 043/259] makes them apply properly --- code/modules/mob/living/carbon/human/update_icons.dm | 7 ++----- code/modules/surgery/bodyparts/_bodyparts.dm | 3 ++- 2 files changed, 4 insertions(+), 6 deletions(-) diff --git a/code/modules/mob/living/carbon/human/update_icons.dm b/code/modules/mob/living/carbon/human/update_icons.dm index 5f77d25eae..f18d768df3 100644 --- a/code/modules/mob/living/carbon/human/update_icons.dm +++ b/code/modules/mob/living/carbon/human/update_icons.dm @@ -729,11 +729,8 @@ use_mob_overlay_icon: if FALSE, it will always use the default_icon_file even if . += "-[BP.digitigrade_type]" if(BP.dmg_overlay_type) . += "-[BP.dmg_overlay_type]" - if(BP.body_markings) - . += "-[BP.body_markings]" - if(length(BP.markings_color) && length(BP.markings_color[1])) - for(var/color in BP.markings_color[1]) - . += "-[color]" + if(BP.body_markings_list) + . += "-[safe_json_encode(BP.body_markings_list)]" if(BP.icon) . += "-[BP.icon]" else diff --git a/code/modules/surgery/bodyparts/_bodyparts.dm b/code/modules/surgery/bodyparts/_bodyparts.dm index e843be9212..6091b9e5d1 100644 --- a/code/modules/surgery/bodyparts/_bodyparts.dm +++ b/code/modules/surgery/bodyparts/_bodyparts.dm @@ -798,6 +798,7 @@ should_draw_gender = FALSE if(is_organic_limb()) + message_admins("UPDATING ORGANIC LIMB FOR [owner] AT [src]") limb.icon = base_bp_icon || 'icons/mob/human_parts.dmi' if(should_draw_gender) limb.icon_state = "[species_id]_[body_zone]_[icon_gender]" @@ -876,7 +877,7 @@ else . += image(marking_list[1], "[marking_list[2]]_[body_zone]", -MARKING_LAYER, image_dir) else - . += image(marking[1], "[marking_list[2]]_[digitigrade_type]_[use_digitigrade]_[body_zone]", -MARKING_LAYER, image_dir) + . += image(marking_list[1], "[marking_list[2]]_[digitigrade_type]_[use_digitigrade]_[body_zone]", -MARKING_LAYER, image_dir) return /* if(color_src) //TODO - add color matrix support for base species limbs (or dont because color matrixes suck) From 371b25062322f5d5be6701286df11484fc29971b Mon Sep 17 00:00:00 2001 From: Timothy Teakettle <59849408+timothyteakettle@users.noreply.github.com> Date: Sun, 25 Apr 2021 13:24:04 +0100 Subject: [PATCH 044/259] unused var --- code/modules/surgery/bodyparts/_bodyparts.dm | 1 - 1 file changed, 1 deletion(-) diff --git a/code/modules/surgery/bodyparts/_bodyparts.dm b/code/modules/surgery/bodyparts/_bodyparts.dm index 6091b9e5d1..e5e65773be 100644 --- a/code/modules/surgery/bodyparts/_bodyparts.dm +++ b/code/modules/surgery/bodyparts/_bodyparts.dm @@ -777,7 +777,6 @@ */ var/image/limb = image(layer = -BODYPARTS_LAYER, dir = image_dir) var/list/aux = list() - var/image/marking var/list/auxmarking = list() . += limb From a6a3f995398dd306c574469b359bbabe4d8b75dd Mon Sep 17 00:00:00 2001 From: Timothy Teakettle <59849408+timothyteakettle@users.noreply.github.com> Date: Sun, 25 Apr 2021 20:57:02 +0100 Subject: [PATCH 045/259] rp marking ui --- code/_globalvars/lists/flavor_misc.dm | 3 +++ code/modules/client/preferences.dm | 24 ++++++++++++++++++++++-- 2 files changed, 25 insertions(+), 2 deletions(-) diff --git a/code/_globalvars/lists/flavor_misc.dm b/code/_globalvars/lists/flavor_misc.dm index f0a8a4e2c6..518b61f4d2 100644 --- a/code/_globalvars/lists/flavor_misc.dm +++ b/code/_globalvars/lists/flavor_misc.dm @@ -350,3 +350,6 @@ GLOBAL_LIST_INIT(nongendered_limb_types, list("fly", "zombie" ,"synth", "shadow" //list of eye types, corresponding to a respective left and right icon state for the set of eyes GLOBAL_LIST_INIT(eye_types, list("normal", "insect", "moth", "double", "double2", "double3", "cyclops")) + +//list linking bodypart bitflags to their actual names +GLOBAL_LIST_INIT(bodypart_names, list(num2text(HEAD) = "Head", num2text(CHEST) = "Chest", num2text(LEG_LEFT) = "Left Leg", num2text(LEG_RIGHT) = "Right Leg", num2text(ARM_LEFT) = "Left Arm", num2text(ARM_RIGHT) = "Right Arm")) \ No newline at end of file diff --git a/code/modules/client/preferences.dm b/code/modules/client/preferences.dm index ccb79ce255..1a9a9a6cbf 100644 --- a/code/modules/client/preferences.dm +++ b/code/modules/client/preferences.dm @@ -512,7 +512,29 @@ GLOBAL_LIST_EMPTY(preferences_datums) dat += "" mutant_category = 0 + // rp marking selection + // assume you can only have mam markings or regular markings or none, never both + var/marking_type + if(parent.can_have_part("body_markings")) + marking_type = "body_markings" + else if(parent.can_have_part("mam_body_markings")) + marking_type = "mam_body_markings" + if(marking_type) + dat += APPEARANCE_CATEGORY_COLUMN + dat += "

    [GLOB.all_mutant_parts[marking_type]]

    " // give it the appropriate title for the type of marking + // list out the current markings you have + if(length(features[marking_type])) + dat += "" + for(var/list/marking_list in features[marking_type]) + var/actual_name = GLOB.bodypart_names[num2text(marking_list[1])] // get the actual name from the bitflag representing the part the marking is applied to + dat += "" + dat += "
    [marking_list[2]] - [actual_name] ˄ ˅
    " + for(var/mutant_part in GLOB.all_mutant_parts) + // these are sorted out separately due to the rp marking system being funky + // NOTE TO SELF: UNCOMMENT THIS ONCE YOU'RE DONE DEBUGGING + //if(istype(accessory, /datum/sprite_accessory/mam_body_markings) || istype(accessory, /datum/sprite_accessory/body_markings)) + // continue if(parent.can_have_part(mutant_part)) if(!mutant_category) dat += APPEARANCE_CATEGORY_COLUMN @@ -531,8 +553,6 @@ GLOBAL_LIST_EMPTY(preferences_datums) if(accessory) if(accessory.color_src == MATRIXED || accessory.color_src == MUTCOLORS || accessory.color_src == MUTCOLORS2 || accessory.color_src == MUTCOLORS3) //mutcolors1-3 are deprecated now, please don't rely on these in the future var/mutant_string = accessory.mutant_part_string - if(istype(accessory, /datum/sprite_accessory/mam_body_markings) || istype(accessory, /datum/sprite_accessory/body_markings)) - continue var/primary_feature = "[mutant_string]_primary" var/secondary_feature = "[mutant_string]_secondary" var/tertiary_feature = "[mutant_string]_tertiary" From e313fed033a49357687bfa7c43136f470c18c31b Mon Sep 17 00:00:00 2001 From: DrPainis <79603707+DrPainis@users.noreply.github.com> Date: Sun, 25 Apr 2021 19:04:07 -0400 Subject: [PATCH 046/259] hallucinations are capitalized too --- .../mob/living/simple_animal/hostile/megafauna/bubblegum.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/simple_animal/hostile/megafauna/bubblegum.dm b/code/modules/mob/living/simple_animal/hostile/megafauna/bubblegum.dm index 4d54487244..b1441ce55f 100644 --- a/code/modules/mob/living/simple_animal/hostile/megafauna/bubblegum.dm +++ b/code/modules/mob/living/simple_animal/hostile/megafauna/bubblegum.dm @@ -443,7 +443,7 @@ Difficulty: Hard charge(chargeat, delay, chargepast) /mob/living/simple_animal/hostile/megafauna/bubblegum/hallucination - name = "bubblegum's hallucination" + name = "Bubblegum's hallucination" desc = "Is that really just a hallucination?" health = 1 maxHealth = 1 From b7c8871b6948d17d26a04146e380aab047fbd199 Mon Sep 17 00:00:00 2001 From: WanderingFox95 <75953558+WanderingFox95@users.noreply.github.com> Date: Mon, 26 Apr 2021 18:40:12 +0200 Subject: [PATCH 047/259] Adds the Item: Unrolling Pin Like a Rolling Pin but somehow the wrong way around. --- code/game/objects/items/kitchen.dm | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/code/game/objects/items/kitchen.dm b/code/game/objects/items/kitchen.dm index 7f2fe6a01d..fc6a639f5a 100644 --- a/code/game/objects/items/kitchen.dm +++ b/code/game/objects/items/kitchen.dm @@ -248,6 +248,24 @@ /obj/item/kitchen/rollingpin/suicide_act(mob/living/carbon/user) user.visible_message("[user] begins flattening [user.p_their()] head with \the [src]! It looks like [user.p_theyre()] trying to commit suicide!") return BRUTELOSS + +/obj/item/kitchen/unrollingpin + name = "unrolling pin" + desc = "For when you accidentally flattened something." + icon_state = "unrolling_pin" + force = 8 + throwforce = 5 + throw_speed = 3 + throw_range = 7 + w_class = WEIGHT_CLASS_NORMAL + custom_materials = list(/datum/material/wood = MINERAL_MATERIAL_AMOUNT * 1.5) + attack_verb = list("bashed", "battered", "bludgeoned", "thrashed", "whacked") + custom_price = PRICE_ALMOST_CHEAP + +/obj/item/kitchen/rollingpin/suicide_act(mob/living/carbon/user) + user.visible_message("[user] begins unflattening [user.p_their()] head with \the [src]! It looks like [user.p_theyre()] trying to commit suicide!") + return BRUTELOSS + /* Trays moved to /obj/item/storage/bag */ /obj/item/kitchen/knife/scimitar From 7d6da9a9fd8dcf2943ecf236cc494e025a99d242 Mon Sep 17 00:00:00 2001 From: WanderingFox95 <75953558+WanderingFox95@users.noreply.github.com> Date: Mon, 26 Apr 2021 18:41:34 +0200 Subject: [PATCH 048/259] Adds it to the vendor so you can buy it --- code/modules/vending/dinnerware.dm | 1 + 1 file changed, 1 insertion(+) diff --git a/code/modules/vending/dinnerware.dm b/code/modules/vending/dinnerware.dm index b78af9c46b..c5b85ed61c 100644 --- a/code/modules/vending/dinnerware.dm +++ b/code/modules/vending/dinnerware.dm @@ -8,6 +8,7 @@ /obj/item/kitchen/fork = 6, /obj/item/kitchen/knife = 6, /obj/item/kitchen/rollingpin = 4, + /obj/item/kitchen/unrollingpin = 4, /obj/item/reagent_containers/food/drinks/drinkingglass = 8, /obj/item/clothing/suit/apron/chef = 2, /obj/item/storage/box/cups = 2, From 6c9ead8f1cc2cae107351c2ba40e6bb04de95f25 Mon Sep 17 00:00:00 2001 From: WanderingFox95 <75953558+WanderingFox95@users.noreply.github.com> Date: Mon, 26 Apr 2021 18:42:33 +0200 Subject: [PATCH 049/259] Adds the Recipe to Wood Crafting --- code/game/objects/items/stacks/sheets/sheet_types.dm | 1 + 1 file changed, 1 insertion(+) diff --git a/code/game/objects/items/stacks/sheets/sheet_types.dm b/code/game/objects/items/stacks/sheets/sheet_types.dm index 3f84844743..ffcd15c39e 100644 --- a/code/game/objects/items/stacks/sheets/sheet_types.dm +++ b/code/game/objects/items/stacks/sheets/sheet_types.dm @@ -248,6 +248,7 @@ GLOBAL_LIST_INIT(wood_recipes, list ( \ null, \ new/datum/stack_recipe("rifle stock", /obj/item/weaponcrafting/stock, 10, time = 20), \ new/datum/stack_recipe("rolling pin", /obj/item/kitchen/rollingpin, 2, time = 30), \ + new/datum/stack_recipe("unrolling pin", /obj/item/kitchen/unrollingpin, 2, time = 30), \ new/datum/stack_recipe("wooden bucket", /obj/item/reagent_containers/glass/bucket/wood, 2, time = 30), \ new/datum/stack_recipe("painting frame", /obj/item/wallframe/painting, 1, time = 10),\ new/datum/stack_recipe("wooden buckler", /obj/item/shield/riot/buckler, 20, time = 40), \ From 8d8f1173ab2a081bdf84d1a53bce8e534053a465 Mon Sep 17 00:00:00 2001 From: WanderingFox95 <75953558+WanderingFox95@users.noreply.github.com> Date: Mon, 26 Apr 2021 18:44:02 +0200 Subject: [PATCH 050/259] Adds the unflattening functionality --- .../food_and_drinks/food/snacks/dough.dm | 22 +++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/code/modules/food_and_drinks/food/snacks/dough.dm b/code/modules/food_and_drinks/food/snacks/dough.dm index e071fb3df7..10b8c946fc 100644 --- a/code/modules/food_and_drinks/food/snacks/dough.dm +++ b/code/modules/food_and_drinks/food/snacks/dough.dm @@ -26,6 +26,17 @@ else ..() +/obj/item/reagent_containers/food/snacks/flatdough/attackby(obj/item/I, mob/user, params) + if(istype(I, /obj/item/kitchen/unrollingpin)) + if(isturf(loc)) + new /obj/item/reagent_containers/food/snacks/dough(loc) + to_chat(user, "You unflatten [src].") + qdel(src) + else + to_chat(user, "You need to put [src] on a surface to undo the rolling!") + else + ..() + // sliceable into 3xdoughslices /obj/item/reagent_containers/food/snacks/flatdough @@ -98,6 +109,17 @@ else ..() +/obj/item/reagent_containers/food/snacks/piedough/attackby(obj/item/I, mob/user, params) + if(istype(I, /obj/item/kitchen/unrollingpin)) + if(isturf(loc)) + new /obj/item/reagent_containers/food/snacks/cakebatter(loc) + to_chat(user, "You unflatten [src].") + qdel(src) + else + to_chat(user, "You need to put [src] on a surface to undo the rolling!") + else + ..() + /obj/item/reagent_containers/food/snacks/piedough name = "pie dough" desc = "Cook it to get a pie." From dd6de51b26f2e41595ce027a971719f42d881c57 Mon Sep 17 00:00:00 2001 From: WanderingFox95 <75953558+WanderingFox95@users.noreply.github.com> Date: Mon, 26 Apr 2021 18:45:54 +0200 Subject: [PATCH 051/259] Adds the Icon for the Unrolling Pin --- icons/obj/kitchen.dmi | Bin 29189 -> 29482 bytes 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/icons/obj/kitchen.dmi b/icons/obj/kitchen.dmi index 31312ac9a1bc890bfc5675cd4ed9dff94e9adcc5..9a4af824494149f2225e0b244aa7e7af5e79ee74 100644 GIT binary patch delta 9184 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 delta 8904 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 MZ<-la=sQ38A0y5QPyhe` From 85d252544fdef5af2be74eb08f9b50825cf425e1 Mon Sep 17 00:00:00 2001 From: WanderingFox95 <75953558+WanderingFox95@users.noreply.github.com> Date: Mon, 26 Apr 2021 18:47:43 +0200 Subject: [PATCH 052/259] You can even see the unrolling pin in your hand! --- .../inhands/equipment/kitchen_lefthand.dmi | Bin 2025 -> 2196 bytes .../inhands/equipment/kitchen_righthand.dmi | Bin 2368 -> 2554 bytes 2 files changed, 0 insertions(+), 0 deletions(-) diff --git a/icons/mob/inhands/equipment/kitchen_lefthand.dmi b/icons/mob/inhands/equipment/kitchen_lefthand.dmi index 93cd988cff83c104671b7a47dfe56b0f16762529..bd3e1f779fcca6694d9637cc7ceea61392bf1053 100644 GIT binary patch literal 2196 zcmah~c~}zI7RSmhTbyyGCNa(T$|aZLr7%s3=2BUqnby-tOU)ETG*J{msnK#8)Jk$m z1RO0)6H&-5P%}-RX)b{qqGpkbxR5(0IQV+=z3-cE-uLbw_uPBV`Q!Y~?|1IKd(QRb z_N}^G0RX^ums3vX0RR={5%69^O}S4UuRfY5dan5KPBFJq zO;0>}sHhm)aw$e(cLqyfPA-KM^^>PvW}AHCBFYX8!XYS! zg6>-3<2B?o#*dwJG3-1e!tZ3Zj=%~dXCEqfOd`epoOr;%Js&A$Z-0N)+|T<}f&$*2 zrXKKJbQ<@dSZl^RX52O;rvU&^Pj_)T?irgqJ!BWGH?UV-T2*vm@V4%r@5mfiiH>2! zkD8jVwupT5nl-_QpUHelg`oOI&dWzc;H@|<%Lbtz{s)Kq2V!;@9ppdl>X|XVZCm%5 znki#aAoDV-vHnMp+2x@T9LKk@R(qp`|5?9s$}y&`ilh4jL-hTj3w*A#UDDe;*Hp)U zB~v#-Sj95Am21?2v%L=E_m1Pea=V>vM9qRHqK2Uxv5RBoN!qUzZ9J)5VsK)h4^n@5 zhhdWR^>|jJoS6p2+Fr+2?A}|zl$CigAnx6&T`fl8{-1+dCgD)?;ZA`bw|&!!VsU4I zJgd+!N!z#fsMgMzv;xJka1zljDR%zRS)+_Guf@93;1EUFc$Yx!T%bymK*Y}RT`TIJ zQ$}0E3GCbu+(mi`?6b4`?$?I=4Q;;0T1ymz#tE9m&*? zXQlzcOU@nTX0mOII@0{HzD2!1n)qjXljynNM1oTB|KOwNChB_A)H{nKZKB}lnqXMp zw{S42b$`*EqUGYajSsVaar-_C(PYoF+of(yiR0#n3|lwk0G|?M9^IkiC}*Gm1FB`U zwLTLi3)9on?#R>x>cNWfyVhh1g>rr|tF}&}=Di+k<7z~5VR1O{BKMe>7*gxC^puv5 z!Me5=s+Md(*N!ZV*xvEAJM0t|e=u6cv#fY}6k|%RgqHiu_UpyT|6KmpyFGeoX=#n{ z#xOFYL+$MDdRSgIJu)2vGmF<4ZD=?iiO1_zR#u)sIHJPBUK6tY&ajA;uCB0DUggPq z`tdB6Ax;c)?lM{L8FTWw=j4aP#Kiqc+G+Rh5#}yskt5w%K+*89FYCn%-QK=F97l{o zp%UJueEIUFV!XdOJHFcqoRI_CLbj*Q*Of9$OYdkq6v6h^(aLX#;c9|bh@CnYauq?!*_F zNmRqVX*Gu~eIL@P;{!%CD)3lY^V>wkje zt~X*W{}=SK;P8=M$GV?SM1v5;^lWyGcf^eIAJ`==iOJ{cZUmqfyp`h-01gCJxsmO8 z6;`&s5+$Q$ZK|E8+?d4j?w|}M(v$&V$%s`tgXASEUl}Eq9&PimTp{V z&|zPXvFMl|eb!4grXyKe?vSp#`|tpCaPqs@iTPF@t45x@DAn>m98$jqdhwS7ao z<+}ms8tHA`)TWi6(sjp+JaE*0w#sU|OxlQ@!Tuj?F;uQaR6e3x;{VPQ1`3)Nb=Ylv zTl*C&n1ztXO10lWQ0=MEXW~o#?R4bFC4^4!i%fb;sIm@V<&;bc088=1E2%Xm^sgqp}6JG+ZI}?n9f)zzDF?M^bm$oL7ugP zE16}B32v@#>+!oBG^z~Nf8!~ss#vmt1@Q!sn^SwlfxBNu1(;4A>5}}L)r9uEwN3rm z36<#yg6NuN>;~6M$eU0!bS;94)1O_BplbaUqfMgM-QMYP^r<&|ntHfpxD9 Or;D?zQ>nw%pMM8r>owH? literal 2025 zcmZvc2{aq%7JwN`HC;T@TAp=;p$S@Q>sVjgC_S~jCe{*KTkJHO5*qERsok@bB9d1v z#!gJMk*20<37S$%P&-@OL38~#Od0JW_r zO;<3w@p2I;&wg?sm1<^sEgYH~!riczi8m%!-s^sQw#im?RlyB5^yUF$`r;Fxx~p#| zzdx4D`SF2i0)?&SKiKoPTXOps$TXr3_Sm;-4`q^bAsU~VkTZ-1PNEVyBxbUtHZ5<5 z|C(nFk8p>h9q{>5%=NWp4I#$?9X#xEhB1%Qu64P+c@zLuKzcAv7~Brgb9Hh$=Y|aJ z3RDLn#l)o7u0k%l-XUQ&sq!gs>G>1dV~aK4a~_^sbQ zXGVigB$ti#5uY~jy)bot9b~DoZeVyBe{*@o`)AL;q6cJ6TFm^-Svmh zxgUAA2HSWh;|X%?C4`Cc$cKQbh1RmQL+|ikETkTX<-mv0ydY>_e~3x(;rjEohDk?E z_G%hf5M3_54Ekj_Z4Df0;-^E|PdHeqxnN~gds;X*H#fWL;YXpAC;xOR_UU@W)Z@d& zes78}%zT5}_j3w8*4oy|nhwPQuwiXH1$&S5nhd)&>&5+n+?F(8vcLC|IxUyfLKG{F zC;L2E6-fMEyFX}!sx@=P9j;222gdm_08pv5rOC#01yCr3cHtHU!$@Q0%nD4sux$Qi zi#Uulq`-x}o@~X`4DUt2dyNp)UB23s$+xtAyNi3*!a1HYsrM~;*SQ`A&dk3;o- zt{G0HJ5*Dvj7g1k^x*<%yB6@rH*;tcWvA?{tT2w?hhE*@Lma^#%04f)E zZs2A8jNFG-y;yz}$%~~<%P(;&b&>f)-d`V$;H>QIL>Fz89wDnE$cq=+jx6qlY4E1# zny1ywiySL-b#~n#9l;Y%B3N%XuLr1f?b zS#;~S2c9pw0wE9xKJj&Zc1`+xm0>QIi$-L;0qDvP2|m0L}~LiqAmV#t}-Ke|KwOYKVpL!*4~}1aW2Rf zj&?%@@~ihG9XS=TSgZm9fiO}!Uf}&Ek<@P{$~>BF*NlVQ+qo18tT6qREajmmL%`fZb z&%&T$lOQ8rh?+BxRGk6@@4tH`EUUtRLctYgNSLQSCYV^4=881V9M zR~Hp3KkohgeL^#CXWew`6+NfFpR5aof3H`ZG6srcI71xwK55s=;c~iAunQV7hDyiD zMF<~OQCy4%LvdCV;&M^Ibi)KSCIPw9;rlFeGGBQhj<>{oC+|^+HnJ7Xf#8l0Rg9Nh zVCiyxDV5F`M55y3EllIt0i}5`ui)j_EF5qW#47guZnesaS!XQs^9vmk5^PrEhJy^w##X z$~{9A-7@J8Y1AG-3_b898Iu^&e!l6sg}a_#QaEiPliW?m{a_>5;PWR^QtAXQ_>sZw z8*b*?K+vL&$Rk|7UP$AP^94%LGwaxl=KM@LMfaweQH8U3JtxbYOiN75Lx}Jkz|@{? zcM2Z}WU;zbR*!aE=(B2)02z~_Fw;BWdfWdCH;|F9%bGNx?vPiZgRYLC<)zon=H=VI zSU3zUi@4f!v_`?XHyL|UkL#K8)3G^#q6K8OfyNfhgBO5xNHln15mvjok zdf&a`J@U=|`5Yxgk?uCI>Q^1oKfp{yIiqR#HQ<$h9cx7w8h)jyNjUiL-u@q;q?9Ec zrhYuuJCA6+i>vyrKNbEf0Z}4|s%mz{R}d1Qj_tXZUy@Rw(zp`Q0!$}Pu^!akWR2qC zNSi6)=+=_~(Gq&*LhW%S%6hs_jYrri{6LHJ<$p7&hHt&T{i1L|NGK%S~Rr{J6WwbyS_V=xfV6E_#dKW>5qCmwmZ(IbXE5Ev};!I Y_V@2)8{fP4;EU<1oin8V(#`w-2FmNzg#Z8m diff --git a/icons/mob/inhands/equipment/kitchen_righthand.dmi b/icons/mob/inhands/equipment/kitchen_righthand.dmi index 075b4c20336ae7990becb0f8c79729379ba6014d..9e9f21b0f51408294b65afd8d84c5234c2efec51 100644 GIT binary patch literal 2554 zcmcJRc{JPU8pnS@D`QIZj(ZzRnqsDxDxpWTr6sl0(n_r@YN@8WsMsQrL5Nyg(#6th zQ)Q4+TexY95)`FW8a09vqAgKNt&K=xnY3r_ANQWQJ!j6G`_KD6?|Gm1J?H(r-)Fh% zgtk>wP*VT^K+)dL+64eWQWF>hZfWhY7zF8gVHk7yyX(DL1PX z5)1+B$#Fd;ADVGRZGf&rSdX8MbK!SG))^jCyhxqLxux8Qg<3O%c3SOiziY#_j7k+lZVS4t?i3*a6NIrV&77G9Xui9H5aUaX#>;m-%gQkFy6 zB9cXhJJNC8Vse8m3VUaIQ1NmFDF2aaGyuHU1OR_IU{^W-ByI=DhBAQiQ2=NG11Km6 z0BcJ(S@8OqjJz#MM)Nj-B`csXBrn(3U;(XdX4#k@8+;Itnp=9XV~K3sewzP-dSu7vzu*0;Y!Hjx<=UpqEP>I zqqq8vOYO$(Ihl|h?E)CNOzof$B#2m7+12slPA?zPM}ri;(U}_EarSkq4VL$zX%Sjw zkj73@*&nA#fFCWqwLUTFmkEi_Sq^nJYg;WgmsgHnth>3yN4NuiSIJCFH0_4YDt>i?pXA5|gKe$9c-W>i%hE&8k07 zfh-T%=?&3p17h^}&fR+1rudIm)0fY17CRoqrHWlaRZUI2lGgXQUmA3ULLn3OeyR}N zZC)P!kOb2=%^O^Xc*XVCy-P_+Aso;c3a+7!ixx(L2b5B*qKU+h__fBFwz&j4Zpu|P za#kd%WKT7dtLosgD^biJGqm~+V0>`zNLa?QpRx=qd2)|P<5v<6|Z0r;wMtu89T z5W1HH^JcP3A6Uf2V!{rQ#E(~)g2Q|jdZ*8AC2}dkJ9y2Ey7@4GZo4Q++uUq4jW>SHX0t@1pNp2#bSa!k zujAAAxB-uVoa4JG@AWd4`1{*Q(ANs_!+6W-2vd83NgL6%emA51vr0Y~#9@V`=NUG@ zWD=g|8{IvAj&5}5U;Rs73!E825QiSOwpzV3aEDYE+vM&W9Uc8d^_Wll-7aL^%#&UW z3b^#4u=$U|{xAK?mu%uFkHTEm@YnE9%%PU4-4ZX%mnFoV?Niij<9c(zoRn!ZvWC?z z8f$)Lou7pP7d@8B*Dt#iAO@v(>d7^-Cc-R{1)twZ2+<=s4VL*i$Bb%J0u!fOBY?rq zkln?~Iw9R-wlmi-IWTxf2k5%E&NZ=p}XQ zN<*Y1o-`a;JEZh#6sv`}zX%v`9eYL za@X%v=v{7r%I_#*9zf=wN#FT+*rHrL^AuPGr^~->DW#aBKzglX`hSW{UXXm=GMnvidzmZ4FZ%t&a zLk($kx%-g36C(jVo1!pz0Q?~V_3cQhnm-Ex!jNi|K`WFs7xW)x^bfV;vAkYP&xq5z znEErq#p($pwcG3RXs++jk_C>Glry;pdG<5teOKCiF>mu}T{0?FR9CY78KkG*m_NO; zJl>l0HtKQkQ3RS%4}c3`Sl5;Bc@y<~SjZ z-e5#AIv-MxC72A{-%#~9g$$pQot_fwqOPYQXe_^%)sPap`VA1yD@HeX!xBwGF&#-t zyHZ} xn$kcE9($20(g%ze^vNb0hRWY)GNg27Eg15-Kj;*k7k+8&>}}B2m6m6&{05JeQyKsO literal 2368 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 XoBDXzlrBp3B?7n|^E~?0DLC~nq}~-S From b27c043760b6d68dd7cc21d322e11810c93f8244 Mon Sep 17 00:00:00 2001 From: WanderingFox95 <75953558+WanderingFox95@users.noreply.github.com> Date: Mon, 26 Apr 2021 18:54:12 +0200 Subject: [PATCH 053/259] Fixed a little error --- code/game/objects/items/kitchen.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/objects/items/kitchen.dm b/code/game/objects/items/kitchen.dm index fc6a639f5a..417fd96c85 100644 --- a/code/game/objects/items/kitchen.dm +++ b/code/game/objects/items/kitchen.dm @@ -262,7 +262,7 @@ attack_verb = list("bashed", "battered", "bludgeoned", "thrashed", "whacked") custom_price = PRICE_ALMOST_CHEAP -/obj/item/kitchen/rollingpin/suicide_act(mob/living/carbon/user) +/obj/item/kitchen/unrollingpin/suicide_act(mob/living/carbon/user) user.visible_message("[user] begins unflattening [user.p_their()] head with \the [src]! It looks like [user.p_theyre()] trying to commit suicide!") return BRUTELOSS From b252773e76dc2b6e102224cc7fc1784f77acfa03 Mon Sep 17 00:00:00 2001 From: WanderingFox95 <75953558+WanderingFox95@users.noreply.github.com> Date: Mon, 26 Apr 2021 19:00:41 +0200 Subject: [PATCH 054/259] Annoying --- code/modules/mob/living/simple_animal/parrot.dm | 1 + 1 file changed, 1 insertion(+) diff --git a/code/modules/mob/living/simple_animal/parrot.dm b/code/modules/mob/living/simple_animal/parrot.dm index bd45c482a2..d146bb855f 100644 --- a/code/modules/mob/living/simple_animal/parrot.dm +++ b/code/modules/mob/living/simple_animal/parrot.dm @@ -64,6 +64,7 @@ friendly_verb_simple = "groom" mob_size = MOB_SIZE_SMALL movement_type = FLYING + gold_core_spawnable = FRIENDLY_SPAWN var/parrot_damage_upper = 10 var/parrot_state = PARROT_WANDER //Hunt for a perch when created From ca3ef3b0f304c53fab77cd89556f27a046598b8f Mon Sep 17 00:00:00 2001 From: Timothy Teakettle <59849408+timothyteakettle@users.noreply.github.com> Date: Mon, 26 Apr 2021 18:02:47 +0100 Subject: [PATCH 055/259] X button --- code/modules/client/preferences.dm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/code/modules/client/preferences.dm b/code/modules/client/preferences.dm index 1a9a9a6cbf..6a5dd3b8d5 100644 --- a/code/modules/client/preferences.dm +++ b/code/modules/client/preferences.dm @@ -522,12 +522,13 @@ GLOBAL_LIST_EMPTY(preferences_datums) if(marking_type) dat += APPEARANCE_CATEGORY_COLUMN dat += "

    [GLOB.all_mutant_parts[marking_type]]

    " // give it the appropriate title for the type of marking + dat += "Add marking" // list out the current markings you have if(length(features[marking_type])) dat += "" for(var/list/marking_list in features[marking_type]) var/actual_name = GLOB.bodypart_names[num2text(marking_list[1])] // get the actual name from the bitflag representing the part the marking is applied to - dat += "" + dat += "" dat += "
    [marking_list[2]] - [actual_name] ˄ ˅
    [marking_list[2]] - [actual_name] ˄ ˅ X
    " for(var/mutant_part in GLOB.all_mutant_parts) From 03fa382f368a20e874f35ee537e23e88766975a9 Mon Sep 17 00:00:00 2001 From: silicons <2003111+silicons@users.noreply.github.com> Date: Mon, 26 Apr 2021 13:57:34 -0700 Subject: [PATCH 056/259] Update autobunker.dm --- code/modules/client/verbs/autobunker.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/client/verbs/autobunker.dm b/code/modules/client/verbs/autobunker.dm index 620854b9ed..367f1944cc 100644 --- a/code/modules/client/verbs/autobunker.dm +++ b/code/modules/client/verbs/autobunker.dm @@ -3,7 +3,7 @@ set desc = "Authorizes your account in the panic bunker of any servers connected to this function." set category = "OOC" - if(!(prefs.db_flags & DB_FLAG_AGE_CONFIRMATION_INCOMPLETE)) + if(prefs.db_flags & DB_FLAG_AGE_CONFIRMATION_INCOMPLETE) to_chat(src, "You are not age verified.") return From 06e003f49b14d450fb57dafa08537dc78b665ba6 Mon Sep 17 00:00:00 2001 From: Timothy Teakettle <59849408+timothyteakettle@users.noreply.github.com> Date: Mon, 26 Apr 2021 21:58:12 +0100 Subject: [PATCH 057/259] functionality --- code/modules/client/preferences.dm | 28 ++++++++++++++++++++++++++-- 1 file changed, 26 insertions(+), 2 deletions(-) diff --git a/code/modules/client/preferences.dm b/code/modules/client/preferences.dm index 6a5dd3b8d5..451c3c73dc 100644 --- a/code/modules/client/preferences.dm +++ b/code/modules/client/preferences.dm @@ -526,9 +526,10 @@ GLOBAL_LIST_EMPTY(preferences_datums) // list out the current markings you have if(length(features[marking_type])) dat += "" - for(var/list/marking_list in features[marking_type]) + var/list/markings = features[marking_type] + for(var/list/marking_list in markings) var/actual_name = GLOB.bodypart_names[num2text(marking_list[1])] // get the actual name from the bitflag representing the part the marking is applied to - dat += "" + dat += "" dat += "
    [marking_list[2]] - [actual_name] ˄ ˅ X
    [marking_list[2]] - [actual_name] ˄ ˅ X
    " for(var/mutant_part in GLOB.all_mutant_parts) @@ -2413,6 +2414,29 @@ GLOBAL_LIST_EMPTY(preferences_datums) var/selected_body_sprite = input(user, "Choose your desired body sprite", "Character Preference") as null|anything in pref_species.allowed_limb_ids if(selected_body_sprite) chosen_limb_id = selected_body_sprite //this gets sanitized before loading + + if("marking_down") + // move the specified marking down + var/index = href_list["marking_index"] + var/marking_type = href_list["marking_type"] + if(index && marking_type && features[marking_type]) + // placeholder + var/a + + if("marking_up") + // move the specified marking up + var/index = href_list["marking_index"] + var/marking_type = href_list["marking_type"] + if(index && marking_type && features[marking_type]) + // placeholder + var/a + + if("marking_remove") + // remove the specified marking + var/marking_list = href_list["marking_list"] + var/marking_type = href_list["marking_type"] + if(marking_list && marking_type && features[marking_type]) + features[marking_type] -= marking_list else switch(href_list["preference"]) //CITADEL PREFERENCES EDIT - I can't figure out how to modularize these, so they have to go here. :c -Pooj From 604d5e2fbceb0abefe424c71ea06efa9cd7b05cf Mon Sep 17 00:00:00 2001 From: Changelogs Date: Wed, 28 Apr 2021 00:06:38 +0000 Subject: [PATCH 058/259] Automatic changelog compile [ci skip] --- html/changelog.html | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/html/changelog.html b/html/changelog.html index 44ed1c8e5d..fa46c13a87 100644 --- a/html/changelog.html +++ b/html/changelog.html @@ -797,16 +797,6 @@
    • Traitor / Ling objective amount should now be correct again.
    - -

    24 February 2021

    -

    SandPoot updated:

    -
      -
    • Regular crowbars no longer open powered airlocks.
    • -
    -

    silicons updated:

    -
      -
    • xeno cube makes hostile xenos now, and drops a sentinel instead of a drone.
    • -
    GoonStation 13 Development Team From 6d86809616cedb3c563ea7d087256df35556e39a Mon Sep 17 00:00:00 2001 From: keronshb <54602815+keronshb@users.noreply.github.com> Date: Wed, 28 Apr 2021 08:09:37 -0400 Subject: [PATCH 059/259] Removes the Reinforcement Chromosome from Genetics. (#14641) * Removes Mutadone Proof from Genetics This might be a bit too good. * Fixes so mutadone actually works Oops * Removes the reinforcement chromosome Removes the reinforcement chromosome --- code/game/objects/items/chromosome.dm | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/code/game/objects/items/chromosome.dm b/code/game/objects/items/chromosome.dm index 3acf3cfe5c..f5b693879b 100644 --- a/code/game/objects/items/chromosome.dm +++ b/code/game/objects/items/chromosome.dm @@ -75,18 +75,3 @@ desc = "A chromosome that reduces action based mutation cooldowns by by 50%." icon_state = "energy" energy_coeff = 0.5 - -/obj/item/chromosome/reinforcer - name = "reinforcement chromosome" - desc = "A chromosome that renders mutations immune to mutadone." - icon_state = "reinforcer" - weight = 3 - -/obj/item/chromosome/reinforcer/can_apply(datum/mutation/human/HM) - if(!HM || !(HM.can_chromosome == CHROMOSOME_NONE)) - return FALSE - return !HM.mutadone_proof - -/obj/item/chromosome/reinforcer/apply(datum/mutation/human/HM) - HM.mutadone_proof = TRUE - ..() From b19a2cd9753a7d3912eb1d16c5d0b292b87477d3 Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Wed, 28 Apr 2021 07:09:39 -0500 Subject: [PATCH 060/259] Automatic changelog generation for PR #14641 [ci skip] --- html/changelogs/AutoChangeLog-pr-14641.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-14641.yml diff --git a/html/changelogs/AutoChangeLog-pr-14641.yml b/html/changelogs/AutoChangeLog-pr-14641.yml new file mode 100644 index 0000000000..0e4b0ebbb2 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-14641.yml @@ -0,0 +1,4 @@ +author: "keronshb" +delete-after: True +changes: + - balance: "Removes the Reinforcement Chromosome from Genetics." From 79b73a53a063979d875188b4e1240a01024410ea Mon Sep 17 00:00:00 2001 From: timothyteakettle <59849408+timothyteakettle@users.noreply.github.com> Date: Wed, 28 Apr 2021 16:53:12 +0100 Subject: [PATCH 061/259] working buttons probably --- code/modules/client/preferences.dm | 34 ++++++++++++++++++------------ 1 file changed, 21 insertions(+), 13 deletions(-) diff --git a/code/modules/client/preferences.dm b/code/modules/client/preferences.dm index 451c3c73dc..6eef427b27 100644 --- a/code/modules/client/preferences.dm +++ b/code/modules/client/preferences.dm @@ -529,7 +529,7 @@ GLOBAL_LIST_EMPTY(preferences_datums) var/list/markings = features[marking_type] for(var/list/marking_list in markings) var/actual_name = GLOB.bodypart_names[num2text(marking_list[1])] // get the actual name from the bitflag representing the part the marking is applied to - dat += "[marking_list[2]] - [actual_name] ˄ ˅ X" + dat += "[marking_list[2]] - [actual_name] ˄ ˅ X" dat += "" for(var/mutant_part in GLOB.all_mutant_parts) @@ -2417,26 +2417,34 @@ GLOBAL_LIST_EMPTY(preferences_datums) if("marking_down") // move the specified marking down - var/index = href_list["marking_index"] + var/index = text2num(href_list["marking_index"]) var/marking_type = href_list["marking_type"] - if(index && marking_type && features[marking_type]) - // placeholder - var/a + if(index && marking_type && features[marking_type] && index != length(features[marking_type])) + var/index_down = index + 1 + var/markings = features[marking_type] + var/first_marking = markings[index] + var/second_marking = markings[index_down] + markings[index] = second_marking + markings[index_down] = first_marking if("marking_up") // move the specified marking up - var/index = href_list["marking_index"] + var/index = text2num(href_list["marking_index"]) var/marking_type = href_list["marking_type"] - if(index && marking_type && features[marking_type]) - // placeholder - var/a + if(index && marking_type && features[marking_type] && index != 1) + var/index_up = index - 1 + var/markings = features[marking_type] + var/first_marking = markings[index] + var/second_marking = markings[index_up] + markings[index] = second_marking + markings[index_up] = first_marking if("marking_remove") - // remove the specified marking - var/marking_list = href_list["marking_list"] + // move the specified marking up + var/index = text2num(href_list["marking_index"]) var/marking_type = href_list["marking_type"] - if(marking_list && marking_type && features[marking_type]) - features[marking_type] -= marking_list + if(index && marking_type && features[marking_type]) + features[marking_type].Cut(index, index + 1) else switch(href_list["preference"]) //CITADEL PREFERENCES EDIT - I can't figure out how to modularize these, so they have to go here. :c -Pooj From 2f5cb6399420bdcde7fce7e8aaf6209c9ceb8e75 Mon Sep 17 00:00:00 2001 From: timothyteakettle <59849408+timothyteakettle@users.noreply.github.com> Date: Wed, 28 Apr 2021 17:37:09 +0100 Subject: [PATCH 062/259] who deleted this --- code/modules/mob/dead/new_player/preferences_setup.dm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/code/modules/mob/dead/new_player/preferences_setup.dm b/code/modules/mob/dead/new_player/preferences_setup.dm index d198140c5f..a9233938ab 100644 --- a/code/modules/mob/dead/new_player/preferences_setup.dm +++ b/code/modules/mob/dead/new_player/preferences_setup.dm @@ -54,6 +54,8 @@ mannequin.job = previewJob.title previewJob.equip(mannequin, TRUE, preference_source = parent) + mannequin.regenerate_icons() + COMPILE_OVERLAYS(mannequin) parent.show_character_previews(new /mutable_appearance(mannequin)) unset_busy_human_dummy(DUMMY_HUMAN_SLOT_PREFERENCES) From 72a009dc7c7df96bce7ace0e188cd456118b03f7 Mon Sep 17 00:00:00 2001 From: Timothy Teakettle <59849408+timothyteakettle@users.noreply.github.com> Date: Wed, 28 Apr 2021 19:31:20 +0100 Subject: [PATCH 063/259] based? --- code/modules/surgery/bodyparts/_bodyparts.dm | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/code/modules/surgery/bodyparts/_bodyparts.dm b/code/modules/surgery/bodyparts/_bodyparts.dm index e5e65773be..5664319a38 100644 --- a/code/modules/surgery/bodyparts/_bodyparts.dm +++ b/code/modules/surgery/bodyparts/_bodyparts.dm @@ -810,22 +810,23 @@ limb.icon_state = "[species_id]_[body_zone]" // Body markings + var/list/marking_list if(length(body_markings_list)) - message_admins("ADDING FUNNY IMAGES AT [owner] FOR [src]") if(species_id == "husk") - . += image('modular_citadel/icons/mob/markings_notmammals.dmi', "husk_[body_zone]", -MARKING_LAYER, image_dir) + marking_list += image('modular_citadel/icons/mob/markings_notmammals.dmi', "husk_[body_zone]", -MARKING_LAYER, image_dir) else if(species_id == "husk" && use_digitigrade) - . += image('modular_citadel/icons/mob/markings_notmammals.dmi', "husk_[digitigrade_type]_[use_digitigrade]_[body_zone]", -MARKING_LAYER, image_dir) + marking_list += image('modular_citadel/icons/mob/markings_notmammals.dmi', "husk_[digitigrade_type]_[use_digitigrade]_[body_zone]", -MARKING_LAYER, image_dir) else for(var/list/marking_list in body_markings_list) // marking stores icon and value for the specific bodypart if(!use_digitigrade) if(body_zone == BODY_ZONE_CHEST) - . += image(marking_list[1], "[marking_list[2]]_[body_zone]_[icon_gender]", -MARKING_LAYER, image_dir) + marking_list += image(marking_list[1], "[marking_list[2]]_[body_zone]_[icon_gender]", -MARKING_LAYER, image_dir) else - . += image(marking_list[1], "[marking_list[2]]_[body_zone]", -MARKING_LAYER, image_dir) + marking_list += image(marking_list[1], "[marking_list[2]]_[body_zone]", -MARKING_LAYER, image_dir) else - . += image(marking_list[1], "[marking_list[2]]_[digitigrade_type]_[use_digitigrade]_[body_zone]", -MARKING_LAYER, image_dir) + marking_list += image(marking_list[1], "[marking_list[2]]_[digitigrade_type]_[use_digitigrade]_[body_zone]", -MARKING_LAYER, image_dir) + . += marking_list // Citadel End @@ -878,7 +879,7 @@ else . += image(marking_list[1], "[marking_list[2]]_[digitigrade_type]_[use_digitigrade]_[body_zone]", -MARKING_LAYER, image_dir) return -/* + if(color_src) //TODO - add color matrix support for base species limbs (or dont because color matrixes suck) var/draw_color = mutation_color || species_color var/grayscale = FALSE @@ -907,10 +908,10 @@ if(!isnull(body_markings)) if(species_id == "husk") + marking.color = "#141414" else marking.color = list(markings_color) -*/ /obj/item/bodypart/deconstruct(disassembled = TRUE) drop_organs() From 3afb80103664a46abb3b5aff537f9ff3dba62096 Mon Sep 17 00:00:00 2001 From: qweq12yt <45515587+qweq12yt@users.noreply.github.com> Date: Wed, 28 Apr 2021 15:41:20 -0300 Subject: [PATCH 064/259] huh --- code/modules/clothing/suits/armor.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/clothing/suits/armor.dm b/code/modules/clothing/suits/armor.dm index 6732f1c86c..254ed60c03 100644 --- a/code/modules/clothing/suits/armor.dm +++ b/code/modules/clothing/suits/armor.dm @@ -145,7 +145,7 @@ /obj/item/clothing/suit/armor/riot name = "riot suit" desc = "A suit of semi-flexible polycarbonate body armor with heavy padding to protect against melee attacks. Helps the wearer resist shoving in close quarters." - icon_state = "riot" + icon_state = "swat" item_state = "swat_suit" body_parts_covered = CHEST|GROIN|LEGS|FEET|ARMS|HANDS cold_protection = CHEST|GROIN|LEGS|FEET|ARMS|HANDS From 8f14424a63020aeba8ca216134e2bc5b7a5da9d5 Mon Sep 17 00:00:00 2001 From: Putnam3145 Date: Wed, 28 Apr 2021 13:56:15 -0700 Subject: [PATCH 065/259] Fixes a couple runtimes in activity tracking (#14666) --- code/controllers/subsystem/activity.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/controllers/subsystem/activity.dm b/code/controllers/subsystem/activity.dm index 24cd1802f0..0a8d248e58 100644 --- a/code/controllers/subsystem/activity.dm +++ b/code/controllers/subsystem/activity.dm @@ -61,14 +61,14 @@ SUBSYSTEM_DEF(activity) for(var/threat in threat_history) . = max(threat_history[threat], .) -/datum/controller/subsystem/activity/proc/on_explosion(atom/epicenter, devastation_range, heavy_impact_range, light_impact_range, took, orig_dev_range, orig_heavy_range, orig_light_range) +/datum/controller/subsystem/activity/proc/on_explosion(datum/source, atom/epicenter, devastation_range, heavy_impact_range, light_impact_range, took, orig_dev_range, orig_heavy_range, orig_light_range) if(!("explosions" in deferred_threats)) deferred_threats["explosions"] = 0 var/area/A = get_area(epicenter) if(is_station_level(epicenter.z) && (A.area_flags & BLOBS_ALLOWED) && !istype(A, /area/asteroid)) deferred_threats["explosions"] += devastation_range**2 + heavy_impact_range**2 / 4 + light_impact_range**2 / 8 // 75 for a maxcap -/datum/controller/subsystem/activity/proc/on_death(mob/M, gibbed) +/datum/controller/subsystem/activity/proc/on_death(datum/source, mob/M, gibbed) if(!("crew_deaths" in deferred_threats)) deferred_threats["crew_deaths"] = 0 if(M?.mind && SSjob.GetJob(M.mind.assigned_role)) From 85ec8aa5a08cf7500205a5e42120acbc35539177 Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Wed, 28 Apr 2021 15:56:18 -0500 Subject: [PATCH 066/259] Automatic changelog generation for PR #14666 [ci skip] --- html/changelogs/AutoChangeLog-pr-14666.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-14666.yml diff --git a/html/changelogs/AutoChangeLog-pr-14666.yml b/html/changelogs/AutoChangeLog-pr-14666.yml new file mode 100644 index 0000000000..40591d9026 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-14666.yml @@ -0,0 +1,4 @@ +author: "Putnam3145" +delete-after: True +changes: + - bugfix: "Fixed a couple runtimes in activity (threat) tracking" From cb98cbd19f2c8e05c34567624639e8610135aabd Mon Sep 17 00:00:00 2001 From: Timothy Teakettle <59849408+timothyteakettle@users.noreply.github.com> Date: Wed, 28 Apr 2021 22:33:05 +0100 Subject: [PATCH 067/259] colour backend --- code/modules/client/preferences.dm | 15 ++++++++- code/modules/surgery/bodyparts/_bodyparts.dm | 35 ++++++++++++-------- 2 files changed, 35 insertions(+), 15 deletions(-) diff --git a/code/modules/client/preferences.dm b/code/modules/client/preferences.dm index 6eef427b27..0e9618067b 100644 --- a/code/modules/client/preferences.dm +++ b/code/modules/client/preferences.dm @@ -528,8 +528,21 @@ GLOBAL_LIST_EMPTY(preferences_datums) dat += "" var/list/markings = features[marking_type] for(var/list/marking_list in markings) + var/marking_index = markings.Find(marking_list) // consider changing loop to go through indexes over lists instead of using Find here var/actual_name = GLOB.bodypart_names[num2text(marking_list[1])] // get the actual name from the bitflag representing the part the marking is applied to - dat += "" + var/color_marking_dat = "" + var/datum/sprite_accessory/S = (actual_name == "mam_body_markings") ? GLOB.mam_body_markings_list[marking_list[2]] : GLOB.body_markings_list[marking_list[2]] + if(S && S.matrixed_sections && S.matrixed_sections != MATRIX_NONE) + // we know it has one matrixed section at minimum + color_marking_dat += "   " + // if it has a second section, add it + if(S.matrixed_sections == MATRIX_RED_BLUE || S.matrixed_sections == MATRIX_GREEN_BLUE || S.matrixed_sections == MATRIX_RED_GREEN) + color_marking_dat += "   " + // if it has a third section, add it + if(S.matrixed_sections == MATRIX_ALL) + color_marking_dat += "   " + color_marking_dat += " Change
    " + dat += "" dat += "
    [marking_list[2]] - [actual_name] ˄ ˅ X
    [marking_list[2]] - [actual_name] ˄ ˅ X [color_marking_dat]
    " for(var/mutant_part in GLOB.all_mutant_parts) diff --git a/code/modules/surgery/bodyparts/_bodyparts.dm b/code/modules/surgery/bodyparts/_bodyparts.dm index 5664319a38..f970e04726 100644 --- a/code/modules/surgery/bodyparts/_bodyparts.dm +++ b/code/modules/surgery/bodyparts/_bodyparts.dm @@ -700,8 +700,12 @@ marking_value = Smark?.icon_state || lowertext(H.dna.features["mam_body_markings"]) else marking_value = "plain" - message_admins("MATCH FOUND FOR [marking[1]] ON PART [body_part] ON USER [C], VALUE IS [body_markings_icon] AND [marking_value]") - body_markings_list += list(list(body_markings_icon, marking_value)) + var/list/color_values + if(length(marking) == 3) + color_values = marking[3] + else + color_values = list("#FFFFFF", "#FFFFFF", "#FFFFFF") + body_markings_list += list(list(body_markings_icon, marking_value, color_values)) markings_color = list(colorlist) else @@ -796,8 +800,8 @@ if((body_zone != BODY_ZONE_HEAD && body_zone != BODY_ZONE_CHEST)) should_draw_gender = FALSE + var/list/markings_list = list() if(is_organic_limb()) - message_admins("UPDATING ORGANIC LIMB FOR [owner] AT [src]") limb.icon = base_bp_icon || 'icons/mob/human_parts.dmi' if(should_draw_gender) limb.icon_state = "[species_id]_[body_zone]_[icon_gender]" @@ -810,23 +814,28 @@ limb.icon_state = "[species_id]_[body_zone]" // Body markings - var/list/marking_list if(length(body_markings_list)) if(species_id == "husk") - marking_list += image('modular_citadel/icons/mob/markings_notmammals.dmi', "husk_[body_zone]", -MARKING_LAYER, image_dir) + . += image('modular_citadel/icons/mob/markings_notmammals.dmi', "husk_[body_zone]", -MARKING_LAYER, image_dir) else if(species_id == "husk" && use_digitigrade) - marking_list += image('modular_citadel/icons/mob/markings_notmammals.dmi', "husk_[digitigrade_type]_[use_digitigrade]_[body_zone]", -MARKING_LAYER, image_dir) + . += image('modular_citadel/icons/mob/markings_notmammals.dmi', "husk_[digitigrade_type]_[use_digitigrade]_[body_zone]", -MARKING_LAYER, image_dir) else for(var/list/marking_list in body_markings_list) // marking stores icon and value for the specific bodypart if(!use_digitigrade) if(body_zone == BODY_ZONE_CHEST) - marking_list += image(marking_list[1], "[marking_list[2]]_[body_zone]_[icon_gender]", -MARKING_LAYER, image_dir) + markings_list.Add(image(marking_list[1], "[marking_list[2]]_[body_zone]_[icon_gender]", -MARKING_LAYER, image_dir)) + message_admins("length is now [length(markings_list)]") else - marking_list += image(marking_list[1], "[marking_list[2]]_[body_zone]", -MARKING_LAYER, image_dir) + markings_list.Add(image(marking_list[1], "[marking_list[2]]_[body_zone]", -MARKING_LAYER, image_dir)) + message_admins("length is now [length(markings_list)]") else - marking_list += image(marking_list[1], "[marking_list[2]]_[digitigrade_type]_[use_digitigrade]_[body_zone]", -MARKING_LAYER, image_dir) - . += marking_list + markings_list.Add(image(marking_list[1], "[marking_list[2]]_[digitigrade_type]_[use_digitigrade]_[body_zone]", -MARKING_LAYER, image_dir)) + message_admins("length is now [length(markings_list)]") + if(color_src && length(marking_list) == 3) + message_admins("trying to color list of length [length(marking_list)] and also trying to access index [length(markings_list)] on a list of the same length") + markings_list[length(markings_list)].color = marking_list[3] + . += markings_list // Citadel End @@ -908,10 +917,8 @@ if(!isnull(body_markings)) if(species_id == "husk") - - marking.color = "#141414" - else - marking.color = list(markings_color) + for(var/image/marking in markings_list) + marking.color = "#141414" /obj/item/bodypart/deconstruct(disassembled = TRUE) drop_organs() From a331f2412102e865723b2dae34a813f15202adf7 Mon Sep 17 00:00:00 2001 From: Changelogs Date: Thu, 29 Apr 2021 00:06:31 +0000 Subject: [PATCH 068/259] Automatic changelog compile [ci skip] --- html/changelog.html | 16 ++++++++++------ html/changelogs/.all_changelog.yml | 5 +++++ html/changelogs/AutoChangeLog-pr-14641.yml | 4 ---- html/changelogs/AutoChangeLog-pr-14666.yml | 4 ---- 4 files changed, 15 insertions(+), 14 deletions(-) delete mode 100644 html/changelogs/AutoChangeLog-pr-14641.yml delete mode 100644 html/changelogs/AutoChangeLog-pr-14666.yml diff --git a/html/changelog.html b/html/changelog.html index fa46c13a87..2c4f8c0144 100644 --- a/html/changelog.html +++ b/html/changelog.html @@ -50,6 +50,16 @@ -->
    +

    29 April 2021

    +

    Putnam3145 updated:

    +
      +
    • Fixed a couple runtimes in activity (threat) tracking
    • +
    +

    keronshb updated:

    +
      +
    • Removes the Reinforcement Chromosome from Genetics.
    • +
    +

    26 April 2021

    Trigg, stylemistake and SandPoot updated:

      @@ -791,12 +801,6 @@
      • All machine-frame based tool-use actions now have state-checking callbacks.
      - -

      25 February 2021

      -

      DeltaFire15 updated:

      -
        -
      • Traitor / Ling objective amount should now be correct again.
      • -
    GoonStation 13 Development Team diff --git a/html/changelogs/.all_changelog.yml b/html/changelogs/.all_changelog.yml index d1d5cc31d6..3f58b0ce2b 100644 --- a/html/changelogs/.all_changelog.yml +++ b/html/changelogs/.all_changelog.yml @@ -29172,3 +29172,8 @@ DO NOT EDIT THIS FILE BY HAND! AUTOMATICALLY GENERATED BY ss13_genchangelog.py. - admin: 'Admins just got a new TGUI Select Equipment menu tweak: Prevents the window from creating sprites for any animated version there might be. (this guarantees consistant sprite size/amount)' +2021-04-29: + Putnam3145: + - bugfix: Fixed a couple runtimes in activity (threat) tracking + keronshb: + - balance: Removes the Reinforcement Chromosome from Genetics. diff --git a/html/changelogs/AutoChangeLog-pr-14641.yml b/html/changelogs/AutoChangeLog-pr-14641.yml deleted file mode 100644 index 0e4b0ebbb2..0000000000 --- a/html/changelogs/AutoChangeLog-pr-14641.yml +++ /dev/null @@ -1,4 +0,0 @@ -author: "keronshb" -delete-after: True -changes: - - balance: "Removes the Reinforcement Chromosome from Genetics." diff --git a/html/changelogs/AutoChangeLog-pr-14666.yml b/html/changelogs/AutoChangeLog-pr-14666.yml deleted file mode 100644 index 40591d9026..0000000000 --- a/html/changelogs/AutoChangeLog-pr-14666.yml +++ /dev/null @@ -1,4 +0,0 @@ -author: "Putnam3145" -delete-after: True -changes: - - bugfix: "Fixed a couple runtimes in activity (threat) tracking" From 82d166017ce47157a8b493cd86913f87aff759a8 Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Wed, 28 Apr 2021 22:16:53 -0500 Subject: [PATCH 069/259] Automatic changelog generation for PR #14643 [ci skip] --- html/changelogs/AutoChangeLog-pr-14643.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-14643.yml diff --git a/html/changelogs/AutoChangeLog-pr-14643.yml b/html/changelogs/AutoChangeLog-pr-14643.yml new file mode 100644 index 0000000000..d344957d55 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-14643.yml @@ -0,0 +1,4 @@ +author: "akada" +delete-after: True +changes: + - imageadd: "Changes the space adaptation sprite to something less intrusive and more subtle." From 152c88fe46b2de523ce970e1df3841cfdd5a4832 Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Wed, 28 Apr 2021 22:17:00 -0500 Subject: [PATCH 070/259] Automatic changelog generation for PR #14636 [ci skip] --- html/changelogs/AutoChangeLog-pr-14636.yml | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-14636.yml diff --git a/html/changelogs/AutoChangeLog-pr-14636.yml b/html/changelogs/AutoChangeLog-pr-14636.yml new file mode 100644 index 0000000000..fe17a4aa17 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-14636.yml @@ -0,0 +1,6 @@ +author: "TheObserver-sys" +delete-after: True +changes: + - bugfix: "Restores the access lock on crates that should have them, given the goods inside." + - bugfix: "Makes the 10MM Surplus Rifle a less awful thing to use." + - bugfix: "replaces unarmored things with their armored versions." From 86ad5fd32de65b1391049159ab192205e199e72f Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Wed, 28 Apr 2021 22:17:08 -0500 Subject: [PATCH 071/259] Automatic changelog generation for PR #14635 [ci skip] --- html/changelogs/AutoChangeLog-pr-14635.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-14635.yml diff --git a/html/changelogs/AutoChangeLog-pr-14635.yml b/html/changelogs/AutoChangeLog-pr-14635.yml new file mode 100644 index 0000000000..cbb91a249c --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-14635.yml @@ -0,0 +1,4 @@ +author: "necromanceranne" +delete-after: True +changes: + - rscadd: "Fake blindfolds in the loadout. They don't obscure vision, for better or worse." From fc2bf6c24dab56960a6b46a7e4ef01752a3244df Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Wed, 28 Apr 2021 22:17:17 -0500 Subject: [PATCH 072/259] Automatic changelog generation for PR #14659 [ci skip] --- html/changelogs/AutoChangeLog-pr-14659.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-14659.yml diff --git a/html/changelogs/AutoChangeLog-pr-14659.yml b/html/changelogs/AutoChangeLog-pr-14659.yml new file mode 100644 index 0000000000..c836c3de3e --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-14659.yml @@ -0,0 +1,4 @@ +author: "DrPainis" +delete-after: True +changes: + - spellcheck: "Bubblegum's hallucinations are capitalized." From 914a5c793053b8010553f7aae8324463b45b9eaa Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Wed, 28 Apr 2021 22:17:38 -0500 Subject: [PATCH 073/259] Automatic changelog generation for PR #14651 [ci skip] --- html/changelogs/AutoChangeLog-pr-14651.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-14651.yml diff --git a/html/changelogs/AutoChangeLog-pr-14651.yml b/html/changelogs/AutoChangeLog-pr-14651.yml new file mode 100644 index 0000000000..27ed8f303e --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-14651.yml @@ -0,0 +1,4 @@ +author: "WanderingFox95" +delete-after: True +changes: + - balance: "There's finally a reason for the reagent dart gun to exist and be used!" From 74a5e0d051f4ca6c82bebbec4fa6ad35276560d1 Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Wed, 28 Apr 2021 22:17:58 -0500 Subject: [PATCH 074/259] Automatic changelog generation for PR #14649 [ci skip] --- html/changelogs/AutoChangeLog-pr-14649.yml | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-14649.yml diff --git a/html/changelogs/AutoChangeLog-pr-14649.yml b/html/changelogs/AutoChangeLog-pr-14649.yml new file mode 100644 index 0000000000..c54af36a4c --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-14649.yml @@ -0,0 +1,5 @@ +author: "TheObserver-sys" +delete-after: True +changes: + - balance: "Illegal Tech Ammo actually is fucking reasonable, now." + - balance: "Expensive Illegal Tech Ammo Boxes are now constructible, with actually justifiable prices." From b69b2bc72c769cfb7cd415b4582052639b9460b5 Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Wed, 28 Apr 2021 22:20:04 -0500 Subject: [PATCH 075/259] Automatic changelog generation for PR #14647 [ci skip] --- html/changelogs/AutoChangeLog-pr-14647.yml | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-14647.yml diff --git a/html/changelogs/AutoChangeLog-pr-14647.yml b/html/changelogs/AutoChangeLog-pr-14647.yml new file mode 100644 index 0000000000..a59e47811d --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-14647.yml @@ -0,0 +1,8 @@ +author: "Melbert, SandPoot" +delete-after: True +changes: + - refactor: "TGUI Limbgrower" + - refactor: "Refactored the limbgrower to modernize the code and allow for more types of designs." + - rscadd: "The limbgrower now supports plumbing ducts." + - bugfix: "Fixes genitals not actually getting data from disks." + - code_imp: "Adds two special helpers." From 29aee4005c3f25772519a5136b795007a175c8e2 Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Wed, 28 Apr 2021 22:20:26 -0500 Subject: [PATCH 076/259] Automatic changelog generation for PR #14648 [ci skip] --- html/changelogs/AutoChangeLog-pr-14648.yml | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-14648.yml diff --git a/html/changelogs/AutoChangeLog-pr-14648.yml b/html/changelogs/AutoChangeLog-pr-14648.yml new file mode 100644 index 0000000000..e2320ec5fe --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-14648.yml @@ -0,0 +1,5 @@ +author: "SandPoot" +delete-after: True +changes: + - rscadd: "The decal painter now has visible previews for your tile painting funs." + - bugfix: "Fixes decal painter painting in the opposite direction." From 0c803e02329b741cb65d38fd845e1854bf6b061c Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Wed, 28 Apr 2021 22:20:59 -0500 Subject: [PATCH 077/259] Automatic changelog generation for PR #14639 [ci skip] --- html/changelogs/AutoChangeLog-pr-14639.yml | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-14639.yml diff --git a/html/changelogs/AutoChangeLog-pr-14639.yml b/html/changelogs/AutoChangeLog-pr-14639.yml new file mode 100644 index 0000000000..ada372a811 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-14639.yml @@ -0,0 +1,7 @@ +author: "necromanceranne" +delete-after: True +changes: + - rscadd: "Basic cybernetic organs: they're worse than organic! Basic stomachs, hearts, lungs and livers! For when you hate someone enough to not bother harvesting organs from a monkeyhuman!" + - rscadd: "Cybernetic organs have been adjusted into three tiers: 1 (basic), 2 (standard, better than organic) and 3 (absolutely better than organic but expensive to print)" + - rscadd: "Cybernetic organs that are emp'd instead suffer different effects based on the severity of the emp. The bigger the emp, the worse the effect is." + - rscadd: "Rather than outright bricking, severely emp'd cyberorgans degrade over time very quickly, requiring replacement in the near future." From e0eca566a9860f27e6b645c7265c74380a4be15a Mon Sep 17 00:00:00 2001 From: TripleShades Date: Thu, 29 Apr 2021 14:04:04 -0400 Subject: [PATCH 078/259] Update PubbyStation.dmm --- _maps/map_files/PubbyStation/PubbyStation.dmm | 24 ++++++++++++------- 1 file changed, 16 insertions(+), 8 deletions(-) diff --git a/_maps/map_files/PubbyStation/PubbyStation.dmm b/_maps/map_files/PubbyStation/PubbyStation.dmm index 7bfabf432d..6dc7a478c0 100644 --- a/_maps/map_files/PubbyStation/PubbyStation.dmm +++ b/_maps/map_files/PubbyStation/PubbyStation.dmm @@ -3392,6 +3392,10 @@ /obj/vehicle/ridden/secway, /obj/item/key/security, /obj/effect/turf_decal/bot, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, /turf/open/floor/plasteel/showroomfloor, /area/security/office) "ais" = ( @@ -4891,6 +4895,10 @@ /obj/effect/turf_decal/tile/red{ dir = 8 }, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, /turf/open/floor/plasteel, /area/security/brig) "alz" = ( @@ -107807,8 +107815,8 @@ aaa aaa aaa aaa -aEl -aFi +aEj +bZV aEj aaa aEj @@ -108064,9 +108072,9 @@ aaa aaa aaa aaa -aEj -bZV -aEj +cdm +cdm +cdm aaa aaa aaa @@ -108321,9 +108329,9 @@ aaa aaa aaa aaa -ahi -ahi -ahi +bBW +bBW +bBW aaa aaa aaa From ee3b69989b3fb99edea24d8033ad833efce5212d Mon Sep 17 00:00:00 2001 From: TripleShades Date: Thu, 29 Apr 2021 14:20:11 -0400 Subject: [PATCH 079/259] Update PubbyStation.dmm --- _maps/map_files/PubbyStation/PubbyStation.dmm | 40 +++++++++---------- 1 file changed, 20 insertions(+), 20 deletions(-) diff --git a/_maps/map_files/PubbyStation/PubbyStation.dmm b/_maps/map_files/PubbyStation/PubbyStation.dmm index 6dc7a478c0..eacbc74508 100644 --- a/_maps/map_files/PubbyStation/PubbyStation.dmm +++ b/_maps/map_files/PubbyStation/PubbyStation.dmm @@ -705,7 +705,7 @@ icon_state = "4-8" }, /turf/open/floor/plating, -/area/commons/fitness/pool) +/area/maintenance/department/crew_quarters/dorms) "abG" = ( /obj/structure/cable{ icon_state = "1-2" @@ -37287,7 +37287,7 @@ dir = 4 }, /turf/open/floor/plating, -/area/science/mixing) +/area/maintenance/department/science) "bGB" = ( /obj/machinery/light/small, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -45944,14 +45944,8 @@ /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) +/turf/closed/wall, +/area/hallway/primary/fore) "bZY" = ( /turf/closed/wall, /area/service/chapel/office) @@ -61269,8 +61263,14 @@ /turf/open/floor/plating, /area/maintenance/department/science) "vtT" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/door/airlock/external{ + req_access_txt = "13" + }, /turf/open/floor/plating, -/area/maintenance/solars/port) +/area/maintenance/department/cargo) "vuP" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 4 @@ -62187,7 +62187,7 @@ "xuv" = ( /obj/item/broken_bottle, /turf/open/floor/plating, -/area/maintenance/solars/port) +/area/maintenance/department/security/brig) "xvO" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -79796,11 +79796,11 @@ atp aus aiu wxb -axC +aiu xuv -azN -vtT -vtT +aoe +ajD +ajD aiu apB aiu @@ -82368,8 +82368,8 @@ apE avq apE ajM -aiu -aiu +bZV +bZV gSH xJy sJr @@ -106263,7 +106263,7 @@ aaF aaF aaF abF -aaF +aiS aiS atn awC @@ -107816,7 +107816,7 @@ aaa aaa aaa aEj -bZV +vtT aEj aaa aEj From 0c854552270ae47d1ef5647f375e296361ef5c32 Mon Sep 17 00:00:00 2001 From: TripleShades Date: Thu, 29 Apr 2021 15:09:33 -0400 Subject: [PATCH 080/259] god i hate areas --- _maps/map_files/BoxStation/BoxStation.dmm | 96 +++++++++++++------ .../map_files/Deltastation/DeltaStation2.dmm | 17 ++-- _maps/map_files/MetaStation/MetaStation.dmm | 13 ++- 3 files changed, 84 insertions(+), 42 deletions(-) diff --git a/_maps/map_files/BoxStation/BoxStation.dmm b/_maps/map_files/BoxStation/BoxStation.dmm index 9ace5cf95b..826d25a437 100644 --- a/_maps/map_files/BoxStation/BoxStation.dmm +++ b/_maps/map_files/BoxStation/BoxStation.dmm @@ -25957,7 +25957,7 @@ /area/medical/paramedic) "bkd" = ( /obj/machinery/camera{ - c_tag = "Medbay Morgue"; + c_tag = "Paramedic Disbatch"; dir = 8; network = list("ss13","medbay") }, @@ -26360,7 +26360,7 @@ req_access_txt = "6" }, /turf/open/floor/plasteel/dark, -/area/medical/morgue) +/area/maintenance/department/medical/morgue) "blb" = ( /obj/machinery/door/airlock/command{ name = "Captain's Quarters"; @@ -33974,12 +33974,12 @@ }, /obj/machinery/bloodbankgen, /obj/machinery/camera{ - c_tag = "Medbay Recovery Room"; + c_tag = "Medbay Surgery Storage"; dir = 6; network = list("ss13","medbay") }, /turf/open/floor/plasteel/white, -/area/medical/medbay/central) +/area/medical/storage) "bCD" = ( /obj/machinery/computer/operating, /turf/open/floor/plasteel/white/side, @@ -34354,11 +34354,14 @@ /area/engineering/storage/tech) "bDA" = ( /obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 }, /turf/open/floor/plasteel/white, -/area/medical/medbay/central) +/area/medical/storage) "bDB" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -34366,6 +34369,9 @@ /obj/structure/cable{ icon_state = "1-4" }, +/obj/structure/cable{ + icon_state = "4-8" + }, /turf/open/floor/plasteel/white/side{ dir = 4 }, @@ -35118,7 +35124,7 @@ dir = 4 }, /turf/closed/wall, -/area/medical/medbay/central) +/area/medical/storage) "bFn" = ( /obj/structure/disposalpipe/segment{ dir = 5 @@ -35130,12 +35136,12 @@ /obj/structure/disposalpipe/segment{ dir = 10 }, -/obj/machinery/light/small{ - dir = 1 - }, /obj/effect/decal/cleanable/blood/old, +/obj/machinery/airalarm{ + pixel_y = 23 + }, /turf/open/floor/plasteel/white, -/area/medical/medbay/central) +/area/medical/storage) "bFp" = ( /obj/structure/closet/crate/freezer, /obj/item/reagent_containers/blood/random, @@ -35162,8 +35168,11 @@ dir = 8; sortType = 6 }, +/obj/machinery/light/small{ + dir = 1 + }, /turf/open/floor/plasteel/white, -/area/medical/medbay/central) +/area/medical/storage) "bFq" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/effect/turf_decal/tile/yellow, @@ -35187,8 +35196,11 @@ /obj/structure/disposalpipe/segment, /obj/structure/closet/crate/freezer/surplus_limbs, /obj/item/reagent_containers/glass/beaker/synthflesh, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, /turf/open/floor/plasteel/white, -/area/medical/medbay/central) +/area/medical/storage) "bFu" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -35222,8 +35234,9 @@ "bFx" = ( /obj/structure/disposalpipe/segment, /obj/machinery/limbgrower, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, /turf/open/floor/plasteel/white, -/area/medical/medbay/central) +/area/medical/storage) "bFy" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 1 @@ -35809,7 +35822,7 @@ dir = 4 }, /turf/closed/wall, -/area/medical/medbay/central) +/area/medical/storage) "bGR" = ( /obj/structure/table, /obj/item/storage/belt/medical{ @@ -35860,11 +35873,9 @@ /area/medical/medbay/central) "bGW" = ( /obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers, /turf/closed/wall, -/area/medical/medbay/central) +/area/medical/storage) "bGX" = ( /obj/machinery/light{ dir = 8 @@ -37012,7 +37023,7 @@ dir = 9 }, /turf/closed/wall, -/area/medical/medbay/central) +/area/medical/storage) "bJB" = ( /obj/machinery/atmospherics/pipe/manifold4w/scrubbers, /turf/open/floor/plasteel, @@ -52309,7 +52320,7 @@ dir = 4 }, /turf/open/floor/plating, -/area/science/robotics/mechbay) +/area/maintenance/department/medical/morgue) "cHF" = ( /obj/machinery/button/door{ id = "Skynet_launch"; @@ -54428,7 +54439,7 @@ "fvk" = ( /obj/structure/disposalpipe/segment, /turf/closed/wall, -/area/medical/medbay/central) +/area/medical/storage) "fvY" = ( /obj/machinery/computer/cryopod{ pixel_y = 26 @@ -55768,6 +55779,9 @@ req_access_txt = "45" }, /obj/machinery/door/firedoor, +/obj/structure/cable{ + icon_state = "4-8" + }, /turf/open/floor/plasteel, /area/medical/surgery) "iVJ" = ( @@ -60411,6 +60425,9 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/engineering/atmos) +"tBV" = ( +/turf/closed/wall, +/area/medical/storage) "tCa" = ( /obj/structure/table/wood, /obj/item/instrument/guitar{ @@ -61009,8 +61026,17 @@ dir = 4 }, /obj/structure/disposalpipe/segment, +/obj/machinery/power/apc{ + areastring = "/area/medical/storage"; + name = "Medbay Surgery Storage"; + pixel_x = 1; + pixel_y = -24 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, /turf/open/floor/plasteel/white, -/area/medical/medbay/central) +/area/medical/storage) "uFZ" = ( /obj/structure/closet/emcloset, /obj/effect/turf_decal/stripes/line{ @@ -61336,6 +61362,16 @@ /obj/structure/pool/Lboard, /turf/open/pool, /area/commons/fitness/pool) +"voZ" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/white, +/area/medical/storage) "vpY" = ( /obj/structure/closet/lasertag/blue, /obj/item/clothing/under/misc/pj/blue, @@ -95226,10 +95262,10 @@ aJq bHt bBz bzs -bof +tBV bFm bGI -bof +tBV cBD bKD bLO @@ -95483,7 +95519,7 @@ bwu kPj bBB eBX -bof +tBV bFp uFV fvk @@ -95740,7 +95776,7 @@ aJq bAj aJq aKG -bof +tBV bFo bDA bFt @@ -95997,9 +96033,9 @@ byX aXh bmE bCA -bof +tBV bCC -bDA +voZ bFx bGW bKI diff --git a/_maps/map_files/Deltastation/DeltaStation2.dmm b/_maps/map_files/Deltastation/DeltaStation2.dmm index 8c382e56e8..19c8e68546 100644 --- a/_maps/map_files/Deltastation/DeltaStation2.dmm +++ b/_maps/map_files/Deltastation/DeltaStation2.dmm @@ -13232,7 +13232,7 @@ dir = 4 }, /turf/open/floor/plasteel, -/area/hallway/secondary/service) +/area/maintenance/port/fore) "aYA" = ( /obj/structure/cable/white{ icon_state = "4-8" @@ -33522,7 +33522,7 @@ dir = 1 }, /turf/open/floor/plasteel, -/area/security/range) +/area/maintenance/starboard) "cqi" = ( /obj/structure/cable/white, /obj/effect/spawner/structure/window/reinforced, @@ -49101,7 +49101,7 @@ icon_state = "1-2" }, /turf/open/floor/plasteel, -/area/science/misc_lab) +/area/maintenance/port) "dhU" = ( /obj/structure/sign/nanotrasen, /turf/closed/wall/r_wall, @@ -71534,6 +71534,9 @@ }, /turf/open/floor/plasteel/dark, /area/command/heads_quarters/hos) +"emZ" = ( +/turf/closed/wall, +/area/hallway/primary/port) "enl" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/effect/turf_decal/stripes/corner, @@ -106478,7 +106481,7 @@ dir = 1 }, /turf/open/floor/plasteel, -/area/commons/dorms) +/area/maintenance/starboard) "qtk" = ( /obj/structure/table/wood, /obj/item/reagent_containers/food/drinks/soda_cans/dr_gibb, @@ -156429,7 +156432,7 @@ pzz kRu iio aMN -alf +emZ bqm bsp bug @@ -156686,7 +156689,7 @@ vgS xnz iio aMO -alf +emZ bqn bsq buh @@ -156943,7 +156946,7 @@ lNq skw iio aMN -alf +emZ bqo bsr fzc diff --git a/_maps/map_files/MetaStation/MetaStation.dmm b/_maps/map_files/MetaStation/MetaStation.dmm index 9b70a54282..f39dbc578d 100644 --- a/_maps/map_files/MetaStation/MetaStation.dmm +++ b/_maps/map_files/MetaStation/MetaStation.dmm @@ -25521,6 +25521,9 @@ /obj/effect/turf_decal/tile/purple{ dir = 4 }, +/obj/item/paicard{ + pixel_x = -8 + }, /turf/open/floor/plasteel/white, /area/science/research) "cav" = ( @@ -74083,7 +74086,7 @@ }, /obj/machinery/door/firedoor, /turf/open/floor/plating, -/area/science/circuit) +/area/maintenance/starboard/aft) "sFR" = ( /obj/structure/cable{ icon_state = "2-8" @@ -76385,7 +76388,7 @@ icon_state = "1-2" }, /turf/open/floor/plating, -/area/service/library) +/area/maintenance/port) "ubJ" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/yellow{ @@ -80256,7 +80259,7 @@ }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plating, -/area/commons/vacant_room/office) +/area/maintenance/port) "wxP" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 10 @@ -97479,8 +97482,8 @@ dne aip dne dne -dne -dne +aRA +aRA dne baf bbK From 2cb353890eac45e9790cf41fb2de40ed94bc2719 Mon Sep 17 00:00:00 2001 From: Changelogs Date: Fri, 30 Apr 2021 00:25:57 +0000 Subject: [PATCH 081/259] Automatic changelog compile [ci skip] --- html/changelog.html | 49 +++++++++++++++++++--- html/changelogs/.all_changelog.yml | 39 +++++++++++++++++ html/changelogs/AutoChangeLog-pr-14635.yml | 4 -- html/changelogs/AutoChangeLog-pr-14636.yml | 6 --- html/changelogs/AutoChangeLog-pr-14639.yml | 7 ---- html/changelogs/AutoChangeLog-pr-14643.yml | 4 -- html/changelogs/AutoChangeLog-pr-14647.yml | 8 ---- html/changelogs/AutoChangeLog-pr-14648.yml | 5 --- html/changelogs/AutoChangeLog-pr-14649.yml | 5 --- html/changelogs/AutoChangeLog-pr-14651.yml | 4 -- html/changelogs/AutoChangeLog-pr-14659.yml | 4 -- 11 files changed, 82 insertions(+), 53 deletions(-) delete mode 100644 html/changelogs/AutoChangeLog-pr-14635.yml delete mode 100644 html/changelogs/AutoChangeLog-pr-14636.yml delete mode 100644 html/changelogs/AutoChangeLog-pr-14639.yml delete mode 100644 html/changelogs/AutoChangeLog-pr-14643.yml delete mode 100644 html/changelogs/AutoChangeLog-pr-14647.yml delete mode 100644 html/changelogs/AutoChangeLog-pr-14648.yml delete mode 100644 html/changelogs/AutoChangeLog-pr-14649.yml delete mode 100644 html/changelogs/AutoChangeLog-pr-14651.yml delete mode 100644 html/changelogs/AutoChangeLog-pr-14659.yml diff --git a/html/changelog.html b/html/changelog.html index 2c4f8c0144..9b0cdd68bb 100644 --- a/html/changelog.html +++ b/html/changelog.html @@ -50,6 +50,49 @@ -->
    +

    30 April 2021

    +

    DrPainis updated:

    +
      +
    • Bubblegum's hallucinations are capitalized.
    • +
    +

    Melbert, SandPoot updated:

    +
      +
    • TGUI Limbgrower
    • +
    • Refactored the limbgrower to modernize the code and allow for more types of designs.
    • +
    • The limbgrower now supports plumbing ducts.
    • +
    • Fixes genitals not actually getting data from disks.
    • +
    • Adds two special helpers.
    • +
    +

    SandPoot updated:

    +
      +
    • The decal painter now has visible previews for your tile painting funs.
    • +
    • Fixes decal painter painting in the opposite direction.
    • +
    +

    TheObserver-sys updated:

    +
      +
    • Restores the access lock on crates that should have them, given the goods inside.
    • +
    • Makes the 10MM Surplus Rifle a less awful thing to use.
    • +
    • replaces unarmored things with their armored versions.
    • +
    • Illegal Tech Ammo actually is fucking reasonable, now.
    • +
    • Expensive Illegal Tech Ammo Boxes are now constructible, with actually justifiable prices.
    • +
    +

    WanderingFox95 updated:

    +
      +
    • There's finally a reason for the reagent dart gun to exist and be used!
    • +
    +

    akada updated:

    +
      +
    • Changes the space adaptation sprite to something less intrusive and more subtle.
    • +
    +

    necromanceranne updated:

    +
      +
    • Basic cybernetic organs: they're worse than organic! Basic stomachs, hearts, lungs and livers! For when you hate someone enough to not bother harvesting organs from a monkeyhuman!
    • +
    • Cybernetic organs have been adjusted into three tiers: 1 (basic), 2 (standard, better than organic) and 3 (absolutely better than organic but expensive to print)
    • +
    • Cybernetic organs that are emp'd instead suffer different effects based on the severity of the emp. The bigger the emp, the worse the effect is.
    • +
    • Rather than outright bricking, severely emp'd cyberorgans degrade over time very quickly, requiring replacement in the near future.
    • +
    • Fake blindfolds in the loadout. They don't obscure vision, for better or worse.
    • +
    +

    29 April 2021

    Putnam3145 updated:

      @@ -795,12 +838,6 @@
      • chaplain arrythmic knives can no longer be abused for infinite speed.
      - -

      26 February 2021

      -

      DeltaFire15 updated:

      -
        -
      • All machine-frame based tool-use actions now have state-checking callbacks.
      • -
    GoonStation 13 Development Team diff --git a/html/changelogs/.all_changelog.yml b/html/changelogs/.all_changelog.yml index 3f58b0ce2b..0698eeaddc 100644 --- a/html/changelogs/.all_changelog.yml +++ b/html/changelogs/.all_changelog.yml @@ -29177,3 +29177,42 @@ DO NOT EDIT THIS FILE BY HAND! AUTOMATICALLY GENERATED BY ss13_genchangelog.py. - bugfix: Fixed a couple runtimes in activity (threat) tracking keronshb: - balance: Removes the Reinforcement Chromosome from Genetics. +2021-04-30: + DrPainis: + - spellcheck: Bubblegum's hallucinations are capitalized. + Melbert, SandPoot: + - refactor: TGUI Limbgrower + - refactor: Refactored the limbgrower to modernize the code and allow for more types + of designs. + - rscadd: The limbgrower now supports plumbing ducts. + - bugfix: Fixes genitals not actually getting data from disks. + - code_imp: Adds two special helpers. + SandPoot: + - rscadd: The decal painter now has visible previews for your tile painting funs. + - bugfix: Fixes decal painter painting in the opposite direction. + TheObserver-sys: + - bugfix: Restores the access lock on crates that should have them, given the goods + inside. + - bugfix: Makes the 10MM Surplus Rifle a less awful thing to use. + - bugfix: replaces unarmored things with their armored versions. + - balance: Illegal Tech Ammo actually is fucking reasonable, now. + - balance: Expensive Illegal Tech Ammo Boxes are now constructible, with actually + justifiable prices. + WanderingFox95: + - balance: There's finally a reason for the reagent dart gun to exist and be used! + akada: + - imageadd: Changes the space adaptation sprite to something less intrusive and + more subtle. + necromanceranne: + - rscadd: 'Basic cybernetic organs: they''re worse than organic! Basic stomachs, + hearts, lungs and livers! For when you hate someone enough to not bother harvesting + organs from a monkeyhuman!' + - rscadd: 'Cybernetic organs have been adjusted into three tiers: 1 (basic), 2 (standard, + better than organic) and 3 (absolutely better than organic but expensive to + print)' + - rscadd: Cybernetic organs that are emp'd instead suffer different effects based + on the severity of the emp. The bigger the emp, the worse the effect is. + - rscadd: Rather than outright bricking, severely emp'd cyberorgans degrade over + time very quickly, requiring replacement in the near future. + - rscadd: Fake blindfolds in the loadout. They don't obscure vision, for better + or worse. diff --git a/html/changelogs/AutoChangeLog-pr-14635.yml b/html/changelogs/AutoChangeLog-pr-14635.yml deleted file mode 100644 index cbb91a249c..0000000000 --- a/html/changelogs/AutoChangeLog-pr-14635.yml +++ /dev/null @@ -1,4 +0,0 @@ -author: "necromanceranne" -delete-after: True -changes: - - rscadd: "Fake blindfolds in the loadout. They don't obscure vision, for better or worse." diff --git a/html/changelogs/AutoChangeLog-pr-14636.yml b/html/changelogs/AutoChangeLog-pr-14636.yml deleted file mode 100644 index fe17a4aa17..0000000000 --- a/html/changelogs/AutoChangeLog-pr-14636.yml +++ /dev/null @@ -1,6 +0,0 @@ -author: "TheObserver-sys" -delete-after: True -changes: - - bugfix: "Restores the access lock on crates that should have them, given the goods inside." - - bugfix: "Makes the 10MM Surplus Rifle a less awful thing to use." - - bugfix: "replaces unarmored things with their armored versions." diff --git a/html/changelogs/AutoChangeLog-pr-14639.yml b/html/changelogs/AutoChangeLog-pr-14639.yml deleted file mode 100644 index ada372a811..0000000000 --- a/html/changelogs/AutoChangeLog-pr-14639.yml +++ /dev/null @@ -1,7 +0,0 @@ -author: "necromanceranne" -delete-after: True -changes: - - rscadd: "Basic cybernetic organs: they're worse than organic! Basic stomachs, hearts, lungs and livers! For when you hate someone enough to not bother harvesting organs from a monkeyhuman!" - - rscadd: "Cybernetic organs have been adjusted into three tiers: 1 (basic), 2 (standard, better than organic) and 3 (absolutely better than organic but expensive to print)" - - rscadd: "Cybernetic organs that are emp'd instead suffer different effects based on the severity of the emp. The bigger the emp, the worse the effect is." - - rscadd: "Rather than outright bricking, severely emp'd cyberorgans degrade over time very quickly, requiring replacement in the near future." diff --git a/html/changelogs/AutoChangeLog-pr-14643.yml b/html/changelogs/AutoChangeLog-pr-14643.yml deleted file mode 100644 index d344957d55..0000000000 --- a/html/changelogs/AutoChangeLog-pr-14643.yml +++ /dev/null @@ -1,4 +0,0 @@ -author: "akada" -delete-after: True -changes: - - imageadd: "Changes the space adaptation sprite to something less intrusive and more subtle." diff --git a/html/changelogs/AutoChangeLog-pr-14647.yml b/html/changelogs/AutoChangeLog-pr-14647.yml deleted file mode 100644 index a59e47811d..0000000000 --- a/html/changelogs/AutoChangeLog-pr-14647.yml +++ /dev/null @@ -1,8 +0,0 @@ -author: "Melbert, SandPoot" -delete-after: True -changes: - - refactor: "TGUI Limbgrower" - - refactor: "Refactored the limbgrower to modernize the code and allow for more types of designs." - - rscadd: "The limbgrower now supports plumbing ducts." - - bugfix: "Fixes genitals not actually getting data from disks." - - code_imp: "Adds two special helpers." diff --git a/html/changelogs/AutoChangeLog-pr-14648.yml b/html/changelogs/AutoChangeLog-pr-14648.yml deleted file mode 100644 index e2320ec5fe..0000000000 --- a/html/changelogs/AutoChangeLog-pr-14648.yml +++ /dev/null @@ -1,5 +0,0 @@ -author: "SandPoot" -delete-after: True -changes: - - rscadd: "The decal painter now has visible previews for your tile painting funs." - - bugfix: "Fixes decal painter painting in the opposite direction." diff --git a/html/changelogs/AutoChangeLog-pr-14649.yml b/html/changelogs/AutoChangeLog-pr-14649.yml deleted file mode 100644 index c54af36a4c..0000000000 --- a/html/changelogs/AutoChangeLog-pr-14649.yml +++ /dev/null @@ -1,5 +0,0 @@ -author: "TheObserver-sys" -delete-after: True -changes: - - balance: "Illegal Tech Ammo actually is fucking reasonable, now." - - balance: "Expensive Illegal Tech Ammo Boxes are now constructible, with actually justifiable prices." diff --git a/html/changelogs/AutoChangeLog-pr-14651.yml b/html/changelogs/AutoChangeLog-pr-14651.yml deleted file mode 100644 index 27ed8f303e..0000000000 --- a/html/changelogs/AutoChangeLog-pr-14651.yml +++ /dev/null @@ -1,4 +0,0 @@ -author: "WanderingFox95" -delete-after: True -changes: - - balance: "There's finally a reason for the reagent dart gun to exist and be used!" diff --git a/html/changelogs/AutoChangeLog-pr-14659.yml b/html/changelogs/AutoChangeLog-pr-14659.yml deleted file mode 100644 index c836c3de3e..0000000000 --- a/html/changelogs/AutoChangeLog-pr-14659.yml +++ /dev/null @@ -1,4 +0,0 @@ -author: "DrPainis" -delete-after: True -changes: - - spellcheck: "Bubblegum's hallucinations are capitalized." From 567d43c9dda6d012d674710d7b5ca5ecff6cfabb Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Thu, 29 Apr 2021 22:24:03 -0500 Subject: [PATCH 082/259] Automatic changelog generation for PR #14668 [ci skip] --- html/changelogs/AutoChangeLog-pr-14668.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-14668.yml diff --git a/html/changelogs/AutoChangeLog-pr-14668.yml b/html/changelogs/AutoChangeLog-pr-14668.yml new file mode 100644 index 0000000000..1ff2454a4d --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-14668.yml @@ -0,0 +1,4 @@ +author: "qweq12yt" +delete-after: True +changes: + - bugfix: "Restores the sprite for the Riot Suit." From ac504d679b580b9eb131eaa984aacfae89399b32 Mon Sep 17 00:00:00 2001 From: Timothy Teakettle <59849408+timothyteakettle@users.noreply.github.com> Date: Fri, 30 Apr 2021 14:07:44 +0100 Subject: [PATCH 083/259] digi humans --- code/modules/client/preferences_savefile.dm | 6 +++++- .../carbon/human/species_types/humans.dm | 2 +- icons/mob/human_parts_greyscale.dmi | Bin 101625 -> 99729 bytes 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/code/modules/client/preferences_savefile.dm b/code/modules/client/preferences_savefile.dm index 864bf5335a..9cd16592ce 100644 --- a/code/modules/client/preferences_savefile.dm +++ b/code/modules/client/preferences_savefile.dm @@ -5,7 +5,7 @@ // You do not need to raise this if you are adding new values that have sane defaults. // Only raise this value when changing the meaning/format/name/layout of an existing value // where you would want the updater procs below to run -#define SAVEFILE_VERSION_MAX 50 +#define SAVEFILE_VERSION_MAX 51 /* SAVEFILE UPDATING/VERSIONING - 'Simplified', or rather, more coder-friendly ~Carn @@ -295,6 +295,10 @@ SAVEFILE UPDATING/VERSIONING - 'Simplified', or rather, more coder-friendly ~Car L -= ROLE_SYNDICATE S["be_special"] << L + if(current_version < 51) //humans can have digi legs now, make sure they dont default to them or human players will murder me in my sleep + if(S["species"] == SPECIES_HUMAN) + features["legs"] = "Plantigrade" + /datum/preferences/proc/load_path(ckey,filename="preferences.sav") if(!ckey) return diff --git a/code/modules/mob/living/carbon/human/species_types/humans.dm b/code/modules/mob/living/carbon/human/species_types/humans.dm index e8e0ff1a78..d0f6c64550 100644 --- a/code/modules/mob/living/carbon/human/species_types/humans.dm +++ b/code/modules/mob/living/carbon/human/species_types/humans.dm @@ -4,7 +4,7 @@ default_color = "FFFFFF" species_traits = list(EYECOLOR,HAIR,FACEHAIR,LIPS,MUTCOLORS_PARTSONLY,WINGCOLOR,HAS_FLESH,HAS_BONE) - mutant_bodyparts = list("mcolor" = "FFFFFF", "mcolor2" = "FFFFFF","mcolor3" = "FFFFFF","tail_human" = "None", "ears" = "None", "taur" = "None", "deco_wings" = "None") + mutant_bodyparts = list("mcolor" = "FFFFFF", "mcolor2" = "FFFFFF","mcolor3" = "FFFFFF","tail_human" = "None", "ears" = "None", "taur" = "None", "deco_wings" = "None", "legs" = "Plantigrade") use_skintones = USE_SKINTONES_GRAYSCALE_CUSTOM skinned_type = /obj/item/stack/sheet/animalhide/human disliked_food = GROSS | RAW diff --git a/icons/mob/human_parts_greyscale.dmi b/icons/mob/human_parts_greyscale.dmi index 3b115a1cb031392dca223c2ed9f281c2cda1bd45..113c015ed10de20a5442c81640c4e1eb11217742 100644 GIT binary patch literal 99729 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%0Aq^fYkV-%K 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 From 7f611ebdc2c36d5090cc22b659b158b9ec655572 Mon Sep 17 00:00:00 2001 From: Timothy Teakettle <59849408+timothyteakettle@users.noreply.github.com> Date: Fri, 30 Apr 2021 14:12:59 +0100 Subject: [PATCH 084/259] apparently avian sprites are needed --- icons/mob/human_parts_greyscale.dmi | Bin 99729 -> 103878 bytes 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/icons/mob/human_parts_greyscale.dmi b/icons/mob/human_parts_greyscale.dmi index 113c015ed10de20a5442c81640c4e1eb11217742..c404fbcacbf9d82e342e80bfc6dde0fba2a10fb4 100644 GIT binary patch literal 103878 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 Date: Sat, 1 May 2021 00:27:12 +0000 Subject: [PATCH 085/259] Automatic changelog compile [ci skip] --- html/changelog.html | 38 ++++------------------ html/changelogs/.all_changelog.yml | 3 ++ html/changelogs/AutoChangeLog-pr-14668.yml | 4 --- 3 files changed, 9 insertions(+), 36 deletions(-) delete mode 100644 html/changelogs/AutoChangeLog-pr-14668.yml diff --git a/html/changelog.html b/html/changelog.html index 9b0cdd68bb..08c4ae4a47 100644 --- a/html/changelog.html +++ b/html/changelog.html @@ -50,6 +50,12 @@ -->

    GoonStation 13 Development Team diff --git a/html/changelogs/.all_changelog.yml b/html/changelogs/.all_changelog.yml index 0698eeaddc..1212e88f23 100644 --- a/html/changelogs/.all_changelog.yml +++ b/html/changelogs/.all_changelog.yml @@ -29216,3 +29216,6 @@ DO NOT EDIT THIS FILE BY HAND! AUTOMATICALLY GENERATED BY ss13_genchangelog.py. time very quickly, requiring replacement in the near future. - rscadd: Fake blindfolds in the loadout. They don't obscure vision, for better or worse. +2021-05-01: + qweq12yt: + - bugfix: Restores the sprite for the Riot Suit. diff --git a/html/changelogs/AutoChangeLog-pr-14668.yml b/html/changelogs/AutoChangeLog-pr-14668.yml deleted file mode 100644 index 1ff2454a4d..0000000000 --- a/html/changelogs/AutoChangeLog-pr-14668.yml +++ /dev/null @@ -1,4 +0,0 @@ -author: "qweq12yt" -delete-after: True -changes: - - bugfix: "Restores the sprite for the Riot Suit." From f1109c4f67ce232a4a11b0d2bd2ae4b489a59ec2 Mon Sep 17 00:00:00 2001 From: The0bserver Date: Sat, 1 May 2021 02:15:07 -0400 Subject: [PATCH 086/259] what a crate day (initial commit) --- .../crates_lockers/crates/secure.dm | 5 +++++ code/modules/cargo/packs/armory.dm | 1 + code/modules/cargo/packs/security.dm | 2 ++ icons/obj/crates.dmi | Bin 25632 -> 26351 bytes 4 files changed, 8 insertions(+) diff --git a/code/game/objects/structures/crates_lockers/crates/secure.dm b/code/game/objects/structures/crates_lockers/crates/secure.dm index eb652c5180..f63f3afbd9 100644 --- a/code/game/objects/structures/crates_lockers/crates/secure.dm +++ b/code/game/objects/structures/crates_lockers/crates/secure.dm @@ -56,6 +56,11 @@ name = "gear crate" icon_state = "secgearcrate" +/obj/structure/closet/crate/secure/soviet + desc = "A crate, purportedly from Space Russia." + name = "soviet crate" + icon_state = "sovietcrate" + /obj/structure/closet/crate/secure/hydroponics desc = "A crate with a lock on it, painted in the scheme of the station's botanists." name = "secure hydroponics crate" diff --git a/code/modules/cargo/packs/armory.dm b/code/modules/cargo/packs/armory.dm index bf79a3ed15..ed3f274f47 100644 --- a/code/modules/cargo/packs/armory.dm +++ b/code/modules/cargo/packs/armory.dm @@ -176,6 +176,7 @@ /obj/effect/spawner/bundle/crate/surplusrifle, /obj/item/storage/toolbox/ammo/surplus) crate_name = "surplus military crate" + crate_type = /obj/structure/closet/crate/secure/soviet /datum/supply_pack/security/armory/russian/fill(obj/structure/closet/crate/C) for(var/i in 1 to 5) diff --git a/code/modules/cargo/packs/security.dm b/code/modules/cargo/packs/security.dm index 8fc1275e4a..16554b61ab 100644 --- a/code/modules/cargo/packs/security.dm +++ b/code/modules/cargo/packs/security.dm @@ -98,6 +98,7 @@ /obj/item/clothing/mask/gas, /obj/item/clothing/mask/gas) crate_name = "surplus russian clothing" + crate_type = /obj/structure/closet/crate/secure/soviet /datum/supply_pack/security/russian_partisan name = "Russian Partisan Gear" @@ -113,6 +114,7 @@ /obj/item/clothing/under/syndicate/rus_army, /obj/item/clothing/mask/gas) crate_name = "surplus russian gear" + crate_type = /obj/structure/closet/crate/secure/soviet /datum/supply_pack/security/russian_partisan/fill(obj/structure/closet/crate/C) ..() diff --git a/icons/obj/crates.dmi b/icons/obj/crates.dmi index 9b42188f5e93bc92277d1a77d1adeaaf13a10579..1fda3933bdb382b5e3e61e7437ee90adb780b4d1 100644 GIT binary patch delta 5195 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 Date: Sat, 15 May 2021 21:24:20 +0100 Subject: [PATCH 087/259] Update preferences.dm --- code/modules/client/preferences.dm | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/code/modules/client/preferences.dm b/code/modules/client/preferences.dm index 0e9618067b..b351ba9478 100644 --- a/code/modules/client/preferences.dm +++ b/code/modules/client/preferences.dm @@ -531,8 +531,11 @@ GLOBAL_LIST_EMPTY(preferences_datums) var/marking_index = markings.Find(marking_list) // consider changing loop to go through indexes over lists instead of using Find here var/actual_name = GLOB.bodypart_names[num2text(marking_list[1])] // get the actual name from the bitflag representing the part the marking is applied to var/color_marking_dat = "" - var/datum/sprite_accessory/S = (actual_name == "mam_body_markings") ? GLOB.mam_body_markings_list[marking_list[2]] : GLOB.body_markings_list[marking_list[2]] + var/datum/sprite_accessory/S = (marking_type == "mam_body_markings") ? GLOB.mam_body_markings_list[marking_list[2]] : GLOB.body_markings_list[marking_list[2]] if(S && S.matrixed_sections && S.matrixed_sections != MATRIX_NONE) + // if it has nothing initialize it to white + if(length(marking_list) == 2) + marking_list += list(list("#FFFFFF","#FFFFFF","#FFFFFF")) // just assume its 3 colours if it isnt it doesnt matter we just wont use the other values // we know it has one matrixed section at minimum color_marking_dat += "   " // if it has a second section, add it From 8aed1b4236ce134ca9dd7d1da73fd3d93cf58624 Mon Sep 17 00:00:00 2001 From: Timothy Teakettle <59849408+timothyteakettle@users.noreply.github.com> Date: Sat, 1 May 2021 20:37:22 +0100 Subject: [PATCH 088/259] more color code --- code/modules/client/preferences.dm | 33 ++++++++++++++++++++++++++---- 1 file changed, 29 insertions(+), 4 deletions(-) diff --git a/code/modules/client/preferences.dm b/code/modules/client/preferences.dm index b351ba9478..8df69b2f03 100644 --- a/code/modules/client/preferences.dm +++ b/code/modules/client/preferences.dm @@ -537,15 +537,15 @@ GLOBAL_LIST_EMPTY(preferences_datums) if(length(marking_list) == 2) marking_list += list(list("#FFFFFF","#FFFFFF","#FFFFFF")) // just assume its 3 colours if it isnt it doesnt matter we just wont use the other values // we know it has one matrixed section at minimum - color_marking_dat += "   " + color_marking_dat += "   " // if it has a second section, add it if(S.matrixed_sections == MATRIX_RED_BLUE || S.matrixed_sections == MATRIX_GREEN_BLUE || S.matrixed_sections == MATRIX_RED_GREEN) - color_marking_dat += "   " + color_marking_dat += "   " // if it has a third section, add it if(S.matrixed_sections == MATRIX_ALL) - color_marking_dat += "   " + color_marking_dat += "   " color_marking_dat += " Change
    " - dat += "[marking_list[2]] - [actual_name] ˄ ˅ X [color_marking_dat]" + dat += "[marking_list[2]] - [actual_name] ˄ ˅ X [color_marking_dat]" dat += "" for(var/mutant_part in GLOB.all_mutant_parts) @@ -2461,6 +2461,31 @@ GLOBAL_LIST_EMPTY(preferences_datums) var/marking_type = href_list["marking_type"] if(index && marking_type && features[marking_type]) features[marking_type].Cut(index, index + 1) + + if("marking_color") + var/index = text2num(href_list["marking_index"]) + var/marking_type = href_list["marking_type"] + if(index && marking_type && features[marking_type]) + // work out the input options to show the user + var/list/options = list("Primary") + var/matrixed_sections = href_list["matrixed_sections"] + var/color_number = 1 // 1-3 which color are we editing + if(matrixed_sections == MATRIX_RED_GREEN || matrixed_sections == MATRIX_RED_BLUE || matrixed_sections == MATRIX_GREEN_BLUE) + options += "Secondary" + else if(matrixed_sections == MATRIX_ALL) + options += list("Secondary", "Tertiary") + var/color_option = input(user, "Select the colour you wish to edit") as null|anything in options + if(color_option) + if(color_option == "Secondary") color_number = 2 + if(color_option == "Tertiary") color_number = 3 + var/color_list = features[marking_type][index][3] + var/new_marking_color = input(user, "Choose your character's marking color:", "Character Preference","#"+color_list[color_number]) as color|null + if(new_marking_color) + var/temp_hsv = RGBtoHSV(new_marking_color) + if((MUTCOLORS_PARTSONLY in pref_species.species_traits) || ReadHSV(temp_hsv)[3] >= ReadHSV(MINIMUM_MUTANT_COLOR)[3]) // mutantcolors must be bright, but only if they affect the skin + color_list[color_number] = sanitize_hexcolor(new_marking_color, 6) + else + to_chat(user, "Invalid color. Your color is not bright enough.") else switch(href_list["preference"]) //CITADEL PREFERENCES EDIT - I can't figure out how to modularize these, so they have to go here. :c -Pooj From 7efadade151c58c73d2818355f98178c755dbc2f Mon Sep 17 00:00:00 2001 From: Timothy Teakettle <59849408+timothyteakettle@users.noreply.github.com> Date: Sat, 1 May 2021 20:55:13 +0100 Subject: [PATCH 089/259] href fix --- code/modules/client/preferences.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/client/preferences.dm b/code/modules/client/preferences.dm index 8df69b2f03..f616d80005 100644 --- a/code/modules/client/preferences.dm +++ b/code/modules/client/preferences.dm @@ -544,7 +544,7 @@ GLOBAL_LIST_EMPTY(preferences_datums) // if it has a third section, add it if(S.matrixed_sections == MATRIX_ALL) color_marking_dat += "   " - color_marking_dat += " Change
    " + color_marking_dat += " Change
    " dat += "[marking_list[2]] - [actual_name] ˄ ˅ X [color_marking_dat]" dat += "" From a745d1288c3042fd8995dfbf27a160c7135f2f18 Mon Sep 17 00:00:00 2001 From: Changelogs Date: Sun, 2 May 2021 00:30:35 +0000 Subject: [PATCH 090/259] Automatic changelog compile [ci skip] --- html/changelog.html | 19 ------------------- 1 file changed, 19 deletions(-) diff --git a/html/changelog.html b/html/changelog.html index 08c4ae4a47..389a308886 100644 --- a/html/changelog.html +++ b/html/changelog.html @@ -793,25 +793,6 @@
    • cursed rice hat right in front of the jungle gateway's entrance is now removed from this dimensional plane
    - -

    28 February 2021

    -

    Putnam3145 updated:

    -
      -
    • Polychromic windbreaker's alt-click message is now coherent
    • -
    • Toggleable suits now have an on_toggle proc to be overridden.
    • -
    -

    R3dtail updated:

    -
      -
    • doubled max belly name length and quadrupled belly description length
    • -
    -

    SandPoot updated:

    -
      -
    • Body rejuvenation surgery will loop until the patient is completely healed.
    • -
    -

    dzahlus updated:

    -
      -
    • fixes toxinlovers dying from heretic stuff that should heal them instead
    • -
    GoonStation 13 Development Team From 1f06ac1b42aa514d23fc5621d6cda2593133a5bf Mon Sep 17 00:00:00 2001 From: silicons <2003111+silicons@users.noreply.github.com> Date: Sat, 1 May 2021 18:18:21 -0700 Subject: [PATCH 091/259] ohno --- .../environmental/LINDA_system.dm | 38 +++++++++---------- .../space_management/multiz_helpers.dm | 8 ++-- 2 files changed, 22 insertions(+), 24 deletions(-) diff --git a/code/modules/atmospherics/environmental/LINDA_system.dm b/code/modules/atmospherics/environmental/LINDA_system.dm index 4f057ca9be..f714a94646 100644 --- a/code/modules/atmospherics/environmental/LINDA_system.dm +++ b/code/modules/atmospherics/environmental/LINDA_system.dm @@ -44,7 +44,7 @@ return FALSE /turf/proc/ImmediateCalculateAdjacentTurfs() - var/canpass = CANATMOSPASS(src, src) + var/canpass = CANATMOSPASS(src, src) var/canvpass = CANVERTICALATMOSPASS(src, src) for(var/direction in GLOB.cardinals_multiz) var/turf/T = get_step_multiz(src, direction) @@ -79,31 +79,27 @@ if (atmos_adjacent_turfs) adjacent_turfs = atmos_adjacent_turfs.Copy() else - adjacent_turfs = list() + return list() // don't bother checking diagonals, diagonals are going to be cardinal checks anyways. if (!alldir) return adjacent_turfs - var/turf/curloc = src - - for (var/direction in GLOB.diagonals_multiz) - var/matchingDirections = 0 - var/turf/S = get_step_multiz(curloc, direction) - if(!S) + var/turf/other + var/turf/mid + for (var/d in GLOB.diagonals) + other = get_step(src, d) + if(!other) + continue + // NS step + mid = get_step(src, NSCOMPONENT(d)) + if((mid in adjacent_turfs) && (get_step(mid, EWCOMPONENT(d)) in adjacent_turfs)) + adjacent_turfs += other + continue + // EW step + mid = get_step(src, EWCOMPONENT(d)) + if((mid in adjacent_turfs) && (get_step(mid, NSCOMPONENT(d)) in adjacent_turfs)) + adjacent_turfs += other continue - - for (var/checkDirection in GLOB.cardinals_multiz) - var/turf/checkTurf = get_step(S, checkDirection) - if(!S.atmos_adjacent_turfs || !S.atmos_adjacent_turfs[checkTurf]) - continue - - if (adjacent_turfs[checkTurf]) - matchingDirections++ - - if (matchingDirections >= 2) - adjacent_turfs += S - break - return adjacent_turfs /atom/proc/air_update_turf(command = 0) diff --git a/code/modules/mapping/space_management/multiz_helpers.dm b/code/modules/mapping/space_management/multiz_helpers.dm index ae05aee150..b949ac67e6 100644 --- a/code/modules/mapping/space_management/multiz_helpers.dm +++ b/code/modules/mapping/space_management/multiz_helpers.dm @@ -13,13 +13,15 @@ var/offset while((offset = SSmapping.level_trait(other_z, ZTRAIT_DOWN))) other_z += offset + if(other_z in .) + break // no infinite loops . += other_z other_z = center_z while((offset = SSmapping.level_trait(other_z, ZTRAIT_UP))) other_z += offset + if(other_z in .) + break // no infinite loops . += other_z - return . - /proc/get_dir_multiz(turf/us, turf/them) us = get_turf(us) @@ -46,4 +48,4 @@ /turf/proc/below() return get_step_multiz(src, DOWN) - + From 27fa3a98559337bf5633d0d0706de2e8d1c955c4 Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Sat, 1 May 2021 20:18:52 -0500 Subject: [PATCH 092/259] Automatic changelog generation for PR #14670 [ci skip] --- html/changelogs/AutoChangeLog-pr-14670.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-14670.yml diff --git a/html/changelogs/AutoChangeLog-pr-14670.yml b/html/changelogs/AutoChangeLog-pr-14670.yml new file mode 100644 index 0000000000..4264b1e083 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-14670.yml @@ -0,0 +1,10 @@ +author: "TripleShades" +delete-after: True +changes: + - rscadd: "Added two air alarms to Pubby Security, one in the evidence locker room and one in the main equipment back room" + - rscadd: "pAI Card back to outside Research in Meta Station" + - bugfix: "Pubby Disposals now shunts to space" + - bugfix: "Maintinence Areas being not applied to certain airlocks as well as stealing minor walls" + - bugfix: "Box Surgery Storage camera is now renamed to be on the network" + - bugfix: "Box Paramedic Station camera is now renamed to be on the network, and no longer steals the Morgue's cam +tweak: Box Surgery Storage is now it's own proper room" From aefa9eb2922e7f52e7b3246f4cc25eae34a97948 Mon Sep 17 00:00:00 2001 From: Bapldap <45321347+Bapldap@users.noreply.github.com> Date: Sat, 1 May 2021 22:31:24 -0500 Subject: [PATCH 093/259] lesspopcrates less population required for surplus crates, everyone loves them. I don't see how this could affect gameplay in any negative way :) --- code/modules/uplink/uplink_items/uplink_bundles.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/uplink/uplink_items/uplink_bundles.dm b/code/modules/uplink/uplink_items/uplink_bundles.dm index 465f980804..9b17162532 100644 --- a/code/modules/uplink/uplink_items/uplink_bundles.dm +++ b/code/modules/uplink/uplink_items/uplink_bundles.dm @@ -135,7 +135,7 @@ but you never know. Contents are sorted to always be worth 50 TC." item = /obj/structure/closet/crate cost = 20 - player_minimum = 25 + player_minimum = 20 exclude_modes = list(/datum/game_mode/nuclear, /datum/game_mode/nuclear/clown_ops, /datum/game_mode/traitor/internal_affairs) cant_discount = TRUE var/starting_crate_value = 50 @@ -145,7 +145,7 @@ desc = "A dusty SUPER-SIZED from the back of the Syndicate warehouse. Rumored to contain a valuable assortment of items, \ but you never know. Contents are sorted to always be worth 125 TC." cost = 40 - player_minimum = 40 + player_minimum = 30 starting_crate_value = 125 /datum/uplink_item/bundles_TC/surplus/purchase(mob/user, datum/component/uplink/U) From 2daed9250f4aa9fb6200b623eb876c08416a0ee6 Mon Sep 17 00:00:00 2001 From: Timothy Teakettle <59849408+timothyteakettle@users.noreply.github.com> Date: Sun, 2 May 2021 18:30:35 +0100 Subject: [PATCH 094/259] some bugfixes --- code/modules/client/preferences.dm | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/code/modules/client/preferences.dm b/code/modules/client/preferences.dm index f616d80005..6e92a910c9 100644 --- a/code/modules/client/preferences.dm +++ b/code/modules/client/preferences.dm @@ -531,6 +531,7 @@ GLOBAL_LIST_EMPTY(preferences_datums) var/marking_index = markings.Find(marking_list) // consider changing loop to go through indexes over lists instead of using Find here var/actual_name = GLOB.bodypart_names[num2text(marking_list[1])] // get the actual name from the bitflag representing the part the marking is applied to var/color_marking_dat = "" + var/number_colors = 1 var/datum/sprite_accessory/S = (marking_type == "mam_body_markings") ? GLOB.mam_body_markings_list[marking_list[2]] : GLOB.body_markings_list[marking_list[2]] if(S && S.matrixed_sections && S.matrixed_sections != MATRIX_NONE) // if it has nothing initialize it to white @@ -541,11 +542,13 @@ GLOBAL_LIST_EMPTY(preferences_datums) // if it has a second section, add it if(S.matrixed_sections == MATRIX_RED_BLUE || S.matrixed_sections == MATRIX_GREEN_BLUE || S.matrixed_sections == MATRIX_RED_GREEN) color_marking_dat += "   " + number_colors = 2 // if it has a third section, add it if(S.matrixed_sections == MATRIX_ALL) color_marking_dat += "   " - color_marking_dat += " Change
    " - dat += "[marking_list[2]] - [actual_name] ˄ ˅ X [color_marking_dat]" + number_colors = 3 + color_marking_dat += " Change
    " + dat += "[marking_list[2]] - [actual_name] ˄ ˅ X [color_marking_dat]" dat += "" for(var/mutant_part in GLOB.all_mutant_parts) @@ -2468,12 +2471,12 @@ GLOBAL_LIST_EMPTY(preferences_datums) if(index && marking_type && features[marking_type]) // work out the input options to show the user var/list/options = list("Primary") - var/matrixed_sections = href_list["matrixed_sections"] + var/number_colors = href_list["number_colors"] var/color_number = 1 // 1-3 which color are we editing - if(matrixed_sections == MATRIX_RED_GREEN || matrixed_sections == MATRIX_RED_BLUE || matrixed_sections == MATRIX_GREEN_BLUE) + if(number_colors >= 2) options += "Secondary" - else if(matrixed_sections == MATRIX_ALL) - options += list("Secondary", "Tertiary") + if(number_colors == 3) + options += "Tertiary" var/color_option = input(user, "Select the colour you wish to edit") as null|anything in options if(color_option) if(color_option == "Secondary") color_number = 2 @@ -2483,7 +2486,7 @@ GLOBAL_LIST_EMPTY(preferences_datums) if(new_marking_color) var/temp_hsv = RGBtoHSV(new_marking_color) if((MUTCOLORS_PARTSONLY in pref_species.species_traits) || ReadHSV(temp_hsv)[3] >= ReadHSV(MINIMUM_MUTANT_COLOR)[3]) // mutantcolors must be bright, but only if they affect the skin - color_list[color_number] = sanitize_hexcolor(new_marking_color, 6) + color_list[color_number] = "#[sanitize_hexcolor(new_marking_color, 6)]" else to_chat(user, "Invalid color. Your color is not bright enough.") else From d32770a0fafab36ff4651f6b0491ffa8538915b8 Mon Sep 17 00:00:00 2001 From: Timothy Teakettle <59849408+timothyteakettle@users.noreply.github.com> Date: Sun, 2 May 2021 22:19:41 +0100 Subject: [PATCH 095/259] test --- code/modules/client/preferences.dm | 2 +- code/modules/client/preferences_savefile.dm | 30 +++++++++++++++---- code/modules/surgery/bodyparts/_bodyparts.dm | 22 +++++++------- .../modules/client/preferences_savefile.dm | 2 +- 4 files changed, 38 insertions(+), 18 deletions(-) diff --git a/code/modules/client/preferences.dm b/code/modules/client/preferences.dm index 6e92a910c9..65809383c4 100644 --- a/code/modules/client/preferences.dm +++ b/code/modules/client/preferences.dm @@ -2471,7 +2471,7 @@ GLOBAL_LIST_EMPTY(preferences_datums) if(index && marking_type && features[marking_type]) // work out the input options to show the user var/list/options = list("Primary") - var/number_colors = href_list["number_colors"] + var/number_colors = text2num(href_list["number_colors"]) var/color_number = 1 // 1-3 which color are we editing if(number_colors >= 2) options += "Secondary" diff --git a/code/modules/client/preferences_savefile.dm b/code/modules/client/preferences_savefile.dm index b8959d93aa..0367fc9471 100644 --- a/code/modules/client/preferences_savefile.dm +++ b/code/modules/client/preferences_savefile.dm @@ -5,7 +5,7 @@ // You do not need to raise this if you are adding new values that have sane defaults. // Only raise this value when changing the meaning/format/name/layout of an existing value // where you would want the updater procs below to run -#define SAVEFILE_VERSION_MAX 50 +#define SAVEFILE_VERSION_MAX 51 /* SAVEFILE UPDATING/VERSIONING - 'Simplified', or rather, more coder-friendly ~Carn @@ -295,6 +295,27 @@ SAVEFILE UPDATING/VERSIONING - 'Simplified', or rather, more coder-friendly ~Car L -= ROLE_SYNDICATE S["be_special"] << L + if(current_version < 51) // rp markings means markings are now stored as a list + var/marking_type + var/species_id = S["species"] + var/datum/species/actual_species = GLOB.species_datums[species_id] + if(actual_species.mutant_bodyparts["body_markings"] && S["feature_lizard_body_markings"]) marking_type = "feature_lizard_body_markings" + if(actual_species.mutant_bodyparts["mam_body_markings"] && S["feature_mam_body_markings"]) marking_type = "feature_mam_body_markings" + + if(marking_type) + var/old_marking_value = S[marking_type] + var/list/color_list = list("#FFFFFF","#FFFFFF","#FFFFFF") + + if(S["feature_mcolor"]) color_list[1] = S["feature_mcolor"] + if(S["feature_mcolor2"]) color_list[2] = S["feature_mcolor2"] + if(S["feature_mcolor3"]) color_list[3] = S["feature_mcolor3"] + + var/marking_list = list() + for(var/part in list(ARM_LEFT, ARM_RIGHT, LEG_LEFT, LEG_RIGHT, CHEST, HEAD)) + marking_list += list(list(part, old_marking_value, color_list.Copy())) + + S[marking_type] = safe_json_encode(marking_list) + /datum/preferences/proc/load_path(ckey,filename="preferences.sav") if(!ckey) return @@ -638,7 +659,7 @@ SAVEFILE UPDATING/VERSIONING - 'Simplified', or rather, more coder-friendly ~Car S["feature_lizard_horns"] >> features["horns"] S["feature_lizard_frills"] >> features["frills"] S["feature_lizard_spines"] >> features["spines"] - S["feature_lizard_body_markings"] >> features["body_markings"] + features["body_markings"] = safe_json_decode(S["feature_lizard_body_markings"]) S["feature_lizard_legs"] >> features["legs"] S["feature_human_tail"] >> features["tail_human"] S["feature_human_ears"] >> features["ears"] @@ -707,7 +728,7 @@ SAVEFILE UPDATING/VERSIONING - 'Simplified', or rather, more coder-friendly ~Car S["feature_genitals_use_skintone"] >> features["genitals_use_skintone"] S["feature_mcolor2"] >> features["mcolor2"] S["feature_mcolor3"] >> features["mcolor3"] - S["feature_mam_body_markings"] >> features["mam_body_markings"] + features["mam_body_markings"] = safe_json_decode(S["feature_mam_body_markings"]) S["feature_mam_tail"] >> features["mam_tail"] S["feature_mam_ears"] >> features["mam_ears"] S["feature_mam_tail_animated"] >> features["mam_tail_animated"] @@ -837,7 +858,6 @@ SAVEFILE UPDATING/VERSIONING - 'Simplified', or rather, more coder-friendly ~Car features["ears"] = sanitize_inlist(features["ears"], GLOB.ears_list) features["frills"] = sanitize_inlist(features["frills"], GLOB.frills_list) features["spines"] = sanitize_inlist(features["spines"], GLOB.spines_list) - features["body_markings"] = sanitize_inlist(features["body_markings"], GLOB.body_markings_list) features["legs"] = sanitize_inlist(features["legs"], GLOB.legs_list, "Plantigrade") features["deco_wings"] = sanitize_inlist(features["deco_wings"], GLOB.deco_wings_list, "None") features["insect_fluff"] = sanitize_inlist(features["insect_fluff"], GLOB.insect_fluffs_list) @@ -1006,7 +1026,7 @@ SAVEFILE UPDATING/VERSIONING - 'Simplified', or rather, more coder-friendly ~Car WRITE_FILE(S["feature_human_ears"] , features["ears"]) WRITE_FILE(S["feature_lizard_frills"] , features["frills"]) WRITE_FILE(S["feature_lizard_spines"] , features["spines"]) - WRITE_FILE(S["feature_lizard_body_markings"] , features["body_markings"]) + WRITE_FILE(S["feature_lizard_body_markings"] , safe_json_encode(features["body_markings"])) WRITE_FILE(S["feature_lizard_legs"] , features["legs"]) WRITE_FILE(S["feature_deco_wings"] , features["deco_wings"]) WRITE_FILE(S["feature_horns_color"] , features["horns_color"]) diff --git a/code/modules/surgery/bodyparts/_bodyparts.dm b/code/modules/surgery/bodyparts/_bodyparts.dm index f970e04726..712f0a33a0 100644 --- a/code/modules/surgery/bodyparts/_bodyparts.dm +++ b/code/modules/surgery/bodyparts/_bodyparts.dm @@ -761,7 +761,7 @@ var/image_dir = 0 var/icon_gender = (body_gender == FEMALE) ? "f" : "m" //gender of the icon, if applicable -/* + if(dropped) image_dir = SOUTH if(dmg_overlay_type) @@ -771,14 +771,16 @@ . += image('icons/mob/dam_mob.dmi', "[dmg_overlay_type]_[body_zone]_0[burnstate]", -DAMAGE_LAYER, image_dir) if(!isnull(body_markings) && is_organic_limb(FALSE)) - if(!use_digitigrade) - if(body_zone == BODY_ZONE_CHEST) - . += image(body_markings_icon, "[body_markings]_[body_zone]_[icon_gender]", -MARKING_LAYER, image_dir) + for(var/list/marking_list in body_markings_list) + // marking stores icon and value for the specific bodypart + if(!use_digitigrade) + if(body_zone == BODY_ZONE_CHEST) + . += image(marking_list[1], "[marking_list[2]]_[body_zone]_[icon_gender]", -MARKING_LAYER, image_dir) + else + . += image(marking_list[1], "[marking_list[2]]_[body_zone]", -MARKING_LAYER, image_dir) else - . += image(body_markings_icon, "[body_markings]_[body_zone]", -MARKING_LAYER, image_dir) - else - . += image(body_markings_icon, "[body_markings]_[digitigrade_type]_[use_digitigrade]_[body_zone]", -MARKING_LAYER, image_dir) -*/ + . += image(marking_list[1], "[marking_list[2]]_[digitigrade_type]_[use_digitigrade]_[body_zone]", -MARKING_LAYER, image_dir) + var/image/limb = image(layer = -BODYPARTS_LAYER, dir = image_dir) var/list/aux = list() var/list/auxmarking = list() @@ -825,13 +827,11 @@ if(!use_digitigrade) if(body_zone == BODY_ZONE_CHEST) markings_list.Add(image(marking_list[1], "[marking_list[2]]_[body_zone]_[icon_gender]", -MARKING_LAYER, image_dir)) - message_admins("length is now [length(markings_list)]") else markings_list.Add(image(marking_list[1], "[marking_list[2]]_[body_zone]", -MARKING_LAYER, image_dir)) - message_admins("length is now [length(markings_list)]") else markings_list.Add(image(marking_list[1], "[marking_list[2]]_[digitigrade_type]_[use_digitigrade]_[body_zone]", -MARKING_LAYER, image_dir)) - message_admins("length is now [length(markings_list)]") + if(color_src && length(marking_list) == 3) message_admins("trying to color list of length [length(marking_list)] and also trying to access index [length(markings_list)] on a list of the same length") markings_list[length(markings_list)].color = marking_list[3] diff --git a/modular_citadel/code/modules/client/preferences_savefile.dm b/modular_citadel/code/modules/client/preferences_savefile.dm index bbd71d22e3..102ae41921 100644 --- a/modular_citadel/code/modules/client/preferences_savefile.dm +++ b/modular_citadel/code/modules/client/preferences_savefile.dm @@ -23,7 +23,7 @@ WRITE_FILE(S["feature_genitals_use_skintone"], features["genitals_use_skintone"]) WRITE_FILE(S["feature_mcolor2"], features["mcolor2"]) WRITE_FILE(S["feature_mcolor3"], features["mcolor3"]) - WRITE_FILE(S["feature_mam_body_markings"], features["mam_body_markings"]) + WRITE_FILE(S["feature_mam_body_markings"], safe_json_encode(features["mam_body_markings"])) WRITE_FILE(S["feature_mam_tail"], features["mam_tail"]) WRITE_FILE(S["feature_mam_ears"], features["mam_ears"]) WRITE_FILE(S["feature_mam_tail_animated"], features["mam_tail_animated"]) From 8f3a44f44a436cbadf226dad710964660877f5ef Mon Sep 17 00:00:00 2001 From: SandPoot Date: Sun, 2 May 2021 18:57:04 -0300 Subject: [PATCH 096/259] fancy gateway --- code/__DEFINES/layers_planes.dm | 1 + code/modules/awaymissions/gateway.dm | 62 ++++++++++++++++++----- code/modules/lighting/lighting_object.dm | 1 + icons/obj/machines/gateway.dmi | Bin 16139 -> 11967 bytes 4 files changed, 51 insertions(+), 13 deletions(-) diff --git a/code/__DEFINES/layers_planes.dm b/code/__DEFINES/layers_planes.dm index 8ab33689d3..37584d892d 100644 --- a/code/__DEFINES/layers_planes.dm +++ b/code/__DEFINES/layers_planes.dm @@ -77,6 +77,7 @@ #define PROJECTILE_HIT_THRESHHOLD_LAYER 2.75 //projectiles won't hit objects at or below this layer if possible #define TABLE_LAYER 2.8 #define TRAY_LAYER 2.85 +#define GATEWAY_UNDERLAY_LAYER 2.85 #define BELOW_OBJ_LAYER 2.9 #define LOW_ITEM_LAYER 2.95 //#define OBJ_LAYER 3 //For easy recordkeeping; this is a byond define diff --git a/code/modules/awaymissions/gateway.dm b/code/modules/awaymissions/gateway.dm index 5540cd7529..36ceabe3b4 100644 --- a/code/modules/awaymissions/gateway.dm +++ b/code/modules/awaymissions/gateway.dm @@ -4,10 +4,10 @@ GLOBAL_DATUM(the_gateway, /obj/machinery/gateway/centerstation) GLOBAL_LIST_EMPTY(gateway_destinations) /** - * Corresponds to single entry in gateway control. - * - * Will NOT be added automatically to GLOB.gateway_destinations list. - */ + * Corresponds to single entry in gateway control. + * + * Will NOT be added automatically to GLOB.gateway_destinations list. + */ /datum/gateway_destination var/name = "Unknown Destination" var/wait = 0 /// How long after roundstart this destination becomes active @@ -85,7 +85,7 @@ GLOBAL_LIST_EMPTY(gateway_destinations) . = "Exit gateway unpowered." /datum/gateway_destination/gateway/get_target_turf() - return get_step(target_gateway.portal,SOUTH) + return get_step(target_gateway, SOUTH) /datum/gateway_destination/gateway/post_transfer(atom/movable/AM) . = ..() @@ -144,7 +144,7 @@ GLOBAL_LIST_EMPTY(gateway_destinations) name = "gateway" desc = "A mysterious gateway built by unknown hands, it allows for faster than light travel to far-flung locations." icon = 'icons/obj/machines/gateway.dmi' - icon_state = "off" + icon_state = "portal_frame" resistance_flags = INDESTRUCTIBLE | LAVA_PROOF | FIRE_PROOF | UNACIDABLE | ACID_PROOF // 3x2 offset by one row @@ -171,10 +171,14 @@ GLOBAL_LIST_EMPTY(gateway_destinations) var/datum/gateway_destination/target /// bumper object, the thing that starts actual teleport var/obj/effect/gateway_portal_bumper/portal + /// Visual object for handling the viscontents + var/obj/effect/gateway_portal_effect/portal_visuals /obj/machinery/gateway/Initialize() generate_destination() update_icon() + portal_visuals = new + vis_contents += portal_visuals return ..() /obj/machinery/gateway/proc/generate_destination() @@ -191,6 +195,7 @@ GLOBAL_LIST_EMPTY(gateway_destinations) if(use_power == ACTIVE_POWER_USE) use_power = IDLE_POWER_USE update_icon() + portal_visuals.reset_visuals() /obj/machinery/gateway/process() if((stat & (NOPOWER)) && use_power) @@ -198,12 +203,6 @@ GLOBAL_LIST_EMPTY(gateway_destinations) deactivate() return -/obj/machinery/gateway/update_icon_state() - if(target) - icon_state = "on" - else - icon_state = "off" - /obj/machinery/gateway/safe_throw_at(atom/target, range, speed, mob/thrower, spin = TRUE, diagonals_first = FALSE, datum/callback/callback, force = MOVE_FORCE_STRONG, gentle = FALSE) return @@ -216,6 +215,7 @@ GLOBAL_LIST_EMPTY(gateway_destinations) return target = D target.activate(destination) + portal_visuals.setup_visuals(target) generate_bumper() use_power = ACTIVE_POWER_USE update_icon() @@ -307,7 +307,7 @@ GLOBAL_LIST_EMPTY(gateway_destinations) try_to_connect(D) return TRUE if("deactivate") - if(G && G.target) + if(G?.target) G.deactivate() return TRUE @@ -324,3 +324,39 @@ GLOBAL_LIST_EMPTY(gateway_destinations) /obj/item/paper/fluff/gateway info = "Congratulations,

    Your station has been selected to carry out the Gateway Project.

    The equipment will be shipped to you at the start of the next quarter.
    You are to prepare a secure location to house the equipment as outlined in the attached documents.

    --Nanotrasen Bluespace Research" name = "Confidential Correspondence, Pg 1" + +/obj/effect/gateway_portal_effect + appearance_flags = KEEP_TOGETHER|TILE_BOUND|PIXEL_SCALE + mouse_opacity = MOUSE_OPACITY_TRANSPARENT + vis_flags = VIS_INHERIT_ID + layer = GATEWAY_UNDERLAY_LAYER //Slightly lower than gateway itself + var/alpha_icon = 'icons/obj/machines/gateway.dmi' + var/alpha_icon_state = "portal_mask" + var/datum/gateway_destination/our_destination + + +/obj/effect/gateway_portal_effect/proc/setup_visuals(datum/gateway_destination/D) + our_destination = D + update_portal_filters() + +/obj/effect/gateway_portal_effect/proc/reset_visuals() + our_destination = null + update_portal_filters() + +/obj/effect/gateway_portal_effect/proc/update_portal_filters() + clear_filters() + vis_contents = null + + if(!our_destination) + return + + + add_filter("portal_alpha", 1, list("type" = "alpha", "icon" = icon(alpha_icon, alpha_icon_state), "x" = 32, "y" = 32)) + add_filter("portal_blur", 1, list("type" = "blur", "size" = 0.5)) + add_filter("portal_ripple", 1, list("type" = "ripple", "size" = 2, "radius" = 1, "falloff" = 1, "y" = 7)) + + animate(get_filter("portal_ripple"), time = 1.3 SECONDS, loop = -1, easing = LINEAR_EASING, radius = 32) + + var/turf/center_turf = our_destination.get_target_turf() + + vis_contents += block(locate(center_turf.x - 1, center_turf.y - 1, center_turf.z), locate(center_turf.x + 1, center_turf.y + 1, center_turf.z)) diff --git a/code/modules/lighting/lighting_object.dm b/code/modules/lighting/lighting_object.dm index ffa2d86e15..6551b1e336 100644 --- a/code/modules/lighting/lighting_object.dm +++ b/code/modules/lighting/lighting_object.dm @@ -10,6 +10,7 @@ mouse_opacity = MOUSE_OPACITY_TRANSPARENT layer = LIGHTING_LAYER invisibility = INVISIBILITY_LIGHTING + vis_flags = VIS_HIDE var/needs_update = FALSE var/turf/myturf diff --git a/icons/obj/machines/gateway.dmi b/icons/obj/machines/gateway.dmi index fc45145ae86f3ca8f5e2c974637b25a628b280cd..5ba943bb896bb68ae831e43a5286d9254e6c39c5 100644 GIT binary patch literal 11967 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 b42f2|Q)V?g_Qe3mNC&B_Xen1ITEG8a;Enoc literal 16139 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≧Ecu1nF|ZX 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 From 6887e2d097b9ba361e455deccb57c6ac35c8fc79 Mon Sep 17 00:00:00 2001 From: Changelogs Date: Mon, 3 May 2021 00:28:19 +0000 Subject: [PATCH 097/259] Automatic changelog compile [ci skip] --- html/changelog.html | 23 +++++++++++----------- html/changelogs/.all_changelog.yml | 12 +++++++++++ html/changelogs/AutoChangeLog-pr-14670.yml | 10 ---------- 3 files changed, 23 insertions(+), 22 deletions(-) delete mode 100644 html/changelogs/AutoChangeLog-pr-14670.yml diff --git a/html/changelog.html b/html/changelog.html index 389a308886..9617672de3 100644 --- a/html/changelog.html +++ b/html/changelog.html @@ -50,6 +50,17 @@ -->
    +

    03 May 2021

    +

    TripleShades updated:

    +
      +
    • Added two air alarms to Pubby Security, one in the evidence locker room and one in the main equipment back room
    • +
    • pAI Card back to outside Research in Meta Station
    • +
    • Pubby Disposals now shunts to space
    • +
    • Maintinence Areas being not applied to certain airlocks as well as stealing minor walls
    • +
    • Box Surgery Storage camera is now renamed to be on the network
    • +
    • Box Paramedic Station camera is now renamed to be on the network, and no longer steals the Morgue's cam tweak: Box Surgery Storage is now it's own proper room
    • +
    +

    01 May 2021

    qweq12yt updated:

      @@ -781,18 +792,6 @@
      • Changelings will actually become the person they want to be when using "human form" ability(after having used last resort).
      - -

      01 March 2021

      -

      SmArtKar updated:

      -
        -
      • Fixes decks breaking your screen
      • -
      • Fixes binders not saving cards
      • -
      • Fixes binders not saving multiple cards of the same type
      • -
      -

      Vynzill updated:

      -
        -
      • cursed rice hat right in front of the jungle gateway's entrance is now removed from this dimensional plane
      • -
    GoonStation 13 Development Team diff --git a/html/changelogs/.all_changelog.yml b/html/changelogs/.all_changelog.yml index 1212e88f23..f45bae5a5a 100644 --- a/html/changelogs/.all_changelog.yml +++ b/html/changelogs/.all_changelog.yml @@ -29219,3 +29219,15 @@ DO NOT EDIT THIS FILE BY HAND! AUTOMATICALLY GENERATED BY ss13_genchangelog.py. 2021-05-01: qweq12yt: - bugfix: Restores the sprite for the Riot Suit. +2021-05-03: + TripleShades: + - rscadd: Added two air alarms to Pubby Security, one in the evidence locker room + and one in the main equipment back room + - rscadd: pAI Card back to outside Research in Meta Station + - bugfix: Pubby Disposals now shunts to space + - bugfix: Maintinence Areas being not applied to certain airlocks as well as stealing + minor walls + - bugfix: Box Surgery Storage camera is now renamed to be on the network + - bugfix: 'Box Paramedic Station camera is now renamed to be on the network, and + no longer steals the Morgue''s cam tweak: Box Surgery Storage is now it''s own + proper room' diff --git a/html/changelogs/AutoChangeLog-pr-14670.yml b/html/changelogs/AutoChangeLog-pr-14670.yml deleted file mode 100644 index 4264b1e083..0000000000 --- a/html/changelogs/AutoChangeLog-pr-14670.yml +++ /dev/null @@ -1,10 +0,0 @@ -author: "TripleShades" -delete-after: True -changes: - - rscadd: "Added two air alarms to Pubby Security, one in the evidence locker room and one in the main equipment back room" - - rscadd: "pAI Card back to outside Research in Meta Station" - - bugfix: "Pubby Disposals now shunts to space" - - bugfix: "Maintinence Areas being not applied to certain airlocks as well as stealing minor walls" - - bugfix: "Box Surgery Storage camera is now renamed to be on the network" - - bugfix: "Box Paramedic Station camera is now renamed to be on the network, and no longer steals the Morgue's cam -tweak: Box Surgery Storage is now it's own proper room" From 869f5e940a5248a5220d631634c8e9c4083da8a8 Mon Sep 17 00:00:00 2001 From: bunny232 Date: Sun, 2 May 2021 23:02:50 -0400 Subject: [PATCH 098/259] Delete MetaStation.dmm --- _maps/map_files/MetaStation/MetaStation.dmm | 149031 ----------------- 1 file changed, 149031 deletions(-) delete mode 100644 _maps/map_files/MetaStation/MetaStation.dmm diff --git a/_maps/map_files/MetaStation/MetaStation.dmm b/_maps/map_files/MetaStation/MetaStation.dmm deleted file mode 100644 index f39dbc578d..0000000000 --- a/_maps/map_files/MetaStation/MetaStation.dmm +++ /dev/null @@ -1,149031 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"aaa" = ( -/turf/open/space/basic, -/area/space) -"aab" = ( -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = 24 - }, -/obj/structure/rack, -/obj/item/grenade/barrier{ - pixel_x = -3; - pixel_y = 1 - }, -/obj/item/grenade/barrier, -/obj/item/grenade/barrier{ - pixel_x = 3; - pixel_y = -1 - }, -/obj/item/grenade/barrier{ - pixel_x = 6; - pixel_y = -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/structure/sign/poster/official/nt_storm_officer{ - pixel_x = -32 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"aac" = ( -/obj/effect/landmark/carpspawn, -/turf/open/space, -/area/space) -"aad" = ( -/obj/structure/rack, -/obj/item/clothing/suit/armor/bulletproof, -/obj/item/clothing/head/helmet/alt, -/obj/item/clothing/suit/armor/bulletproof, -/obj/item/clothing/head/helmet/alt, -/obj/item/clothing/suit/armor/bulletproof, -/obj/item/clothing/head/helmet/alt, -/obj/effect/turf_decal/tile/neutral{ - 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/poster/official/nt_storm{ - pixel_x = 32 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"aaf" = ( -/obj/structure/lattice, -/turf/open/space, -/area/space/nearstation) -"aag" = ( -/obj/structure/grille, -/obj/structure/lattice, -/turf/open/space, -/area/space/nearstation) -"aai" = ( -/obj/structure/grille/broken, -/obj/structure/lattice, -/turf/open/space, -/area/space/nearstation) -"aaj" = ( -/obj/structure/grille, -/turf/open/space, -/area/space/nearstation) -"aav" = ( -/turf/open/space, -/area/space/station_ruins) -"aax" = ( -/turf/closed/wall/r_wall, -/area/security/prison) -"aay" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/turf/open/floor/plating, -/area/security/prison) -"aaA" = ( -/obj/machinery/seed_extractor, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"aaB" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/item/kirbyplants{ - icon_state = "plant-03" - }, -/turf/open/floor/plasteel, -/area/security/prison) -"aaC" = ( -/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 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/security/prison) -"aaD" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/item/kirbyplants, -/turf/open/floor/plasteel, -/area/security/prison) -"aaE" = ( -/obj/machinery/biogenerator, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Prison Hydroponics"; - network = list("ss13","prison") - }, -/turf/open/floor/plasteel, -/area/security/prison) -"aaF" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/turf/open/floor/plating, -/area/security/prison) -"aaG" = ( -/obj/machinery/hydroponics/constructable, -/obj/item/seeds/ambrosia, -/turf/open/floor/plasteel, -/area/security/prison) -"aaH" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/plasteel, -/area/security/prison) -"aaI" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/security/prison) -"aaJ" = ( -/obj/item/reagent_containers/glass/bucket, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel, -/area/security/prison) -"aaK" = ( -/obj/machinery/hydroponics/constructable, -/obj/item/seeds/glowshroom, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/security/prison) -"aaL" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/security/prison) -"aaP" = ( -/obj/machinery/hydroponics/constructable, -/obj/item/cultivator, -/obj/item/seeds/carrot, -/turf/open/floor/plasteel, -/area/security/prison) -"aaQ" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/item/reagent_containers/glass/bucket, -/turf/open/floor/plasteel, -/area/security/prison) -"aaR" = ( -/turf/open/floor/plasteel, -/area/security/prison) -"aaS" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/security/prison) -"aaT" = ( -/obj/machinery/hydroponics/constructable, -/obj/item/plant_analyzer, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"aaW" = ( -/obj/effect/turf_decal/tile/neutral{ - 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/door/poddoor/shutters/window{ - id = "armory"; - name = "Armoury Shutters" - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"aaZ" = ( -/turf/closed/wall/r_wall, -/area/security/execution/education) -"aba" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/obj/structure/cable/yellow, -/turf/open/floor/plating, -/area/security/prison) -"abb" = ( -/obj/machinery/door/airlock/public/glass{ - id_tag = "permahydro"; - name = "Hydroponics Module" - }, -/turf/open/floor/plasteel, -/area/security/prison) -"abc" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/security/prison) -"abd" = ( -/obj/machinery/vending/cola/random, -/obj/structure/sign/poster/official/pda_ad600{ - pixel_x = -32 - }, -/obj/structure/sign/poster/official/pda_ad800{ - pixel_x = -32; - pixel_y = 32 - }, -/obj/structure/sign/poster/official/pda_ad{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/command) -"abe" = ( -/turf/closed/wall, -/area/security/prison) -"abg" = ( -/obj/machinery/door/poddoor{ - id = "SecJusticeChamber"; - name = "Justice Vent" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/security/execution/education) -"abh" = ( -/obj/item/soap/nanotrasen, -/obj/item/bikehorn/rubberducky, -/obj/machinery/shower{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel/freezer, -/area/security/prison) -"abi" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/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 - }, -/turf/open/floor/plasteel/freezer, -/area/security/prison) -"abj" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/easel, -/obj/item/canvas/twentythreeXtwentythree, -/obj/item/canvas/twentythreeXtwentythree, -/turf/open/floor/plasteel, -/area/security/prison) -"abk" = ( -/obj/structure/kitchenspike_frame, -/obj/effect/decal/cleanable/blood/gibs/old, -/obj/structure/sign/poster/contraband/scum{ - pixel_y = -32 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"abl" = ( -/obj/structure/table, -/obj/machinery/computer/libraryconsole/bookmanagement, -/turf/open/floor/plasteel, -/area/security/prison) -"abm" = ( -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_y = 32 - }, -/obj/machinery/vr_sleeper, -/turf/open/floor/plasteel, -/area/security/prison) -"abn" = ( -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"abo" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel, -/area/security/prison) -"abp" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel, -/area/security/prison) -"abq" = ( -/obj/structure/holohoop{ - pixel_y = 29 - }, -/obj/item/toy/beach_ball/holoball, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/security/prison) -"abr" = ( -/obj/machinery/status_display/evac{ - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/cafeteria, -/area/security/prison) -"abs" = ( -/obj/machinery/washing_machine, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/cafeteria, -/area/security/prison) -"abt" = ( -/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 - }, -/obj/structure/sign/poster/official/hydro_ad{ - pixel_x = -32 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/central) -"abu" = ( -/obj/docking_port/stationary{ - dwidth = 1; - height = 4; - roundstart_template = /datum/map_template/shuttle/escape_pod/default; - width = 3 - }, -/obj/structure/fans/tiny/invisible, -/turf/open/space/basic, -/area/space) -"abx" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel/dark, -/area/security/execution/education) -"aby" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/security/execution/education) -"abz" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel/dark, -/area/security/execution/education) -"abA" = ( -/obj/machinery/shower{ - dir = 4 - }, -/turf/open/floor/plasteel/freezer, -/area/security/prison) -"abB" = ( -/obj/machinery/door/window/westleft{ - base_state = "right"; - dir = 4; - icon_state = "right"; - name = "Unisex Showers" - }, -/obj/machinery/light/small, -/turf/open/floor/plasteel/freezer, -/area/security/prison) -"abC" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/security/prison) -"abD" = ( -/obj/structure/chair/stool, -/turf/open/floor/plasteel, -/area/security/prison) -"abF" = ( -/obj/structure/table, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/item/reagent_containers/food/condiment/peppermill{ - pixel_x = 3 - }, -/obj/item/reagent_containers/food/condiment/saltshaker{ - pixel_x = -3; - pixel_y = 5 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"abG" = ( -/obj/structure/table, -/obj/item/toy/cards/deck, -/obj/item/toy/cards/deck, -/turf/open/floor/plasteel, -/area/security/prison) -"abH" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/sign/poster/official/medical_green_cross{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"abI" = ( -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel, -/area/security/prison) -"abJ" = ( -/obj/structure/window/reinforced, -/obj/structure/cable/yellow{ - 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/security/prison) -"abK" = ( -/obj/structure/table, -/obj/structure/bedsheetbin, -/obj/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/cafeteria, -/area/security/prison) -"abL" = ( -/turf/open/floor/plating, -/area/security/prison) -"abM" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/security/prison) -"abN" = ( -/obj/machinery/door/airlock/external{ - name = "Solar Maintenance"; - req_access_txt = "10; 13" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/turf/open/floor/plating, -/area/maintenance/solars/port/fore) -"abV" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/sparker{ - id = "executionburn"; - pixel_x = -25 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/execution/education) -"abW" = ( -/obj/structure/bed, -/obj/item/clothing/suit/straight_jacket, -/obj/item/clothing/glasses/sunglasses/blindfold, -/obj/item/clothing/mask/muzzle, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/item/electropack, -/turf/open/floor/plasteel/dark, -/area/security/execution/education) -"abX" = ( -/obj/machinery/flasher{ - id = "justiceflash"; - name = "mounted justice flash"; - pixel_x = 28 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/execution/education) -"abY" = ( -/obj/machinery/door/airlock{ - name = "Unisex Restroom" - }, -/turf/open/floor/plasteel/freezer, -/area/security/prison) -"abZ" = ( -/obj/structure/table, -/obj/item/book/manual/chef_recipes{ - pixel_x = 2; - pixel_y = 6 - }, -/obj/item/clothing/head/chefhat, -/turf/open/floor/plasteel, -/area/security/prison) -"aca" = ( -/obj/structure/table, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/item/toy/cards/deck, -/obj/item/toy/cards/deck, -/turf/open/floor/plasteel, -/area/security/prison) -"acb" = ( -/obj/structure/table, -/obj/item/storage/dice, -/turf/open/floor/plasteel, -/area/security/prison) -"acc" = ( -/obj/structure/chair/stool, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/security/prison) -"acd" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/sign/poster/official/medical_green_cross{ - pixel_x = -32 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"ace" = ( -/obj/machinery/vending/sustenance{ - desc = "A vending machine normally reserved for work camps."; - name = "\improper sustenance vendor"; - product_slogans = "Enjoy your meal.;Enough calories to support any worker." - }, -/turf/open/floor/plasteel, -/area/security/prison) -"acf" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/security/prison) -"acg" = ( -/obj/machinery/light/small, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/security/prison) -"ach" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/door/airlock/external{ - name = "Security External Airlock"; - req_access_txt = "1" - }, -/turf/open/floor/plating, -/area/security/prison) -"acj" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/sign/warning/vacuum/external{ - pixel_y = 32 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/security/prison) -"ack" = ( -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/space/nearstation) -"acm" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel/dark, -/area/security/execution/education) -"acn" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel/dark, -/area/security/execution/education) -"aco" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/on{ - name = "justice injector" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel/dark, -/area/security/execution/education) -"acp" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/toilet/secret/prison{ - dir = 4 - }, -/turf/open/floor/plasteel/freezer, -/area/security/prison) -"acq" = ( -/obj/structure/table, -/obj/item/storage/box/donkpockets{ - pixel_x = 2; - pixel_y = 1 - }, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/security/prison) -"acr" = ( -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel, -/area/security/prison) -"acs" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"act" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"acu" = ( -/obj/machinery/holopad, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/security/prison) -"acv" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/security/prison) -"acw" = ( -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel, -/area/security/prison) -"acx" = ( -/obj/machinery/cryopod{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"acy" = ( -/obj/machinery/door/airlock/external{ - name = "Escape Pod Two" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/turf/open/floor/plating, -/area/security/prison) -"acA" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/poddoor/preopen{ - id = "executionfireblast" - }, -/obj/machinery/door/firedoor, -/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/security/execution/education) -"acB" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "executionfireblast" - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 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/security/execution/education) -"acC" = ( -/obj/machinery/door/window/brigdoor{ - name = "Justice Chamber"; - req_access_txt = "3" - }, -/obj/machinery/atmospherics/pipe/simple/general/hidden, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/window/brigdoor{ - dir = 1; - name = "Justice Chamber"; - req_access_txt = "3" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/preopen{ - id = "executionfireblast" - }, -/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/security/execution/education) -"acD" = ( -/obj/structure/table, -/obj/machinery/microwave{ - pixel_x = -3; - pixel_y = 6 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/security/prison) -"acE" = ( -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/security/prison) -"acF" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/machinery/light, -/turf/open/floor/plasteel, -/area/security/prison) -"acG" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/obj/item/kirbyplants{ - icon_state = "plant-13" - }, -/turf/open/floor/plasteel, -/area/security/prison) -"acH" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/obj/item/radio/intercom{ - desc = "Talk through this. It looks like it has been modified to not broadcast."; - name = "Prison Intercom (General)"; - pixel_y = -28; - prison_radio = 1 - }, -/obj/machinery/camera{ - c_tag = "Prison Chamber"; - dir = 1; - network = list("ss13","prison") - }, -/turf/open/floor/plasteel, -/area/security/prison) -"acI" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"acJ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"acK" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plasteel, -/area/security/prison) -"acL" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/obj/machinery/light, -/turf/open/floor/plasteel, -/area/security/prison) -"acM" = ( -/obj/structure/table, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/pen, -/obj/machinery/computer/cryopod{ - dir = 8; - pixel_x = 26 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"acN" = ( -/obj/structure/table/glass, -/obj/item/reagent_containers/syringe, -/obj/item/reagent_containers/glass/bottle/morphine{ - pixel_y = 6 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/security/prison) -"acO" = ( -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/obj/structure/table/glass, -/obj/item/reagent_containers/glass/beaker{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/reagent_containers/glass/beaker{ - pixel_x = -5; - pixel_y = 6 - }, -/obj/item/reagent_containers/dropper, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/security/prison) -"acR" = ( -/obj/structure/table/glass, -/obj/item/reagent_containers/syringe, -/obj/item/reagent_containers/glass/bottle/morphine{ - pixel_y = 6 - }, -/obj/machinery/camera{ - c_tag = "Prison Sanitarium"; - network = list("ss13","prison") - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/security/prison) -"acV" = ( -/obj/structure/table, -/obj/item/reagent_containers/glass/bottle/morphine{ - pixel_x = -4; - pixel_y = 1 - }, -/obj/item/reagent_containers/glass/bottle/chloralhydrate{ - name = "chloral hydrate bottle" - }, -/obj/item/reagent_containers/glass/bottle/toxin{ - pixel_x = 6; - pixel_y = 8 - }, -/obj/item/reagent_containers/glass/bottle/morphine{ - pixel_x = 5; - pixel_y = 1 - }, -/obj/item/reagent_containers/syringe, -/obj/item/reagent_containers/glass/bottle/facid{ - name = "fluorosulfuric acid bottle"; - pixel_x = -3; - pixel_y = 6 - }, -/obj/item/reagent_containers/syringe{ - pixel_y = 5 - }, -/obj/item/reagent_containers/dropper, -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = -24 - }, -/obj/machinery/button/ignition{ - id = "executionburn"; - name = "Justice Ignition Switch"; - pixel_x = -25; - pixel_y = 36 - }, -/obj/machinery/button/door{ - id = "executionfireblast"; - name = "Justice Area Lockdown"; - pixel_x = -25; - pixel_y = 26; - req_access_txt = "2" - }, -/obj/item/assembly/signaler{ - pixel_x = -3; - pixel_y = 2 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/machinery/button/flasher{ - id = "justiceflash"; - name = "Justice Flash Control"; - pixel_x = -36; - pixel_y = 36; - req_access_txt = "1" - }, -/obj/machinery/button/door{ - id = "SecJusticeChamber"; - layer = 4; - name = "Justice Vent Control"; - pixel_x = -36; - pixel_y = 26; - req_access_txt = "3" - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/execution/education) -"acW" = ( -/obj/structure/table, -/obj/item/folder/red{ - pixel_x = 3 - }, -/obj/item/taperecorder{ - pixel_x = -3 - }, -/obj/item/storage/fancy/cigarettes, -/obj/item/assembly/flash/handheld, -/obj/item/reagent_containers/spray/pepper, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/security/execution/education) -"acX" = ( -/obj/machinery/atmospherics/pipe/simple/general/hidden, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/security/execution/education) -"acY" = ( -/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/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/execution/education) -"ada" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/closed/wall/r_wall, -/area/security/prison) -"adb" = ( -/obj/machinery/door/poddoor/preopen{ - id = "permacell3"; - name = "Cell Shutters" - }, -/obj/machinery/door/airlock/public/glass{ - id_tag = "permabolt3"; - name = "Cell 3" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/turf/open/floor/plasteel, -/area/security/prison) -"adc" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/security/prison) -"add" = ( -/obj/machinery/door/poddoor/preopen{ - id = "permacell2"; - name = "Cell Shutters" - }, -/obj/machinery/door/airlock/public/glass{ - id_tag = "permabolt2"; - name = "Cell 2" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/turf/open/floor/plasteel, -/area/security/prison) -"ade" = ( -/obj/machinery/door/poddoor/preopen{ - id = "permacell1"; - name = "Cell Shutters" - }, -/obj/machinery/door/airlock/public/glass{ - id_tag = "permabolt1"; - name = "Cell 1" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/turf/open/floor/plasteel, -/area/security/prison) -"adf" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating, -/area/security/prison) -"adg" = ( -/obj/structure/bed, -/obj/item/clothing/suit/straight_jacket, -/obj/item/clothing/glasses/sunglasses/blindfold, -/obj/item/clothing/mask/muzzle, -/turf/open/floor/plasteel/white, -/area/security/prison) -"adh" = ( -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel/white, -/area/security/prison) -"adi" = ( -/obj/structure/bed, -/obj/item/clothing/suit/straight_jacket, -/obj/item/clothing/glasses/sunglasses/blindfold, -/obj/item/clothing/mask/muzzle, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/white, -/area/security/prison) -"adk" = ( -/obj/structure/sign/poster/contraband/scum{ - pixel_y = -32 - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"adl" = ( -/obj/structure/closet/crate{ - icon_state = "crateopen" - }, -/obj/item/storage/box/donkpockets, -/obj/structure/sign/poster/contraband/scum{ - pixel_y = -32 - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"adm" = ( -/obj/structure/table, -/obj/item/flashlight/lamp, -/obj/structure/reagent_dispensers/peppertank{ - pixel_x = -29 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel/dark, -/area/security/execution/education) -"adn" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/chair/office/dark{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/execution/education) -"ado" = ( -/obj/machinery/atmospherics/pipe/simple/general/hidden, -/turf/open/floor/plasteel/dark, -/area/security/execution/education) -"adp" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/plasteel/dark, -/area/security/execution/education) -"adq" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 28 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/execution/education) -"adr" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall/r_wall, -/area/security/execution/education) -"ads" = ( -/obj/structure/bed, -/obj/machinery/camera{ - c_tag = "Prison Cell 3"; - network = list("ss13","prison") - }, -/turf/open/floor/plasteel, -/area/security/prison) -"adt" = ( -/obj/structure/chair/stool, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/button/door{ - id = "permabolt3"; - name = "Cell Bolt Control"; - normaldoorcontrol = 1; - pixel_y = 25; - specialfunctions = 4 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"adu" = ( -/obj/structure/bed, -/obj/machinery/camera{ - c_tag = "Prison Cell 2"; - network = list("ss13","prison") - }, -/turf/open/floor/plasteel, -/area/security/prison) -"adv" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/security/prison) -"adw" = ( -/obj/structure/chair/stool, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/button/door{ - id = "permabolt2"; - name = "Cell Bolt Control"; - normaldoorcontrol = 1; - pixel_y = 25; - specialfunctions = 4 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, -/area/security/prison) -"adx" = ( -/obj/structure/bed, -/obj/machinery/camera{ - c_tag = "Prison Cell 1"; - network = list("ss13","prison") - }, -/turf/open/floor/plasteel, -/area/security/prison) -"ady" = ( -/obj/structure/chair/stool, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/button/door{ - id = "permabolt1"; - name = "Cell Bolt Control"; - normaldoorcontrol = 1; - pixel_y = 25; - specialfunctions = 4 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"adz" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/security/prison) -"adA" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/turf/open/floor/plasteel/white, -/area/security/prison) -"adB" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/white, -/area/security/prison) -"adC" = ( -/obj/machinery/flasher{ - id = "insaneflash"; - pixel_x = 26 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel/white, -/area/security/prison) -"adD" = ( -/obj/structure/lattice, -/obj/machinery/camera/motion{ - c_tag = "Armory - External"; - dir = 1 - }, -/turf/open/space, -/area/space/nearstation) -"adF" = ( -/obj/docking_port/stationary{ - dir = 4; - dwidth = 1; - height = 4; - roundstart_template = /datum/map_template/shuttle/escape_pod/default; - width = 3 - }, -/obj/structure/fans/tiny/invisible, -/turf/open/space/basic, -/area/space) -"adG" = ( -/obj/docking_port/stationary/random{ - id = "pod_lavaland2"; - name = "lavaland" - }, -/turf/open/space, -/area/space/nearstation) -"adI" = ( -/obj/structure/rack, -/obj/item/hatchet, -/obj/item/reagent_containers/blood/random, -/obj/structure/sign/poster/contraband/scum{ - pixel_y = -32 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"adJ" = ( -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_x = -28 - }, -/obj/structure/table, -/obj/item/storage/backpack/duffelbag/sec/surgery{ - pixel_y = 5 - }, -/obj/item/clothing/mask/balaclava, -/obj/item/reagent_containers/spray/cleaner{ - pixel_x = 5 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/execution/education) -"adK" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/execution/education) -"adL" = ( -/obj/machinery/atmospherics/pipe/simple/general/hidden, -/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/dark, -/area/security/execution/education) -"adM" = ( -/obj/machinery/button/door{ - id = "prisonereducation"; - name = "Door Bolt Control"; - normaldoorcontrol = 1; - pixel_y = -25; - specialfunctions = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/execution/education) -"adN" = ( -/obj/machinery/light_switch{ - pixel_x = 26 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/execution/education) -"adO" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/obj/machinery/flasher{ - id = "PCell 3"; - pixel_x = -28 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/security/prison) -"adP" = ( -/obj/structure/table, -/obj/item/paper, -/obj/item/pen, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"adQ" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/security/prison) -"adR" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/obj/machinery/flasher{ - id = "PCell 2"; - pixel_x = -28 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"adS" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"adT" = ( -/obj/structure/table, -/obj/item/paper, -/obj/item/pen, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/plasteel, -/area/security/prison) -"adU" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/obj/machinery/flasher{ - id = "PCell 1"; - pixel_x = -28 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"adV" = ( -/obj/item/folder/red, -/obj/item/pen, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/table/glass, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/security/prison) -"adW" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/security/prison) -"adX" = ( -/obj/structure/bed/roller, -/obj/structure/bed/roller, -/obj/machinery/iv_drip, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/iv_drip, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/security/prison) -"adY" = ( -/turf/closed/wall/r_wall, -/area/security/warden) -"aee" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/solars/port/fore) -"aef" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/solars/port/fore) -"aeg" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/canister/carbon_dioxide, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/security/execution/education) -"aeh" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 10 - }, -/obj/machinery/meter, -/obj/machinery/door/window/westleft{ - dir = 1; - name = "gas ports" - }, -/turf/open/floor/plasteel/dark, -/area/security/execution/education) -"aei" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1; - name = "justice gas pump" - }, -/obj/machinery/door/window/westleft{ - base_state = "right"; - dir = 1; - icon_state = "right"; - name = "gas ports" - }, -/turf/open/floor/plasteel/dark, -/area/security/execution/education) -"aej" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security{ - aiControlDisabled = 1; - id_tag = "prisonereducation"; - name = "Prisoner Education Chamber"; - req_access_txt = "3" - }, -/obj/structure/cable/yellow{ - 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{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/execution/education) -"aek" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall/r_wall, -/area/security/prison) -"ael" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall, -/area/security/prison) -"aem" = ( -/obj/machinery/door/airlock/security/glass{ - name = "Long-Term Cell 3"; - req_access_txt = "2" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"aen" = ( -/obj/machinery/door/airlock/security/glass{ - name = "Long-Term Cell 2"; - req_access_txt = "2" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"aeo" = ( -/obj/machinery/door/airlock/security/glass{ - name = "Long-Term Cell 1"; - req_access_txt = "2" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"aep" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Prison Sanitarium"; - req_access_txt = "2" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"aeq" = ( -/turf/closed/wall/r_wall, -/area/ai_monitored/security/armory) -"aer" = ( -/obj/structure/rack, -/obj/item/gun/energy/ionrifle, -/obj/machinery/light{ - dir = 1 - }, -/obj/item/gun/energy/temperature/security, -/obj/item/clothing/suit/armor/laserproof, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/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/security/armory) -"aes" = ( -/obj/structure/closet/secure_closet{ - name = "contraband locker"; - req_access_txt = "3" - }, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 3; - name = "3maintenance loot spawner" - }, -/obj/effect/spawner/lootdrop/armory_contraband{ - loot = list(/obj/item/gun/ballistic/automatic/pistol = 5, /obj/item/gun/ballistic/shotgun/automatic/combat = 5, /obj/item/gun/ballistic/revolver/mateba, /obj/item/gun/ballistic/automatic/pistol/deagle, /obj/item/storage/box/syndie_kit/throwing_weapons = 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/ai_monitored/security/armory) -"aex" = ( -/obj/structure/closet/secure_closet/lethalshots, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/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/security/armory) -"aey" = ( -/turf/closed/wall, -/area/security/range) -"aez" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/security/range) -"aeD" = ( -/turf/open/floor/plasteel/grimy, -/area/hallway/primary/port) -"aeG" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/solars/port/fore) -"aeH" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/canister/nitrous_oxide, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/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/execution/education) -"aeI" = ( -/obj/item/tank/internals/oxygen/red{ - pixel_x = -4; - pixel_y = -1 - }, -/obj/item/tank/internals/oxygen/red{ - pixel_x = 4; - pixel_y = -1 - }, -/obj/item/tank/internals/anesthetic{ - pixel_x = 2 - }, -/obj/item/storage/toolbox/mechanical, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas, -/obj/structure/closet/crate{ - icon_state = "crateopen" - }, -/obj/machinery/atmospherics/pipe/manifold/general/visible, -/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/security/execution/education) -"aeJ" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 9 - }, -/obj/machinery/space_heater, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/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/execution/education) -"aeK" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel, -/area/security/prison) -"aeL" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/structure/sign/warning/securearea{ - desc = "A warning sign which reads 'WARNING: Do Not Enter When Red Light Shows', detailing the penalties that any Nanotrasen employee or silicon will suffer if violating this rule."; - name = "WARNING: Do Not Enter When Red Light Shows"; - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel, -/area/security/prison) -"aeM" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel, -/area/security/prison) -"aeN" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel, -/area/security/prison) -"aeO" = ( -/obj/machinery/button/door{ - id = "permacell3"; - name = "Cell 3 Lockdown"; - pixel_x = -4; - pixel_y = 25; - req_access_txt = "2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/button/flasher{ - id = "PCell 3"; - pixel_x = 6; - pixel_y = 24 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel, -/area/security/prison) -"aeP" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/computer/security/telescreen{ - desc = "Used for watching Prison Wing holding areas."; - name = "Prison Monitor"; - network = list("prison"); - pixel_y = 30 - }, -/obj/machinery/camera{ - c_tag = "Prison Hallway Port"; - network = list("ss13","prison") - }, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel, -/area/security/prison) -"aeQ" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel, -/area/security/prison) -"aeR" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel, -/area/security/prison) -"aeS" = ( -/obj/machinery/button/door{ - id = "permacell2"; - name = "Cell 2 Lockdown"; - pixel_x = -4; - pixel_y = 25; - req_access_txt = "2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/button/flasher{ - id = "PCell 2"; - pixel_x = 6; - pixel_y = 24 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel, -/area/security/prison) -"aeT" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/computer/security/telescreen{ - desc = "Used for watching Prison Wing holding areas."; - name = "Prison Monitor"; - network = list("prison"); - pixel_y = 30 - }, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel, -/area/security/prison) -"aeU" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel, -/area/security/prison) -"aeV" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel, -/area/security/prison) -"aeW" = ( -/obj/machinery/button/door{ - id = "permacell1"; - name = "Cell 1 Lockdown"; - pixel_x = -4; - pixel_y = 25; - req_access_txt = "2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/button/flasher{ - id = "PCell 1"; - pixel_x = 6; - pixel_y = 24 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel, -/area/security/prison) -"aeY" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel, -/area/security/prison) -"aeZ" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/structure/sign/warning/pods{ - pixel_y = 30 - }, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel, -/area/security/prison) -"afa" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/button/flasher{ - id = "insaneflash"; - pixel_y = 26 - }, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel, -/area/security/prison) -"afb" = ( -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel, -/area/security/prison) -"afc" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/turf/open/floor/plating, -/area/security/prison) -"afd" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/item/kirbyplants{ - icon_state = "plant-16" - }, -/obj/structure/sign/warning/securearea{ - desc = "A warning sign which reads 'WARNING: Criminally Insane Inmates', describing the possible hazards of those contained within."; - name = "WARNING: Criminally Insane Inmates"; - pixel_y = 32 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/security/prison) -"aff" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/obj/item/storage/secure/safe{ - name = "armory safe A"; - pixel_x = 6; - pixel_y = 28 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"afg" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"afh" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"afp" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/security/range) -"afq" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/range) -"afr" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/security/range) -"afD" = ( -/turf/open/floor/engine{ - name = "Holodeck Projector Floor" - }, -/area/holodeck/rec_center) -"afE" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock/external{ - name = "Solar Maintenance"; - req_access_txt = "10; 13" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/solars/port/fore) -"afF" = ( -/obj/item/kirbyplants{ - icon_state = "applebush" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"afG" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"afH" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"afI" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"afJ" = ( -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/newscaster/security_unit{ - pixel_y = -30 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"afK" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"afL" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"afM" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"afN" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet{ - pixel_y = -30 - }, -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"afO" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -30 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"afP" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"afQ" = ( -/obj/machinery/door/airlock/external{ - name = "Solar Maintenance"; - req_access_txt = "10; 13" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/fore) -"afR" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"afS" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"afT" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/obj/machinery/light, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"afU" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"afV" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"afW" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow, -/turf/open/floor/plating, -/area/security/prison) -"afX" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/item/storage/secure/safe{ - name = "armory safe B"; - pixel_x = 6; - pixel_y = 28 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"afY" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"afZ" = ( -/obj/machinery/camera{ - c_tag = "Arrivals - Lounge"; - dir = 4 - }, -/obj/structure/chair/comfy{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/hallway/primary/port) -"aga" = ( -/obj/effect/turf_decal/tile/neutral{ - 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/bot/secbot{ - arrest_type = 1; - health = 45; - icon_state = "secbot1"; - idcheck = 1; - name = "Sergeant-at-Armsky"; - weaponscheck = 1 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"agb" = ( -/obj/structure/rack, -/obj/item/gun/energy/e_gun/advtaser, -/obj/item/gun/energy/e_gun/advtaser{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/item/gun/energy/e_gun/advtaser, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/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/security/armory) -"agc" = ( -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"agd" = ( -/obj/structure/rack, -/obj/item/gun/energy/laser{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/gun/energy/laser, -/obj/item/gun/energy/laser{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/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/security/armory) -"agn" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/range) -"ago" = ( -/obj/structure/target_stake, -/obj/item/target/syndicate, -/turf/open/floor/plasteel, -/area/security/range) -"agp" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/range) -"agq" = ( -/turf/closed/wall, -/area/maintenance/fore) -"agA" = ( -/turf/closed/wall/r_wall, -/area/maintenance/solars/port/fore) -"agB" = ( -/obj/machinery/power/solar_control{ - id = "foreport"; - name = "Port Bow Solar Control" - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/turf/open/floor/plating, -/area/maintenance/solars/port/fore) -"agC" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/solars/port/fore) -"agD" = ( -/obj/structure/sign/warning/vacuum/external{ - pixel_x = 32 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, -/area/maintenance/solars/port/fore) -"agE" = ( -/obj/structure/table, -/obj/item/folder/red{ - pixel_x = 3 - }, -/obj/item/folder/white{ - pixel_x = -4; - pixel_y = 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/security/prison) -"agF" = ( -/obj/structure/rack, -/obj/item/restraints/handcuffs, -/obj/item/assembly/flash/handheld, -/obj/structure/cable/yellow{ - 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/security/prison) -"agG" = ( -/obj/structure/table, -/obj/item/storage/box/bodybags{ - pixel_x = 4; - pixel_y = 2 - }, -/obj/item/pen, -/obj/item/storage/box/prisoner, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/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) -"agH" = ( -/obj/structure/closet/secure_closet/brig, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/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) -"agI" = ( -/obj/structure/closet/secure_closet/brig, -/obj/structure/cable/yellow{ - 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/security/prison) -"agJ" = ( -/obj/structure/sign/warning/securearea, -/turf/closed/wall, -/area/security/prison) -"agK" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock/security/glass{ - name = "Prison Wing"; - req_access_txt = "1" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/turf/open/floor/plasteel, -/area/security/prison) -"agL" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/security/prison) -"agM" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/airlock/security/glass{ - name = "Prison Wing"; - req_access_txt = "1" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/turf/open/floor/plasteel, -/area/security/prison) -"agN" = ( -/obj/structure/sign/warning/securearea{ - desc = "A warning sign which reads 'WARNING: Dangerous Inmates'."; - name = "\improper WARNING: Dangerous Inmates" - }, -/turf/closed/wall, -/area/security/prison) -"agO" = ( -/obj/structure/table, -/obj/machinery/recharger{ - pixel_y = 4 - }, -/obj/structure/reagent_dispensers/peppertank{ - 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/security/prison) -"agP" = ( -/obj/structure/table, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/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) -"agQ" = ( -/obj/machinery/holopad{ - pixel_y = -15 - }, -/turf/open/floor/carpet, -/area/hallway/primary/port) -"agR" = ( -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -22 - }, -/obj/structure/rack, -/obj/item/gun/energy/e_gun/dragnet, -/obj/item/gun/energy/e_gun/dragnet, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/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/security/armory) -"agT" = ( -/obj/structure/rack, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/item/storage/box/rubbershot, -/obj/item/storage/box/rubbershot, -/obj/item/storage/box/rubbershot, -/obj/item/storage/box/rubbershot, -/obj/item/gun/ballistic/shotgun/riot{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/gun/ballistic/shotgun/riot, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/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/security/armory) -"agU" = ( -/obj/structure/rack, -/obj/item/gun/energy/e_gun{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/gun/energy/e_gun{ - pixel_x = 3; - 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 - }, -/obj/item/gun/energy/e_gun, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"ahc" = ( -/turf/open/floor/plasteel, -/area/security/range) -"ahd" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating, -/area/maintenance/fore) -"ahe" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating, -/area/maintenance/fore) -"ahp" = ( -/turf/closed/wall, -/area/maintenance/disposal) -"ahq" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/disposal) -"ahr" = ( -/obj/structure/chair/stool{ - pixel_y = 8 - }, -/obj/machinery/camera/autoname{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/solars/port/fore) -"ahs" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/plating, -/area/maintenance/solars/port/fore) -"aht" = ( -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/power/terminal, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_x = 29 - }, -/turf/open/floor/plating, -/area/maintenance/solars/port/fore) -"ahu" = ( -/obj/machinery/suit_storage_unit/security, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/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/brig) -"ahv" = ( -/obj/structure/tank_dispenser/oxygen, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/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/brig) -"ahw" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, -/obj/machinery/suit_storage_unit/security, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/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/brig) -"ahx" = ( -/turf/closed/wall, -/area/security/brig) -"ahy" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/door/poddoor/preopen{ - id = "Prison Gate"; - name = "Security Blast Door" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/security/brig) -"ahz" = ( -/obj/machinery/door/poddoor/preopen{ - id = "Prison Gate"; - name = "Security Blast Door" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/security/brig) -"ahA" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/poddoor/preopen{ - id = "Prison Gate"; - name = "Security Blast Door" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/security/brig) -"ahB" = ( -/turf/closed/wall, -/area/security/warden) -"ahC" = ( -/obj/structure/rack, -/obj/item/clothing/suit/armor/riot, -/obj/item/clothing/suit/armor/riot, -/obj/item/clothing/head/helmet/riot, -/obj/item/clothing/head/helmet/riot, -/obj/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 - }, -/obj/item/shield/riot, -/obj/item/shield/riot, -/obj/item/shield/riot, -/obj/item/clothing/head/helmet/riot, -/obj/item/clothing/suit/armor/riot, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"ahD" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"ahE" = ( -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/structure/rack, -/obj/item/storage/box/flashes{ - pixel_x = 3 - }, -/obj/item/storage/box/teargas{ - pixel_x = 1; - pixel_y = -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/ai_monitored/security/armory) -"ahF" = ( -/obj/machinery/power/apc/highcap/five_k{ - areastring = "/area/ai_monitored/security/armory"; - name = "Armory APC"; - pixel_x = 1; - pixel_y = -24 - }, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/machinery/light, -/obj/machinery/camera/motion{ - c_tag = "Armory - Internal"; - 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/ai_monitored/security/armory) -"ahG" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - 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/ai_monitored/security/armory) -"ahH" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/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/security/armory) -"ahI" = ( -/obj/machinery/button/door{ - id = "armory"; - name = "Armory Shutters"; - pixel_x = 28; - req_access_txt = "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 - }, -/obj/structure/rack, -/obj/item/storage/fancy/donut_box, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"ahP" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security{ - name = "Armory"; - req_access_txt = "3" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/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/ai_monitored/security/armory) -"ahQ" = ( -/obj/item/clothing/head/festive, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/turf/open/floor/plating, -/area/maintenance/fore) -"ahR" = ( -/obj/item/cigbutt, -/turf/open/floor/plating, -/area/maintenance/fore) -"ahS" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/fore) -"ahT" = ( -/turf/open/floor/carpet, -/area/hallway/primary/port) -"ahU" = ( -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/structure/table, -/obj/item/stock_parts/manipulator, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/fore) -"aif" = ( -/obj/machinery/door/poddoor{ - id = "trash"; - name = "disposal bay door" - }, -/obj/structure/fans/tiny, -/turf/open/floor/plating, -/area/maintenance/disposal) -"aig" = ( -/obj/machinery/mass_driver{ - dir = 8; - id = "trash" - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"aih" = ( -/obj/machinery/conveyor_switch/oneway{ - dir = 8; - id = "garbage"; - name = "disposal conveyor" - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"aii" = ( -/obj/structure/easel, -/turf/open/floor/plating, -/area/maintenance/disposal) -"aij" = ( -/obj/item/vending_refill/coffee, -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, -/area/maintenance/disposal) -"aik" = ( -/obj/structure/closet, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 3; - name = "3maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"ail" = ( -/obj/machinery/power/apc{ - areastring = "/area/maintenance/solars/port/fore"; - dir = 8; - name = "Port Bow Solar APC"; - pixel_x = -25; - pixel_y = 3 - }, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/solars/port/fore) -"aim" = ( -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/maintenance/solars/port/fore) -"ain" = ( -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/machinery/power/smes, -/turf/open/floor/plating, -/area/maintenance/solars/port/fore) -"aio" = ( -/turf/closed/wall/r_wall, -/area/maintenance/port/fore) -"aip" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aiq" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/turf/open/floor/plating, -/area/security/brig) -"air" = ( -/obj/structure/cable/yellow{ - 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/security/brig) -"ais" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/light/small, -/obj/machinery/camera{ - c_tag = "Security - EVA Storage"; - 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/security/brig) -"ait" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Security E.V.A. Storage"; - req_access_txt = "1" - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/security/brig) -"aiu" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"aiv" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"aiw" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/button/door{ - id = "Prison Gate"; - name = "Prison Wing Lockdown"; - pixel_x = 26; - req_access_txt = "2" - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"aix" = ( -/obj/structure/closet{ - name = "Evidence Closet 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/security/warden) -"aiy" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/landmark/blobstart, -/obj/machinery/camera{ - c_tag = "Evidence Storage" - }, -/obj/item/storage/secure/safe{ - name = "evidence safe"; - pixel_x = 6; - 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/security/warden) -"aiz" = ( -/obj/structure/closet/secure_closet/evidence, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/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) -"aiA" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow, -/turf/open/floor/plating, -/area/ai_monitored/security/armory) -"aiB" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/security/warden) -"aiC" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/ai_monitored/security/armory) -"aiJ" = ( -/turf/closed/wall/r_wall, -/area/security/range) -"aiK" = ( -/obj/structure/window/reinforced, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/security/range) -"aiL" = ( -/obj/machinery/door/window/westleft{ - base_state = "right"; - dir = 2; - icon_state = "right"; - name = "Shooting Range" - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/security/range) -"aiM" = ( -/obj/structure/window/reinforced, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/security/range) -"aiO" = ( -/obj/structure/chair/stool{ - pixel_y = 8 - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"aiP" = ( -/obj/structure/table, -/obj/item/folder, -/turf/open/floor/plating, -/area/maintenance/fore) -"aiT" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/gear_painter, -/turf/open/floor/plasteel/white/corner, -/area/hallway/secondary/entry) -"aiW" = ( -/obj/structure/chair/comfy{ - dir = 8 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/hallway/primary/port) -"ajc" = ( -/obj/machinery/conveyor{ - dir = 1; - id = "garbage" - }, -/obj/machinery/door/poddoor/preopen{ - id = "Disposal Exit"; - name = "disposal exit vent" - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"ajd" = ( -/obj/machinery/button/door{ - id = "Disposal Exit"; - name = "Disposal Vent Control"; - pixel_x = -25; - pixel_y = 4; - req_access_txt = "12" - }, -/obj/machinery/button/massdriver{ - id = "trash"; - pixel_x = -26; - pixel_y = -6 - }, -/obj/structure/chair/stool, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"aje" = ( -/turf/open/floor/plating, -/area/maintenance/fore) -"ajf" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plating, -/area/maintenance/disposal) -"ajg" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, -/area/maintenance/disposal) -"ajh" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/airlock/engineering{ - name = "Port Bow Solar Access"; - req_access_txt = "10" - }, -/turf/open/floor/plating, -/area/maintenance/solars/port/fore) -"aji" = ( -/obj/structure/sign/warning/electricshock, -/turf/closed/wall, -/area/maintenance/solars/port/fore) -"ajj" = ( -/obj/structure/table, -/obj/item/stack/medical/mesh{ - pixel_x = 3; - pixel_y = -2 - }, -/obj/item/stack/medical/suture{ - pixel_x = -3; - pixel_y = 2 - }, -/obj/item/reagent_containers/syringe/epinephrine, -/obj/item/storage/secure/safe{ - pixel_x = 6; - pixel_y = 28 - }, -/obj/item/restraints/handcuffs/cable/pink, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"ajk" = ( -/obj/structure/table/wood, -/obj/item/flashlight/lamp/green{ - pixel_y = 3 - }, -/turf/open/floor/plasteel/grimy, -/area/hallway/primary/port) -"ajl" = ( -/obj/item/soap/deluxe, -/obj/item/storage/secure/safe{ - pixel_x = 6; - pixel_y = 28 - }, -/obj/item/kitchen/rollingpin, -/obj/structure/closet/crate, -/obj/item/clothing/suit/xenos, -/obj/item/clothing/suit/monkeysuit, -/obj/item/clothing/head/xenos, -/obj/item/clothing/mask/gas/monkeymask, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"ajm" = ( -/turf/closed/wall/r_wall, -/area/security/brig) -"ajn" = ( -/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/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"ajo" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/security/brig) -"ajp" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/airlock/security/glass{ - name = "Prison Wing"; - req_access_txt = "1" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"ajq" = ( -/obj/structure/closet{ - name = "Evidence Closet 2" - }, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/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) -"ajr" = ( -/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/security/warden) -"ajs" = ( -/obj/item/kirbyplants{ - icon_state = "plant-08" - }, -/turf/open/floor/plasteel/grimy, -/area/hallway/primary/port) -"ajt" = ( -/obj/structure/closet{ - name = "Evidence Closet 5" - }, -/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/security/warden) -"aju" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"ajv" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/security/warden) -"ajw" = ( -/obj/structure/closet/bombcloset/security, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/security/warden) -"ajx" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/turf/open/floor/plating, -/area/security/warden) -"ajy" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = 30 - }, -/obj/structure/closet/secure_closet/security/sec, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"ajz" = ( -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"ajA" = ( -/obj/structure/closet/secure_closet/security/sec, -/obj/machinery/airalarm{ - pixel_y = 28 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"ajL" = ( -/obj/structure/table, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/magnetic_controller{ - autolink = 1; - pixel_y = 3 - }, -/obj/item/clothing/ears/earmuffs, -/obj/item/clothing/glasses/sunglasses{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/security/range) -"ajM" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel, -/area/security/range) -"ajN" = ( -/obj/structure/table, -/obj/machinery/recharger{ - pixel_y = 4 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/range) -"ajO" = ( -/obj/structure/closet, -/obj/item/clothing/gloves/color/fyellow, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"ajP" = ( -/obj/item/toy/beach_ball/holoball, -/turf/open/floor/plating, -/area/maintenance/fore) -"ajQ" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"akd" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/fore) -"ake" = ( -/turf/open/space, -/area/space) -"akf" = ( -/obj/machinery/conveyor{ - dir = 1; - id = "garbage" - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"akg" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel, -/area/security/brig) -"akh" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/maintenance/disposal) -"aki" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/maintenance/disposal) -"akj" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/maintenance/disposal) -"akk" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"akl" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Disposal Access"; - req_access_txt = "12" - }, -/obj/structure/cable/yellow{ - 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) -"akm" = ( -/obj/structure/cable/yellow{ - 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 = 8 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"akn" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"ako" = ( -/obj/structure/grille, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"akp" = ( -/obj/structure/rack, -/obj/item/clothing/gloves/color/yellow, -/obj/item/mop, -/obj/item/bikehorn/rubberducky, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/obj/item/grenade/empgrenade, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"akq" = ( -/obj/item/vending_refill/cola, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"akr" = ( -/obj/item/vending_refill/snack, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aks" = ( -/obj/structure/rack, -/obj/item/clothing/neck/tie/red{ - pixel_x = -5; - pixel_y = 3 - }, -/obj/item/clothing/neck/tie/horrible, -/obj/item/clothing/neck/tie/blue{ - pixel_x = 5; - pixel_y = -2 - }, -/obj/item/dice/d8, -/obj/item/healthanalyzer, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"akt" = ( -/obj/structure/table, -/obj/item/clothing/gloves/color/latex, -/obj/item/clothing/mask/surgical, -/obj/item/reagent_containers/spray/cleaner, -/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) -"aku" = ( -/obj/structure/table, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = 26 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/item/folder/red{ - pixel_x = 3 - }, -/obj/item/folder/white{ - pixel_x = -4; - pixel_y = 2 - }, -/obj/item/healthanalyzer, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/security/brig) -"akv" = ( -/obj/structure/table, -/obj/machinery/airalarm{ - pixel_y = 28 - }, -/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) -"akw" = ( -/obj/structure/table, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/pen, -/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) -"akx" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-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, -/area/security/brig) -"aky" = ( -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"akz" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/sign/warning/pods{ - 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 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"akA" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - 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/security/warden) -"akB" = ( -/obj/structure/closet{ - name = "Evidence Closet 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/security/warden) -"akC" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -27 - }, -/obj/machinery/camera{ - c_tag = "Security - Secure Gear Storage"; - dir = 4 - }, -/obj/machinery/flasher/portable, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/security/warden) -"akD" = ( -/obj/machinery/flasher/portable, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/security/warden) -"akE" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/security/warden) -"akF" = ( -/obj/structure/closet/l3closet/security, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/security/warden) -"akG" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/obj/structure/cable/yellow, -/turf/open/floor/plating, -/area/security/warden) -"akH" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/obj/structure/closet/secure_closet/security/sec, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"akI" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"akJ" = ( -/obj/structure/closet/secure_closet/security/sec, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"akK" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/security/warden) -"akW" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/security/range) -"akX" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/landmark/start/security_officer, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/range) -"akY" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/range) -"akZ" = ( -/obj/structure/rack, -/obj/item/gun/energy/laser/practice{ - pixel_x = 2; - pixel_y = -2 - }, -/obj/item/gun/energy/laser/practice{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/obj/machinery/camera{ - c_tag = "Firing Range"; - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/range) -"ala" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plating, -/area/maintenance/fore) -"alb" = ( -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/fore) -"alc" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/plating, -/area/maintenance/fore) -"ald" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"ale" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"alq" = ( -/turf/closed/wall, -/area/maintenance/starboard) -"alr" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/starboard) -"alv" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/fore) -"alw" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/fore) -"alx" = ( -/obj/machinery/conveyor{ - dir = 1; - id = "garbage" - }, -/obj/structure/sign/warning/vacuum{ - pixel_x = -32 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"aly" = ( -/obj/machinery/disposal/deliveryChute{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/window{ - base_state = "right"; - dir = 4; - icon_state = "right"; - layer = 3 - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"alz" = ( -/obj/machinery/conveyor{ - dir = 8; - id = "garbage" - }, -/obj/machinery/door/window/eastright{ - base_state = "left"; - dir = 1; - icon_state = "left"; - name = "Danger: Conveyor Access"; - req_access_txt = "12" - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"alA" = ( -/obj/machinery/mineral/stacking_machine{ - input_dir = 2 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"alB" = ( -/obj/machinery/mineral/stacking_unit_console{ - machinedir = 8; - pixel_x = 32 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"alC" = ( -/obj/structure/grille, -/turf/open/floor/plating, -/area/maintenance/port) -"alD" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"alE" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"alF" = ( -/obj/machinery/door/airlock/maintenance/abandoned{ - name = "Secure Storage Room"; - req_access_txt = "65" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"alG" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"alH" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/item/bot_assembly/cleanbot, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"alI" = ( -/obj/item/grown/log, -/obj/effect/landmark/blobstart, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"alJ" = ( -/obj/structure/light_construct/small{ - dir = 4 - }, -/obj/structure/rack, -/obj/item/storage/secure/briefcase, -/obj/item/disk/data, -/obj/item/grenade/flashbang, -/obj/effect/spawner/lootdrop/maintenance, -/obj/item/grenade/smokebomb, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"alK" = ( -/turf/closed/wall, -/area/maintenance/port) -"alL" = ( -/obj/machinery/portable_atmospherics/canister/nitrous_oxide, -/turf/open/floor/plasteel/dark, -/area/maintenance/port/fore) -"alM" = ( -/obj/structure/table, -/obj/item/storage/firstaid/regular, -/obj/item/reagent_containers/glass/bottle/epinephrine, -/obj/item/reagent_containers/glass/bottle/charcoal, -/obj/item/reagent_containers/syringe, -/obj/structure/extinguisher_cabinet{ - pixel_x = -27 - }, -/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) -"alN" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/security/brig) -"alO" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/security/brig) -"alP" = ( -/obj/machinery/door/window/westleft{ - dir = 4; - name = "Infirmary" - }, -/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/white, -/area/security/brig) -"alQ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"alR" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security{ - name = "Evidence Storage"; - req_one_access_txt = "1;4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - 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/security/warden) -"alS" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"alT" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/structure/cable/yellow{ - 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/security/warden) -"alU" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/security/warden) -"alV" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/airlock/security{ - name = "Evidence Storage"; - req_access_txt = "3" - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/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/security/warden) -"alW" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel, -/area/security/warden) -"alX" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/machinery/door/airlock/security/glass{ - name = "Gear Room"; - req_one_access_txt = "1;4" - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/delivery, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/warden) -"alZ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/security/warden) -"ama" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Secure Gear Storage"; - req_access_txt = "3" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/delivery, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/warden) -"amb" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"amc" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"ame" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"amp" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Firing Range"; - req_one_access_txt = "1;4" - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/range) -"amq" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - 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, -/area/security/range) -"amr" = ( -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/range) -"ams" = ( -/obj/item/target, -/obj/item/target, -/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/structure/closet/crate/secure{ - desc = "A secure crate containing various materials for building a customised test-site."; - name = "Firing Range Gear Crate"; - req_access_txt = "1" - }, -/obj/machinery/power/apc{ - areastring = "/area/security/range"; - dir = 4; - name = "Shooting Range APC"; - pixel_x = 24 - }, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/range) -"amt" = ( -/obj/structure/rack, -/obj/item/storage/box/lights/mixed, -/obj/effect/landmark/blobstart, -/turf/open/floor/plating, -/area/maintenance/fore) -"amu" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/maintenance/fore) -"amv" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"amB" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/maintenance/port) -"amH" = ( -/obj/machinery/door/airlock/external{ - req_one_access_txt = "13,8" - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"amO" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/conveyor{ - dir = 9; - id = "garbage" - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"amP" = ( -/obj/machinery/conveyor{ - dir = 8; - id = "garbage" - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"amQ" = ( -/obj/machinery/door/window/eastright{ - base_state = "left"; - icon_state = "left"; - name = "Danger: Conveyor Access"; - req_access_txt = "12" - }, -/obj/machinery/conveyor/inverted{ - dir = 6; - id = "garbage" - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"amR" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"amS" = ( -/obj/effect/landmark/xeno_spawn, -/obj/item/storage/box/lights/mixed, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"amT" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"amU" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, -/area/maintenance/port) -"amW" = ( -/obj/structure/table/reinforced, -/obj/item/folder, -/obj/item/folder, -/obj/machinery/door/window/westleft{ - base_state = "right"; - dir = 2; - icon_state = "right" - }, -/obj/item/book/manual/wiki/engineering_hacking, -/obj/item/tape/random, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"amX" = ( -/obj/structure/table/reinforced, -/obj/structure/window/reinforced, -/obj/item/stock_parts/cell/crap, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"amY" = ( -/obj/structure/table/reinforced, -/obj/structure/window/reinforced, -/obj/item/electronics/firealarm, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"amZ" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plating, -/area/maintenance/port) -"ana" = ( -/obj/structure/rack, -/obj/item/clothing/under/misc/mailman, -/obj/item/clothing/under/misc/vice_officer{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"anb" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"anc" = ( -/obj/machinery/door/airlock/security/glass{ - name = "N2O Storage"; - req_access_txt = "3" - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/port/fore) -"and" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/bodycontainer/morgue, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"ane" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/security/brig) -"anf" = ( -/obj/structure/bed/roller, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/white, -/area/security/brig) -"ang" = ( -/obj/machinery/door/window/westleft{ - base_state = "right"; - dir = 4; - icon_state = "right"; - name = "Infirmary" - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/security/brig) -"anh" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"ani" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"anj" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"ank" = ( -/obj/structure/table, -/obj/item/storage/box/evidence, -/obj/item/storage/box/evidence, -/obj/item/storage/box/evidence, -/obj/item/hand_labeler, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/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) -"anl" = ( -/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/dark, -/area/security/warden) -"anm" = ( -/obj/structure/filingcabinet/security{ - pixel_x = 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/security/warden) -"ann" = ( -/obj/structure/rack, -/obj/item/storage/box/chemimp{ - pixel_x = 4; - pixel_y = 3 - }, -/obj/item/storage/box/trackimp, -/obj/item/storage/lockbox/loyalty, -/obj/item/reagent_containers/glass/bottle/morphine, -/obj/machinery/light/small, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -26 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/security/warden) -"ano" = ( -/obj/structure/rack, -/obj/item/storage/box/handcuffs, -/obj/item/storage/box/flashbangs{ - pixel_x = -2; - pixel_y = -2 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/security/warden) -"anp" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/security/warden) -"anq" = ( -/obj/structure/rack, -/obj/item/storage/box/firingpins{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/box/firingpins, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/security/warden) -"anr" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow, -/turf/open/floor/plating, -/area/security/warden) -"ans" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"ant" = ( -/obj/structure/table, -/obj/machinery/recharger{ - pixel_y = 4 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"anu" = ( -/obj/machinery/vending/security, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 28 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"anD" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Security Maintenance"; - req_one_access_txt = "1;4" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/fore) -"anE" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/airlock/maintenance/abandoned{ - name = "Storage Room"; - req_access_txt = "12" - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"anM" = ( -/obj/machinery/space_heater, -/turf/open/floor/plating, -/area/maintenance/starboard) -"anN" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"anS" = ( -/turf/open/floor/plating/airless, -/area/space/nearstation) -"anT" = ( -/obj/structure/lattice, -/obj/structure/grille, -/turf/open/space, -/area/space/nearstation) -"anU" = ( -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/structure/disposaloutlet{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"anV" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "garbage" - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"anW" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "garbage" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plating, -/area/maintenance/disposal) -"anX" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "garbage" - }, -/obj/machinery/recycler, -/turf/open/floor/plating, -/area/maintenance/disposal) -"anY" = ( -/obj/machinery/door/window/eastright{ - name = "Danger: Conveyor Access"; - req_access_txt = "12" - }, -/obj/machinery/conveyor/inverted{ - dir = 10; - id = "garbage" - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"anZ" = ( -/obj/effect/decal/cleanable/oil, -/obj/machinery/light_switch{ - pixel_x = 25 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"aoa" = ( -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/port) -"aob" = ( -/turf/open/floor/plating, -/area/maintenance/port) -"aoc" = ( -/obj/structure/chair{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aod" = ( -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"aoe" = ( -/obj/machinery/space_heater, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/plating, -/area/maintenance/port) -"aof" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/plating, -/area/maintenance/port) -"aog" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/port/fore) -"aoh" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aoi" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/canister/air, -/obj/item/tank/internals/air, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aoj" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aok" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aol" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aom" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/maintenance{ - name = "Brig Infirmary Maintenance"; - req_access_txt = "63" - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aon" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"aoo" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-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/white, -/area/security/brig) -"aop" = ( -/obj/structure/bed, -/obj/item/bedsheet, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/iv_drip, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/security/brig) -"aoq" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/rack, -/obj/item/storage/firstaid/regular, -/obj/item/healthanalyzer{ - pixel_y = -2 - }, -/obj/machinery/camera{ - c_tag = "Brig - Infirmary"; - dir = 1 - }, -/obj/item/clothing/under/rank/medical/doctor/purple{ - pixel_y = -4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-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/white, -/area/security/brig) -"aor" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"aos" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel, -/area/security/brig) -"aot" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 28 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"aou" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/airlock/security{ - name = "Evidence Storage"; - req_access_txt = "3" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/security/warden) -"aow" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock/security/glass{ - name = "Secure Gear Storage"; - req_access_txt = "3" - }, -/obj/effect/turf_decal/delivery, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/warden) -"aox" = ( -/obj/structure/grille, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/port/fore) -"aoy" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 28 - }, -/obj/structure/closet/secure_closet/warden, -/obj/item/gun/energy/laser, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"aoz" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/closet/secure_closet/security/sec, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"aoA" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/security/warden) -"aoL" = ( -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"aoM" = ( -/obj/structure/cable/yellow{ - 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/fore) -"aoN" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, -/area/maintenance/fore) -"aoO" = ( -/obj/machinery/power/apc{ - areastring = "/area/maintenance/disposal"; - name = "Disposal APC"; - pixel_y = -24 - }, -/obj/structure/cable/yellow, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"aoP" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"aoQ" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"aoR" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, -/area/maintenance/fore) -"aoS" = ( -/obj/machinery/door/airlock/maintenance{ - req_one_access_txt = "1;4;38;12" - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"apb" = ( -/obj/structure/grille, -/turf/open/floor/plating, -/area/maintenance/starboard) -"apc" = ( -/turf/open/floor/plating, -/area/maintenance/starboard) -"apd" = ( -/obj/structure/table, -/obj/item/tank/internals/emergency_oxygen{ - pixel_x = -8 - }, -/obj/item/tank/internals/emergency_oxygen{ - pixel_x = -8 - }, -/obj/item/clothing/mask/breath{ - pixel_x = 4 - }, -/obj/item/clothing/mask/breath{ - pixel_x = 4 - }, -/obj/effect/decal/cleanable/cobweb, -/obj/structure/sign/warning/vacuum/external{ - pixel_y = 32 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"ape" = ( -/obj/structure/rack, -/obj/item/storage/belt{ - desc = "Can hold quite a lot of stuff."; - name = "multi-belt" - }, -/obj/item/clothing/gloves/color/fyellow, -/obj/effect/spawner/lootdrop/maintenance, -/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 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"apf" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/starboard) -"apg" = ( -/obj/structure/closet, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/item/reagent_containers/food/drinks/beer{ - desc = "Takes you to a whole new level of thinking."; - name = "Meta-Cider" - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"apm" = ( -/turf/closed/wall, -/area/maintenance/solars/starboard/fore) -"apn" = ( -/obj/machinery/power/solar_control{ - id = "forestarboard"; - name = "Starboard Bow Solar Control" - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/fore) -"apo" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/fore) -"app" = ( -/obj/structure/sign/warning/vacuum/external{ - pixel_x = 32 - }, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/fore) -"apq" = ( -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"apr" = ( -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=1"; - freq = 1400; - location = "Disposals" - }, -/obj/structure/plasticflaps, -/obj/machinery/door/window/northright{ - dir = 2; - name = "delivery door"; - req_access_txt = "31" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/conveyor{ - dir = 1; - id = "garbage" - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"aps" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Disposal Conveyor Access"; - req_access_txt = "12" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/disposal) -"apt" = ( -/obj/structure/sign/warning/securearea{ - name = "\improper STAY CLEAR HEAVY MACHINERY" - }, -/turf/closed/wall, -/area/maintenance/disposal) -"apu" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"apv" = ( -/obj/machinery/door/airlock/maintenance/abandoned{ - name = "Storage Room"; - req_access_txt = "12" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"apw" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"apy" = ( -/obj/structure/light_construct/small{ - dir = 4 - }, -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"apz" = ( -/obj/item/cigbutt, -/turf/open/floor/plating, -/area/maintenance/port) -"apA" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/sign/plaques/kiddie/library{ - pixel_y = -32 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"apB" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"apC" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"apD" = ( -/obj/item/storage/box/lights/mixed, -/obj/item/flashlight{ - pixel_x = 1; - pixel_y = 5 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"apE" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/extinguisher_cabinet{ - pixel_x = -27 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"apF" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/security/brig) -"apG" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"apH" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/turf/open/floor/plating, -/area/security/warden) -"apI" = ( -/obj/machinery/computer/prisoner/management{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"apJ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"apK" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/photocopier{ - pixel_y = 3 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"apL" = ( -/obj/machinery/requests_console{ - department = "Security"; - departmentType = 5; - pixel_y = 30 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/camera{ - c_tag = "Warden's Office" - }, -/obj/structure/rack, -/obj/item/storage/toolbox/mechanical{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/storage/toolbox/emergency{ - pixel_x = 2; - pixel_y = -3 - }, -/obj/item/wirecutters{ - pixel_y = 2 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"apM" = ( -/obj/structure/table, -/obj/machinery/recharger, -/obj/machinery/airalarm{ - pixel_y = 28 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"apN" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"apO" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"apQ" = ( -/obj/structure/reagent_dispensers/peppertank{ - pixel_x = 32 - }, -/obj/machinery/camera{ - c_tag = "Security - Gear Room"; - dir = 8 - }, -/obj/machinery/vending/wardrobe/sec_wardrobe, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"aqb" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/fore) -"aqq" = ( -/obj/item/cigbutt, -/turf/open/floor/plating, -/area/maintenance/starboard) -"aqr" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, -/area/maintenance/starboard) -"aqs" = ( -/obj/item/mmi{ - name = "man-machine interface" - }, -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"aqy" = ( -/obj/structure/chair/stool{ - pixel_y = 8 - }, -/obj/machinery/camera/autoname{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/fore) -"aqz" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/fore) -"aqA" = ( -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/power/terminal, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_x = 29 - }, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/fore) -"aqB" = ( -/obj/structure/lattice, -/obj/structure/grille/broken, -/turf/open/space, -/area/space/nearstation) -"aqC" = ( -/obj/machinery/space_heater, -/obj/structure/sign/warning/vacuum/external{ - pixel_y = 32 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aqD" = ( -/obj/machinery/space_heater, -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, -/area/maintenance/port/fore) -"aqE" = ( -/obj/machinery/door/poddoor/shutters{ - id = "supplybridge" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aqF" = ( -/obj/machinery/door/poddoor/shutters{ - id = "supplybridge" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aqG" = ( -/obj/machinery/door/poddoor/shutters{ - id = "supplybridge" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aqH" = ( -/obj/machinery/space_heater, -/obj/structure/sign/warning/vacuum/external{ - pixel_y = 32 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/port/fore) -"aqI" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aqJ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aqK" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating, -/area/maintenance/port) -"aqL" = ( -/obj/structure/rack, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/item/storage/toolbox/emergency, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aqM" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aqN" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aqO" = ( -/obj/machinery/space_heater, -/turf/open/floor/plating, -/area/maintenance/port) -"aqP" = ( -/obj/structure/light_construct/small, -/obj/item/bot_assembly/floorbot{ - build_step = 1 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aqQ" = ( -/obj/item/vending_refill/cigarette, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aqR" = ( -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/port/fore) -"aqS" = ( -/obj/structure/closet/crate, -/obj/item/clothing/gloves/color/fyellow, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aqT" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aqU" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aqV" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/item/extinguisher, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aqW" = ( -/obj/structure/closet/crate, -/obj/item/restraints/handcuffs, -/obj/item/bodybag, -/obj/item/radio, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 3; - name = "3maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aqX" = ( -/obj/structure/chair, -/obj/item/restraints/handcuffs, -/obj/effect/decal/remains/human, -/obj/item/clothing/under/costume/soviet, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aqY" = ( -/obj/machinery/computer/security/labor, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"aqZ" = ( -/obj/machinery/computer/shuttle/labor, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"ara" = ( -/obj/machinery/computer/secure_data{ - dir = 4 - }, -/obj/machinery/computer/security/telescreen{ - desc = "Used for watching Prison Wing holding areas."; - name = "Prison Monitor"; - network = list("prison"); - pixel_x = -30 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"arb" = ( -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"arc" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"ard" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"are" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"arf" = ( -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"arg" = ( -/obj/structure/chair/office/dark{ - dir = 4 - }, -/obj/effect/landmark/start/warden, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"ari" = ( -/obj/machinery/holopad, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"arj" = ( -/obj/structure/closet/secure_closet/security/sec, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"ark" = ( -/obj/machinery/newscaster/security_unit, -/turf/closed/wall, -/area/security/warden) -"ary" = ( -/obj/structure/rack, -/obj/item/clothing/suit/hazardvest, -/turf/open/floor/plating, -/area/maintenance/fore) -"arz" = ( -/obj/machinery/space_heater, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/fore) -"arA" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plating, -/area/maintenance/fore) -"arG" = ( -/obj/structure/closet, -/obj/item/storage/box/lights/mixed, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/starboard/fore) -"arH" = ( -/obj/structure/rack, -/obj/item/extinguisher, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"arI" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/costume, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"arJ" = ( -/obj/structure/rack, -/obj/item/clothing/suit/poncho, -/obj/item/clothing/head/sombrero, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"arK" = ( -/obj/effect/landmark/blobstart, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/starboard/fore) -"arL" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"arM" = ( -/obj/structure/rack, -/obj/item/book/manual/wiki/engineering_guide{ - pixel_x = 3; - pixel_y = 4 - }, -/obj/effect/spawner/lootdrop/maintenance, -/obj/item/storage/box/lights/mixed, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"arT" = ( -/obj/machinery/power/apc{ - areastring = "/area/maintenance/solars/starboard/fore"; - dir = 8; - name = "Starboard Bow Solar APC"; - pixel_x = -25; - pixel_y = 3 - }, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/solars/starboard/fore) -"arU" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/fore) -"arV" = ( -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/machinery/power/smes, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/fore) -"arW" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/obj/effect/landmark/xeno_spawn, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"arX" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/obj/machinery/light, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"arY" = ( -/obj/machinery/door/airlock/public/glass{ - name = "space-bridge access" - }, -/obj/machinery/button/door{ - id = "supplybridge"; - name = "Shuttle Bay Space Bridge Control"; - pixel_y = 27 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"arZ" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"asa" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/port) -"asb" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"asc" = ( -/obj/machinery/door/airlock/public/glass{ - name = "space-bridge access" - }, -/obj/machinery/button/door{ - id = "supplybridge"; - name = "Shuttle Bay Space Bridge Control"; - pixel_y = 27 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"asd" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/obj/machinery/light, -/obj/effect/landmark/xeno_spawn, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"ase" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"asf" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Cargo Bay Bridge Access" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"asg" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"ash" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/port/fore) -"asi" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"asj" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"ask" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"asl" = ( -/obj/machinery/door/airlock/maintenance/abandoned{ - name = "Storage Room"; - req_access_txt = "12" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"asm" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/airlock/maintenance{ - name = "Brig Maintenance"; - req_one_access_txt = "63;12" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"asn" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/camera{ - c_tag = "Labor Shuttle Control Desk"; - 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) -"aso" = ( -/obj/structure/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"asp" = ( -/obj/machinery/computer/security{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"asq" = ( -/obj/effect/landmark/start/warden, -/obj/structure/chair/office/dark, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"asr" = ( -/obj/machinery/computer/crew{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"ass" = ( -/obj/machinery/newscaster/security_unit{ - pixel_y = -30 - }, -/obj/item/folder/red, -/obj/item/folder/red, -/obj/structure/table, -/obj/item/book/manual/wiki/security_space_law{ - pixel_x = -3; - pixel_y = 5 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"ast" = ( -/obj/structure/table, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/pen, -/obj/structure/reagent_dispensers/peppertank{ - pixel_y = -32 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"asu" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/structure/filingcabinet/chestdrawer{ - pixel_y = 2 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"asv" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"asw" = ( -/obj/structure/table, -/obj/machinery/button/door{ - id = "Prison Gate"; - name = "Prison Wing Lockdown"; - pixel_y = 7; - req_access_txt = "2" - }, -/obj/machinery/button/door{ - id = "Secure Gate"; - name = "Cell Window Control"; - pixel_x = -5; - pixel_y = -3; - specialfunctions = 4 - }, -/obj/machinery/button/door{ - id = "briglockdown"; - name = "Brig Lockdown Control"; - pixel_x = 5; - pixel_y = -3 - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/item/radio/intercom{ - dir = 4; - name = "Station Intercom (General)"; - pixel_x = 29; - pixel_y = -28 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"asx" = ( -/obj/structure/table, -/obj/machinery/recharger{ - pixel_y = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"asz" = ( -/obj/structure/table, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/item/folder/red, -/obj/item/restraints/handcuffs, -/obj/item/clothing/head/cone{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/clothing/head/cone{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/clothing/head/cone{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/clothing/head/cone{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/clothing/head/cone{ - pixel_x = -4; - pixel_y = 4 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"asA" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/security/warden) -"asB" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"asP" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"asQ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance/abandoned{ - name = "Storage Room"; - req_access_txt = "12" - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"asR" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"asS" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"atd" = ( -/mob/living/simple_animal/opossum, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/starboard/fore) -"ate" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"atj" = ( -/obj/machinery/space_heater, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/starboard) -"atk" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/airlock/engineering{ - name = "Starboard Bow Solar Access"; - req_access_txt = "10" - }, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/fore) -"atl" = ( -/obj/structure/sign/warning/electricshock, -/turf/closed/wall, -/area/maintenance/solars/starboard/fore) -"atm" = ( -/turf/closed/wall/r_wall, -/area/maintenance/starboard) -"atn" = ( -/obj/machinery/door/airlock/external{ - req_access_txt = "13" - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"ato" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Cargo Bay Bridge Access" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"atp" = ( -/obj/machinery/door/poddoor/shutters{ - id = "supplybridge" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"atq" = ( -/obj/machinery/door/poddoor/shutters{ - id = "supplybridge" - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"atr" = ( -/obj/machinery/door/poddoor/shutters{ - id = "supplybridge" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"ats" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"att" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"atu" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"atv" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"atx" = ( -/obj/structure/cable/yellow{ - 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/port/fore) -"aty" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/sorting/mail{ - dir = 4; - sortType = 2 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"atz" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"atA" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"atB" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance{ - req_one_access_txt = "12;63" - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"atD" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/grille, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"atE" = ( -/obj/structure/cable/yellow{ - 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/port/fore) -"atG" = ( -/obj/structure/cable/yellow{ - 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/plating, -/area/maintenance/port/fore) -"atH" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"atI" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"atK" = ( -/obj/machinery/computer/prisoner/gulag_teleporter_computer{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"atL" = ( -/obj/machinery/gulag_teleporter, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"atM" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/security/brig) -"atN" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"atO" = ( -/obj/structure/sign/warning/pods, -/turf/closed/wall/r_wall, -/area/security/warden) -"atP" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"atQ" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/security/warden) -"atR" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Brig Control"; - req_access_txt = "3" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/security/warden) -"atS" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Gear Room"; - req_one_access_txt = "1;4" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/security/warden) -"aua" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/fore) -"aub" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"auc" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, -/area/maintenance/fore) -"auo" = ( -/obj/structure/mopbucket, -/obj/item/mop, -/obj/effect/landmark/blobstart, -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, -/area/maintenance/starboard/fore) -"aup" = ( -/obj/structure/closet/crate/hydroponics, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"auq" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"aur" = ( -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"aus" = ( -/obj/structure/closet, -/obj/item/stock_parts/matter_bin, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"aut" = ( -/obj/machinery/door/airlock/maintenance/abandoned{ - name = "Storage Room"; - req_access_txt = "12" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/starboard) -"aux" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"auy" = ( -/obj/item/stack/sheet/cardboard, -/obj/item/flashlight, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"auz" = ( -/obj/structure/rack, -/obj/item/clothing/mask/gas, -/obj/item/clothing/glasses/sunglasses, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"auA" = ( -/obj/structure/closet/crate/medical, -/obj/item/stack/cable_coil, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"auB" = ( -/obj/structure/closet/emcloset, -/obj/structure/sign/warning/vacuum/external{ - pixel_x = 32 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"auC" = ( -/obj/structure/closet/crate{ - icon_state = "crateopen" - }, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"auD" = ( -/obj/structure/closet/crate{ - icon_state = "crateopen" - }, -/obj/structure/sign/warning/vacuum/external{ - pixel_y = 32 - }, -/obj/effect/decal/cleanable/cobweb, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 3; - name = "3maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"auE" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"auF" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating, -/area/maintenance/port) -"auG" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/port/fore) -"auH" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"auI" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"auJ" = ( -/obj/structure/grille, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/window/reinforced/tinted/fulltile, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"auK" = ( -/obj/structure/disposalpipe/junction/flip{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"auL" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"auM" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/port/fore) -"auN" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"auO" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"auP" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"auU" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/sign/warning/vacuum/external{ - pixel_x = -32 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"auV" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/junction, -/turf/open/floor/plasteel, -/area/security/brig) -"auW" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"auY" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"auZ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"ava" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/westleft{ - base_state = "right"; - dir = 2; - icon_state = "right"; - name = "Reception Window" - }, -/obj/machinery/door/window/brigdoor{ - dir = 1; - name = "Brig Control Desk"; - req_access_txt = "3" - }, -/obj/item/paper, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"avb" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/camera{ - c_tag = "Brig - Hallway - Entrance" - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"avc" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"avd" = ( -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = 26 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"ave" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/structure/extinguisher_cabinet{ - pixel_y = 30 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"avf" = ( -/obj/machinery/firealarm{ - pixel_y = 28 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"avg" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"avh" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"avi" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/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) -"avj" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"avk" = ( -/turf/open/floor/plasteel/dark, -/area/security/brig) -"avq" = ( -/obj/item/cigbutt, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"avr" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/starboard) -"avs" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating, -/area/maintenance/starboard) -"avt" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"avu" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/sign/warning/radiation/rad_area{ - dir = 1; - pixel_y = 32 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"avv" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"avz" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"avA" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/sign/warning/radiation/rad_area{ - dir = 1; - pixel_y = 32 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"avB" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"avC" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/starboard/fore) -"avD" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, -/area/maintenance/starboard/fore) -"avE" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/starboard/fore) -"avF" = ( -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"avG" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"avH" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"avI" = ( -/obj/structure/closet/crate, -/obj/item/stack/sheet/metal/fifty{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/stack/sheet/metal/fifty{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/stack/sheet/metal/fifty{ - pixel_x = 2; - pixel_y = 2 - }, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"avJ" = ( -/obj/structure/sign/warning/vacuum/external{ - pixel_x = 32 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"avK" = ( -/obj/structure/sign/warning/vacuum/external{ - pixel_y = 32 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"avL" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"avM" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/port/fore) -"avN" = ( -/obj/item/hand_labeler_refill, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"avO" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"avP" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"avQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance{ - req_one_access_txt = "12;50" - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"avR" = ( -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 1; - sortType = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"avS" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, -/area/maintenance/port/fore) -"avT" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"avW" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"avY" = ( -/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) -"avZ" = ( -/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) -"awa" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"awb" = ( -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"awc" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/security/brig) -"awd" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"awe" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"awf" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/structure/disposalpipe/junction/flip{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"awg" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"awh" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"awi" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/mob/living/simple_animal/bot/secbot/beepsky{ - desc = "It's Officer Beepsky! Powered by a potato and a shot of whiskey, and with a sturdier reinforced chassis, too. "; - health = 45; - maxHealth = 45; - name = "Officer Beepsky" - }, -/turf/open/floor/plasteel, -/area/security/brig) -"awj" = ( -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/security/brig) -"awk" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"awl" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"awm" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel, -/area/security/brig) -"awn" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"awo" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/security/brig) -"awp" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/security/brig) -"awq" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/security/brig) -"awr" = ( -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/security/brig) -"aws" = ( -/turf/open/floor/plasteel, -/area/security/brig) -"awt" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"awu" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security{ - name = "Interrogation"; - req_access_txt = "63" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"awv" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"aww" = ( -/obj/structure/chair{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"awx" = ( -/obj/structure/table, -/obj/item/flashlight/lamp, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"awy" = ( -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"awz" = ( -/obj/machinery/camera{ - c_tag = "Interrogation room"; - dir = 8; - network = list("interrogation") - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"awB" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/item/storage/box/lights/mixed, -/turf/open/floor/plating, -/area/maintenance/fore) -"awI" = ( -/obj/machinery/door/airlock/maintenance/abandoned{ - name = "Storage Room"; - req_access_txt = "12" - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"awJ" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/starboard/fore) -"awL" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"awM" = ( -/obj/structure/closet, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"awP" = ( -/obj/item/clothing/gloves/color/rainbow, -/obj/item/clothing/shoes/sneakers/rainbow, -/obj/item/clothing/under/color/rainbow, -/obj/item/clothing/head/soft/rainbow, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"awQ" = ( -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"awR" = ( -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"awS" = ( -/obj/structure/closet/crate, -/obj/item/coin/silver, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"awT" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"awU" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"awV" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"awY" = ( -/obj/machinery/door/airlock/external{ - name = "Solar Maintenance"; - req_access_txt = "10; 13" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/aft) -"awZ" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"axa" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"axb" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel, -/area/security/brig) -"axc" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/light, -/obj/machinery/camera{ - c_tag = "Brig - Hallway - Port"; - dir = 1 - }, -/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 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"axd" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"axe" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/security/brig) -"axf" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/door_timer{ - id = "Cell 2"; - name = "Cell 2"; - pixel_y = -32 - }, -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"axg" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"axh" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/obj/machinery/door_timer{ - id = "Cell 3"; - name = "Cell 3"; - pixel_y = -32 - }, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel, -/area/security/brig) -"axi" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/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/brig) -"axj" = ( -/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) -"axk" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold4w/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/brig) -"axl" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/power/apc/highcap/ten_k{ - areastring = "/area/security/brig"; - name = "Brig APC"; - pixel_x = 1; - pixel_y = -24 - }, -/obj/structure/cable/yellow, -/obj/machinery/button/flasher{ - id = "secentranceflasher"; - name = "Brig Entrance Flasher"; - pixel_x = -3; - pixel_y = -38; - req_access_txt = "1" - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"axm" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"axn" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"axo" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/security/brig) -"axp" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel, -/area/security/brig) -"axq" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel, -/area/security/brig) -"axr" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/button/flasher{ - id = "holdingflash"; - pixel_y = -26; - req_access_txt = "1" - }, -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel, -/area/security/brig) -"axs" = ( -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/light, -/obj/machinery/camera{ - c_tag = "Brig - Hallway - Starboard"; - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel, -/area/security/brig) -"axt" = ( -/obj/structure/cable/yellow{ - 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/red, -/turf/open/floor/plasteel, -/area/security/brig) -"axu" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel, -/area/security/brig) -"axv" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, -/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) -"axw" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/security/brig) -"axx" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"axy" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"axz" = ( -/obj/structure/table, -/obj/item/folder/red, -/obj/item/taperecorder, -/obj/item/radio/intercom{ - broadcasting = 1; - freerange = 1; - frequency = 1424; - listening = 0; - name = "Interrogation Intercom"; - pixel_y = -24 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"axA" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"axB" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"axL" = ( -/obj/item/clothing/suit/caution, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"axM" = ( -/obj/structure/cable/yellow{ - 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/starboard/fore) -"axN" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/starboard/fore) -"axO" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"axP" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"axQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/starboard/fore) -"axR" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/holopad, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"axS" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"aye" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 10 - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/space/nearstation) -"ayf" = ( -/obj/structure/closet/crate, -/obj/item/stack/sheet/glass{ - amount = 10 - }, -/obj/item/stack/rods, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"ayk" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Mining Dock Maintenance"; - req_access_txt = "48" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aym" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Cargo Bay Warehouse Maintenance"; - req_one_access_txt = "48;50" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"ayn" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"ayu" = ( -/obj/machinery/door/window/northleft{ - dir = 8; - name = "Jetpack Storage"; - pixel_x = -1; - req_access_txt = "19" - }, -/obj/structure/window/reinforced, -/obj/structure/rack, -/obj/item/tank/jetpack/carbondioxide/eva{ - pixel_x = 4; - pixel_y = -1 - }, -/obj/item/tank/jetpack/carbondioxide/eva, -/obj/item/tank/jetpack/carbondioxide/eva{ - pixel_x = -4; - pixel_y = 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/ai_monitored/command/storage/eva) -"ayw" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/security/brig) -"ayx" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/machinery/door/window/brigdoor/security/cell{ - id = "Cell 1"; - name = "Cell 1" - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"ayy" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/security/brig) -"ayz" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/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) -"ayA" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/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) -"ayB" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/machinery/door/airlock/security/glass{ - id_tag = "innerbrig"; - name = "Brig"; - req_access_txt = "63" - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"ayC" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/machinery/door/airlock/security/glass{ - id_tag = "innerbrig"; - name = "Brig"; - req_access_txt = "63" - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"ayD" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/security/brig) -"ayE" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/machinery/door/window/brigdoor/security/holding{ - id = "Holding Cell"; - name = "Holding Cell" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"ayF" = ( -/turf/closed/wall/r_wall, -/area/security/detectives_office) -"ayG" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "detective_shutters"; - name = "detective's office shutters" - }, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/turf/open/floor/plating, -/area/security/detectives_office) -"ayH" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security{ - name = "Detective's Office"; - req_access_txt = "4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/security/detectives_office) -"ayI" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "detective_shutters"; - name = "detective's office shutters" - }, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/security/detectives_office) -"ayJ" = ( -/turf/closed/wall, -/area/security/detectives_office) -"ayQ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"ayR" = ( -/obj/item/wrench, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"azb" = ( -/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"azd" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple, -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 4 - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/space/nearstation) -"azg" = ( -/obj/item/stack/cable_coil, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"azq" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel, -/area/security/brig) -"azr" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/item/cigbutt, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"azB" = ( -/obj/machinery/camera{ - c_tag = "Gravity Generator Room"; - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/gravity_generator) -"azC" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/hallway/primary/fore) -"azD" = ( -/obj/machinery/flasher{ - id = "Cell 1"; - pixel_x = -28 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"azE" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/security/brig) -"azF" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"azG" = ( -/obj/machinery/flasher{ - id = "Cell 2"; - pixel_x = -28 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"azH" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/machinery/flasher{ - id = "Cell 3"; - pixel_x = -28 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"azI" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/light/small{ - dir = 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, -/area/security/brig) -"azJ" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"azK" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/cable/yellow{ - 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 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"azL" = ( -/obj/structure/chair, -/obj/machinery/flasher{ - id = "holdingflash"; - pixel_x = -25 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"azM" = ( -/obj/structure/chair, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/security/brig) -"azN" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/security/brig) -"azO" = ( -/obj/structure/chair, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/security/brig) -"azP" = ( -/obj/structure/rack, -/obj/machinery/flasher{ - id = "holdingflash"; - pixel_x = 25 - }, -/obj/item/clothing/under/rank/prisoner, -/obj/item/clothing/under/rank/prisoner, -/obj/item/clothing/under/rank/prisoner, -/obj/item/clothing/under/rank/prisoner, -/obj/item/clothing/under/rank/prisoner, -/obj/item/clothing/shoes/sneakers/orange, -/obj/item/clothing/shoes/sneakers/orange, -/obj/item/clothing/shoes/sneakers/orange, -/obj/item/clothing/shoes/sneakers/orange, -/obj/item/clothing/shoes/sneakers/orange, -/obj/item/restraints/handcuffs, -/obj/item/restraints/handcuffs, -/obj/item/restraints/handcuffs, -/obj/item/restraints/handcuffs, -/obj/item/restraints/handcuffs, -/turf/open/floor/plasteel, -/area/security/brig) -"azQ" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -24 - }, -/obj/structure/filingcabinet, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/light_switch{ - pixel_y = 25 - }, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"azR" = ( -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"azS" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/carpet, -/area/security/detectives_office) -"azT" = ( -/obj/structure/table/wood, -/obj/item/storage/fancy/cigarettes, -/obj/item/clothing/glasses/sunglasses, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/carpet, -/area/security/detectives_office) -"azU" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/obj/structure/table/wood, -/obj/machinery/computer/security/telescreen{ - desc = "Used for watching Prison Wing holding areas."; - name = "Prison Monitor"; - network = list("prison"); - pixel_y = 30 - }, -/obj/item/flashlight/lamp/green{ - pixel_x = 1; - pixel_y = 5 - }, -/obj/item/restraints/handcuffs, -/turf/open/floor/carpet, -/area/security/detectives_office) -"azV" = ( -/obj/structure/table/wood, -/obj/item/storage/secure/safe{ - pixel_x = 32 - }, -/obj/machinery/button/door{ - id = "detective_shutters"; - name = "detective's office shutters control"; - pixel_y = 26; - req_access_txt = "4" - }, -/obj/machinery/computer/security/wooden_tv{ - pixel_x = 3; - pixel_y = 2 - }, -/turf/open/floor/carpet, -/area/security/detectives_office) -"azW" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/plating, -/area/maintenance/fore) -"azY" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, -/area/maintenance/fore) -"azZ" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"aAi" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/structure/cable/yellow{ - 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/starboard/fore) -"aAj" = ( -/obj/structure/cable/yellow{ - 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 = 8 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"aAk" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/starboard/fore) -"aAl" = ( -/obj/structure/cable/yellow{ - 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/starboard/fore) -"aAm" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/grille, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"aAn" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"aAs" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"aAA" = ( -/obj/docking_port/stationary{ - dir = 8; - dwidth = 3; - height = 5; - id = "mining_home"; - name = "mining shuttle bay"; - roundstart_template = /datum/map_template/shuttle/mining/box; - width = 7 - }, -/turf/open/space/basic, -/area/space) -"aAV" = ( -/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) -"aAW" = ( -/obj/machinery/door/airlock/external{ - name = "Labor Camp Shuttle Airlock" - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/fore) -"aAX" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 28 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Labor Shuttle Dock"; - dir = 8 - }, -/obj/machinery/flasher{ - id = "PRelease"; - pixel_x = 24; - pixel_y = 20 - }, -/obj/machinery/gulag_item_reclaimer{ - pixel_y = 24 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/fore) -"aAY" = ( -/obj/structure/bed, -/obj/item/bedsheet, -/turf/open/floor/plasteel, -/area/security/brig) -"aAZ" = ( -/obj/structure/closet/secure_closet/brig{ - id = "Cell 1"; - name = "Cell 1 Locker" - }, -/turf/open/floor/plasteel, -/area/security/brig) -"aBa" = ( -/obj/structure/closet/secure_closet/brig{ - id = "Cell 2"; - name = "Cell 2 Locker" - }, -/turf/open/floor/plasteel, -/area/security/brig) -"aBb" = ( -/obj/structure/closet/secure_closet/brig{ - id = "Cell 3"; - name = "Cell 3 Locker" - }, -/turf/open/floor/plasteel, -/area/security/brig) -"aBc" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -26 - }, -/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) -"aBd" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"aBe" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, -/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) -"aBf" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"aBg" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"aBh" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"aBi" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"aBj" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"aBk" = ( -/obj/structure/closet/secure_closet/detective, -/obj/effect/landmark/blobstart, -/obj/machinery/camera{ - c_tag = "Detective's Office"; - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"aBl" = ( -/obj/machinery/holopad, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"aBm" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/carpet, -/area/security/detectives_office) -"aBn" = ( -/obj/structure/table/wood, -/obj/item/folder/red, -/obj/item/hand_labeler, -/turf/open/floor/carpet, -/area/security/detectives_office) -"aBo" = ( -/obj/effect/landmark/start/detective, -/obj/structure/chair/office/dark{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/carpet, -/area/security/detectives_office) -"aBp" = ( -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/obj/machinery/computer/secure_data{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/security/detectives_office) -"aBq" = ( -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/fore) -"aBr" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/maintenance/fore) -"aBs" = ( -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/effect/landmark/blobstart, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"aBC" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"aCj" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Labor Camp Shuttle Airlock" - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/fore) -"aCk" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/machinery/door/poddoor/preopen{ - id = "Secure Gate"; - name = "brig shutters" - }, -/turf/open/floor/plating, -/area/security/brig) -"aCl" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/machinery/door/poddoor/preopen{ - id = "Secure Gate"; - name = "brig shutters" - }, -/turf/open/floor/plating, -/area/security/brig) -"aCm" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/machinery/door/poddoor/preopen{ - id = "Secure Gate"; - name = "brig shutters" - }, -/turf/open/floor/plating, -/area/security/brig) -"aCn" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/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/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"aCo" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "Secure Gate"; - name = "brig shutters" - }, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/turf/open/floor/plating, -/area/security/brig) -"aCp" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/firedoor, -/obj/machinery/flasher{ - id = "secentranceflasher"; - pixel_x = 25 - }, -/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/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"aCq" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Security Desk"; - req_access_txt = "63" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"aCr" = ( -/obj/machinery/door/airlock/security{ - name = "Court Cell"; - req_access_txt = "63" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"aCt" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"aCu" = ( -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/security/detectives_office) -"aCv" = ( -/obj/structure/table/wood, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/pen, -/turf/open/floor/carpet, -/area/security/detectives_office) -"aCw" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/carpet, -/area/security/detectives_office) -"aCx" = ( -/obj/machinery/computer/med_data{ - dir = 8 - }, -/obj/machinery/newscaster{ - pixel_x = 28 - }, -/turf/open/floor/carpet, -/area/security/detectives_office) -"aCy" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/fore) -"aCz" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"aCM" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"aDa" = ( -/turf/open/floor/plating, -/area/construction/mining/aux_base) -"aDb" = ( -/turf/closed/wall, -/area/construction/mining/aux_base) -"aDc" = ( -/obj/structure/closet/crate, -/obj/item/coin/silver, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aDu" = ( -/turf/closed/wall, -/area/hallway/primary/fore) -"aDv" = ( -/obj/machinery/door/poddoor/preopen{ - id = "prison release"; - name = "prisoner processing blast door" - }, -/obj/machinery/button/door{ - id = "prison release"; - name = "Labor Camp Shuttle Lockdown"; - pixel_x = -25; - req_access_txt = "2" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aDw" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aDx" = ( -/obj/structure/chair/stool, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aDy" = ( -/obj/structure/sign/warning/electricshock{ - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aDz" = ( -/obj/structure/sign/warning/electricshock{ - pixel_y = 32 - }, -/obj/machinery/camera{ - c_tag = "Fore Primary Hallway Cells" - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aDA" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/status_display/evac{ - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aDB" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aDC" = ( -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aDD" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aDE" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/obj/machinery/door/poddoor/preopen{ - id = "briglockdown"; - name = "brig shutters" - }, -/turf/open/floor/plating, -/area/security/brig) -"aDF" = ( -/obj/machinery/computer/secure_data, -/obj/machinery/button/flasher{ - id = "secentranceflasher"; - name = "Brig Entrance Flash Control"; - pixel_x = -24; - pixel_y = 24; - req_access_txt = "1" - }, -/obj/machinery/button/door{ - id = "Secure Gate"; - name = "Cell Window Control"; - pixel_x = 5; - pixel_y = 27; - specialfunctions = 4 - }, -/obj/machinery/button/door{ - id = "briglockdown"; - name = "Brig Lockdown Control"; - pixel_x = 5; - pixel_y = 37 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/button/door{ - desc = "A remote control switch for the medbay foyer."; - id = "innerbrig"; - name = "Brig Interior Doors Control"; - normaldoorcontrol = 1; - pixel_x = -5; - pixel_y = 37; - 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 = -5; - pixel_y = 27; - req_access_txt = "63" - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"aDG" = ( -/obj/structure/filingcabinet/chestdrawer{ - pixel_y = 3 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"aDH" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/button/flasher{ - id = "holdingflash"; - name = "holding cell flasher button"; - pixel_x = 23; - pixel_y = 23; - req_access_txt = "1" - }, -/obj/machinery/camera{ - c_tag = "Brig - Desk"; - dir = 8 - }, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_x = 29; - pixel_y = -2 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"aDI" = ( -/obj/machinery/requests_console{ - department = "Detective's office"; - pixel_x = -30 - }, -/obj/structure/table/wood, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/item/book/manual/wiki/security_space_law, -/obj/item/camera/detective, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"aDJ" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"aDK" = ( -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"aDL" = ( -/obj/machinery/light/small, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -26 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"aDM" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"aDN" = ( -/obj/machinery/vending/wardrobe/det_wardrobe, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"aDO" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/fore) -"aEI" = ( -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -22 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aEJ" = ( -/obj/structure/sign/warning/vacuum/external{ - pixel_y = 32 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aEK" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=1.5-Fore-Central"; - location = "1-BrigCells" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aEL" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aEM" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aEN" = ( -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aEO" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aEP" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aEQ" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aER" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aES" = ( -/obj/structure/cable/yellow{ - 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/fore) -"aET" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=1-BrigCells"; - location = "0-SecurityDesk" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aEU" = ( -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aEV" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/westleft{ - base_state = "right"; - icon_state = "right"; - name = "Outer Window" - }, -/obj/machinery/door/window/brigdoor{ - dir = 4; - name = "Security Desk"; - req_access_txt = "1" - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/item/radio/off, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "briglockdown"; - name = "brig shutters" - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"aEW" = ( -/obj/structure/chair/office/dark{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"aEX" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"aEY" = ( -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"aEZ" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/table, -/obj/item/bodybag, -/obj/item/clothing/gloves/color/latex, -/obj/item/clothing/mask/surgical, -/turf/open/floor/plasteel/dark, -/area/security/detectives_office) -"aFa" = ( -/obj/machinery/door/window{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/security/detectives_office) -"aFb" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Detective Maintenance"; - req_access_txt = "4" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/fore) -"aFM" = ( -/obj/machinery/door/airlock/maintenance{ - req_one_access_txt = "12;63;48;50" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aFV" = ( -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -26 - }, -/obj/machinery/camera{ - c_tag = "Storage Wing - Security Access Door"; - dir = 4 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/fore) -"aFW" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/fore) -"aFX" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/fore) -"aFY" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security{ - name = "Security-Storage Backroom"; - req_access_txt = "63" - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/fore) -"aFZ" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aGa" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aGb" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/extinguisher_cabinet{ - pixel_y = -30 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aGc" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aGd" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aGe" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aGf" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/power/apc/highcap/five_k{ - areastring = "/area/hallway/primary/fore"; - name = "Fore Primary Hallway APC"; - pixel_y = -27 - }, -/obj/structure/cable/yellow, -/obj/machinery/light, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aGg" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aGh" = ( -/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 = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aGi" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aGj" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - 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) -"aGk" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aGl" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aGm" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aGn" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aGo" = ( -/obj/item/beacon, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aGp" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow, -/obj/machinery/door/poddoor/preopen{ - id = "briglockdown"; - name = "brig shutters" - }, -/turf/open/floor/plating, -/area/security/brig) -"aGq" = ( -/obj/machinery/computer/security{ - dir = 1 - }, -/obj/machinery/newscaster/security_unit{ - pixel_y = -30 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"aGr" = ( -/obj/structure/table, -/obj/item/folder/red{ - pixel_x = 3 - }, -/obj/item/folder/white{ - pixel_x = -4; - pixel_y = 2 - }, -/obj/machinery/computer/security/telescreen{ - desc = "Used for watching Prison Wing holding areas."; - dir = 1; - name = "Prison Monitor"; - network = list("prison"); - pixel_y = -30 - }, -/obj/item/restraints/handcuffs, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"aGs" = ( -/obj/structure/table, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/pen, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 24 - }, -/obj/structure/reagent_dispensers/peppertank{ - pixel_y = -30 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"aGt" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"aGu" = ( -/obj/structure/bodycontainer/morgue, -/turf/open/floor/plasteel/dark, -/area/security/detectives_office) -"aGv" = ( -/obj/machinery/light/small, -/turf/open/floor/plasteel/dark, -/area/security/detectives_office) -"aGw" = ( -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"aGx" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/maintenance/fore) -"aGy" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"aGE" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/grille, -/turf/open/floor/plating, -/area/maintenance/fore) -"aGN" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/port) -"aHu" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/fore) -"aHv" = ( -/obj/structure/chair/office/dark, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/fore) -"aHw" = ( -/obj/structure/table, -/obj/machinery/recharger, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/fore) -"aHx" = ( -/turf/closed/wall/r_wall, -/area/hallway/primary/fore) -"aHy" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow, -/turf/open/floor/plating, -/area/hallway/primary/fore) -"aHz" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aHA" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aHB" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aHC" = ( -/obj/structure/sign/directions/security{ - dir = 1; - pixel_y = 8 - }, -/turf/closed/wall, -/area/security/courtroom) -"aHD" = ( -/turf/closed/wall, -/area/security/courtroom) -"aHE" = ( -/turf/closed/wall/r_wall, -/area/security/courtroom) -"aHF" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security{ - name = "Court Cell"; - req_access_txt = "63" - }, -/turf/open/floor/plasteel/dark, -/area/security/courtroom) -"aHH" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Law Office Maintenance"; - req_access_txt = "38" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"aHQ" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"aHV" = ( -/obj/structure/closet, -/obj/item/storage/box/donkpockets, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"aHW" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/starboard/fore) -"aIf" = ( -/obj/machinery/camera{ - c_tag = "Auxillary Base Construction"; - dir = 1 - }, -/obj/machinery/button/door{ - id = "aux_base_shutters"; - name = "Public Shutters Control"; - pixel_y = -24; - req_one_access_txt = "32;47;48" - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/construction/mining/aux_base) -"aIv" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/starboard/fore) -"aIC" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/security{ - name = "Security-Storage Backroom"; - req_access_txt = "63" - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/fore) -"aID" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/fore) -"aIE" = ( -/obj/structure/table, -/obj/item/folder/red, -/obj/item/restraints/handcuffs, -/obj/machinery/newscaster/security_unit{ - pixel_y = -30 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/fore) -"aIF" = ( -/obj/machinery/light/small, -/obj/structure/table, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/fore) -"aIG" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/hallway/primary/fore) -"aIH" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/turf/open/floor/plating, -/area/hallway/primary/fore) -"aII" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aIJ" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aIK" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aIL" = ( -/obj/structure/closet/secure_closet/courtroom, -/obj/machinery/light_switch{ - pixel_y = 28 - }, -/obj/item/gavelblock, -/obj/item/gavelhammer, -/turf/open/floor/plasteel, -/area/security/courtroom) -"aIM" = ( -/obj/structure/chair{ - name = "Bailiff" - }, -/turf/open/floor/plasteel, -/area/security/courtroom) -"aIN" = ( -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = 20 - }, -/turf/open/floor/plasteel, -/area/security/courtroom) -"aIO" = ( -/obj/structure/chair{ - name = "Judge" - }, -/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, -/area/security/courtroom) -"aIP" = ( -/obj/structure/chair{ - name = "Judge" - }, -/obj/machinery/status_display/evac{ - pixel_y = 32 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/camera{ - c_tag = "Courtroom" - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/courtroom) -"aIQ" = ( -/obj/structure/chair{ - name = "Judge" - }, -/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, -/area/security/courtroom) -"aIR" = ( -/turf/open/floor/plasteel, -/area/security/courtroom) -"aIS" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/courtroom) -"aIT" = ( -/turf/open/floor/plasteel/dark, -/area/security/courtroom) -"aIZ" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/maintenance/fore) -"aJi" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/spawner/lootdrop/maintenance, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aJA" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"aJL" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock/maintenance{ - req_one_access_txt = "12;63;48;50" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aJM" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock/maintenance{ - req_one_access_txt = "12;63;48;50" - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aJS" = ( -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/ai_upload) -"aJT" = ( -/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) -"aJU" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aJV" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aJW" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security{ - name = "Brig"; - req_access_txt = "63; 42" - }, -/turf/open/floor/plasteel, -/area/security/courtroom) -"aJX" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/security/courtroom) -"aJY" = ( -/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/security/courtroom) -"aJZ" = ( -/obj/structure/table/wood, -/obj/item/radio/intercom{ - broadcasting = 1; - dir = 8; - listening = 0; - name = "Station Intercom (Court)" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/courtroom) -"aKa" = ( -/obj/structure/table/wood, -/obj/item/gavelblock, -/obj/item/gavelhammer, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/courtroom) -"aKb" = ( -/obj/structure/table/wood, -/obj/item/book/manual/wiki/security_space_law, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/courtroom) -"aKc" = ( -/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/security/courtroom) -"aKd" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/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/security/courtroom) -"aKe" = ( -/obj/machinery/door/window/southleft{ - name = "Court Cell"; - req_access_txt = "2" - }, -/turf/open/floor/plasteel/dark, -/area/security/courtroom) -"aKk" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock/maintenance{ - req_one_access_txt = "1;4;38;12" - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"aKw" = ( -/obj/effect/decal/cleanable/cobweb, -/obj/structure/closet/crate{ - icon_state = "crateopen" - }, -/obj/item/wirecutters, -/obj/item/weldingtool, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"aKM" = ( -/obj/machinery/deepfryer, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/service/kitchen) -"aKZ" = ( -/obj/machinery/door/window/northleft{ - dir = 8; - name = "MuleBot Supply Access"; - req_access_txt = "50" - }, -/obj/structure/plasticflaps/opaque, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aLa" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aLb" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/landmark/blobstart, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aLc" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aLd" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/port) -"aLe" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aLk" = ( -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/obj/item/cigbutt, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"aLo" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/space, -/area/space/nearstation) -"aLp" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/ai_upload) -"aLq" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/porta_turret/ai, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai_upload) -"aLr" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/machinery/flasher{ - id = "AI"; - pixel_y = 24 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai_upload) -"aLs" = ( -/obj/structure/sign/plaques/kiddie{ - pixel_y = 32 - }, -/obj/structure/table, -/obj/machinery/camera/motion{ - c_tag = "AI Upload Chamber - Fore"; - network = list("aiupload") - }, -/obj/item/kirbyplants/photosynthetic{ - pixel_y = 10 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai_upload) -"aLt" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai_upload) -"aLu" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/porta_turret/ai, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai_upload) -"aLv" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/ai_upload) -"aLw" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/space, -/area/space/nearstation) -"aLx" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/hallway/primary/fore) -"aLy" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -22 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aLz" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/security/courtroom) -"aLA" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/courtroom) -"aLB" = ( -/obj/effect/landmark/start/lawyer, -/turf/open/floor/plasteel, -/area/security/courtroom) -"aLC" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/courtroom) -"aLJ" = ( -/obj/structure/rack, -/obj/item/stock_parts/matter_bin, -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, -/area/maintenance/starboard/fore) -"aLZ" = ( -/obj/effect/landmark/blobstart, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/starboard/fore) -"aMp" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/wood, -/area/commons/dorms) -"aMq" = ( -/obj/structure/window/reinforced, -/turf/open/space, -/area/space/nearstation) -"aMr" = ( -/obj/structure/window/reinforced, -/obj/structure/lattice, -/turf/open/space, -/area/space/nearstation) -"aMG" = ( -/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/structure/window/reinforced, -/obj/effect/spawner/lootdrop/aimodule_neutral, -/obj/item/aiModule/core/full/custom, -/obj/machinery/flasher{ - id = "AI"; - pixel_y = 24 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai_upload) -"aMH" = ( -/turf/open/floor/circuit, -/area/ai_monitored/turret_protected/ai_upload) -"aMI" = ( -/obj/structure/table, -/obj/machinery/door/window{ - dir = 8; - name = "High-Risk Modules"; - req_access_txt = "20" - }, -/obj/structure/window/reinforced, -/obj/machinery/flasher{ - id = "AI"; - pixel_y = 24 - }, -/obj/effect/spawner/lootdrop/aimodule_harmful, -/obj/item/aiModule/supplied/oxygen, -/obj/item/aiModule/supplied/protectStation, -/obj/item/aiModule/zeroth/oneHuman, -/obj/item/aiModule/reset/purge, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai_upload) -"aMJ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_x = -29 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aMK" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -24 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/security/courtroom) -"aML" = ( -/obj/structure/chair{ - dir = 4; - name = "Prosecution" - }, -/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/courtroom) -"aMM" = ( -/obj/structure/table/wood, -/obj/item/folder/red, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/courtroom) -"aMN" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/security/courtroom) -"aMO" = ( -/obj/structure/table/wood, -/obj/item/folder/blue, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/courtroom) -"aMP" = ( -/obj/structure/chair{ - dir = 8; - name = "Defense" - }, -/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/security/courtroom) -"aMQ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - name = "Law Office"; - req_access_txt = "38" - }, -/turf/open/floor/wood, -/area/security/courtroom) -"aNm" = ( -/obj/structure/rack, -/obj/item/clothing/suit/hazardvest, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"aNw" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/space, -/area/space/nearstation) -"aNA" = ( -/obj/structure/closet{ - name = "Evidence Closet 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/security/warden) -"aNC" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/lattice, -/turf/open/space, -/area/space/nearstation) -"aNS" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/starboard/fore) -"aNZ" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/ai_upload) -"aOa" = ( -/obj/machinery/porta_turret/ai{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai_upload) -"aOb" = ( -/obj/machinery/computer/upload/borg, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/window/westleft{ - dir = 2; - layer = 3.1; - name = "Cyborg Upload Console Window"; - req_access_txt = "16" - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai_upload) -"aOd" = ( -/obj/machinery/computer/upload/ai, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/window/westleft{ - base_state = "right"; - dir = 2; - icon_state = "right"; - layer = 3.1; - name = "Upload Console Window"; - req_access_txt = "16" - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai_upload) -"aOe" = ( -/obj/machinery/porta_turret/ai{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai_upload) -"aOf" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/courtroom) -"aOg" = ( -/obj/structure/chair{ - dir = 4; - name = "Prosecution" - }, -/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/courtroom) -"aOh" = ( -/obj/structure/table/wood, -/obj/item/paper, -/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/security/courtroom) -"aOi" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/courtroom) -"aOj" = ( -/obj/item/beacon, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/courtroom) -"aOk" = ( -/obj/structure/table/wood, -/obj/effect/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/security/courtroom) -"aOl" = ( -/obj/structure/chair{ - dir = 8; - name = "Defense" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/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/security/courtroom) -"aOm" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, -/turf/open/floor/plasteel, -/area/security/courtroom) -"aOU" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/turf/open/space, -/area/space/nearstation) -"aOV" = ( -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/turf/open/space, -/area/space/nearstation) -"aOX" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/turf/open/space, -/area/space/nearstation) -"aOY" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/space, -/area/space/nearstation) -"aPa" = ( -/obj/structure/table, -/obj/item/folder/yellow, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/item/storage/firstaid/regular{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/turf/open/floor/plasteel{ - dir = 1 - }, -/area/command/gateway) -"aPl" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aPs" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/structure/cable/yellow, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/ai_upload) -"aPt" = ( -/obj/structure/table, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/item/aiModule/supplied/quarantine, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai_upload) -"aPu" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/circuit, -/area/ai_monitored/turret_protected/ai_upload) -"aPv" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai_upload) -"aPw" = ( -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/machinery/ai_slipper{ - uses = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai_upload) -"aPx" = ( -/obj/structure/table, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/item/aiModule/supplied/freeform, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai_upload) -"aPy" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/structure/cable/yellow, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/ai_upload) -"aPz" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=0-SecurityDesk"; - location = "16-Fore" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aPA" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 24 - }, -/obj/machinery/camera{ - c_tag = "Fore Primary Hallway Aft"; - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aPB" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/security/courtroom) -"aPC" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Courtroom"; - req_access_txt = "42" - }, -/turf/open/floor/plasteel/dark, -/area/security/courtroom) -"aPD" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/security/courtroom) -"aPS" = ( -/obj/structure/rack, -/obj/item/clothing/gloves/color/fyellow, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"aPT" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/starboard/fore) -"aQz" = ( -/obj/structure/table, -/obj/item/aiModule/reset, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/status_display/ai{ - pixel_x = -32 - }, -/obj/machinery/flasher{ - id = "AI"; - pixel_y = -24 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai_upload) -"aQA" = ( -/obj/machinery/power/apc/highcap/five_k{ - areastring = "/area/ai_monitored/turret_protected/ai_upload"; - name = "Upload APC"; - pixel_y = -24 - }, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/machinery/camera/motion{ - c_tag = "AI Upload Chamber - Port"; - dir = 1; - network = list("aiupload") - }, -/turf/open/floor/circuit, -/area/ai_monitored/turret_protected/ai_upload) -"aQB" = ( -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai_upload) -"aQC" = ( -/obj/item/radio/intercom{ - broadcasting = 1; - frequency = 1447; - name = "Private AI Channel"; - pixel_y = -25 - }, -/obj/machinery/camera/motion{ - c_tag = "AI Upload Chamber - Starboard"; - dir = 1; - network = list("aiupload") - }, -/turf/open/floor/circuit, -/area/ai_monitored/turret_protected/ai_upload) -"aQD" = ( -/obj/structure/table, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/status_display/evac{ - pixel_x = 32 - }, -/obj/machinery/flasher{ - id = "AI"; - pixel_y = -24 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai_upload) -"aQE" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -27 - }, -/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) -"aQF" = ( -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/window/reinforced/tinted/fulltile, -/turf/open/floor/plating, -/area/security/courtroom) -"aQG" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/obj/machinery/vending/cigarette, -/turf/open/floor/plasteel/dark, -/area/security/courtroom) -"aQH" = ( -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/security/courtroom) -"aQJ" = ( -/obj/machinery/vending/coffee, -/turf/open/floor/plasteel/dark, -/area/security/courtroom) -"aRi" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/item/cigbutt, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"aRu" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"aRA" = ( -/turf/closed/wall, -/area/hallway/secondary/entry) -"aRD" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/computer/camera_advanced/base_construction{ - dir = 4 - }, -/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/construction/mining/aux_base) -"aRE" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/construction/mining/aux_base) -"aRF" = ( -/obj/structure/table, -/obj/item/stack/sheet/metal/fifty, -/obj/item/stack/sheet/metal/fifty, -/obj/item/stack/sheet/glass/fifty, -/obj/item/pipe_dispenser, -/obj/machinery/light{ - dir = 4 - }, -/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/construction/mining/aux_base) -"aRG" = ( -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aRT" = ( -/obj/machinery/flasher{ - id = "AI"; - pixel_y = -24 - }, -/obj/machinery/porta_turret/ai{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai_upload) -"aRU" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai_upload) -"aRV" = ( -/obj/machinery/porta_turret/ai{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai_upload) -"aRW" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aRX" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/grunge{ - name = "Courtroom" - }, -/turf/open/floor/plasteel/dark, -/area/security/courtroom) -"aRY" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/dark, -/area/security/courtroom) -"aRZ" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=16-Fore"; - location = "15-Court" - }, -/turf/open/floor/plasteel/dark, -/area/security/courtroom) -"aSa" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/dark, -/area/security/courtroom) -"aSo" = ( -/obj/item/book/manual/wiki/engineering_hacking{ - pixel_x = 4; - pixel_y = 5 - }, -/obj/item/book/manual/wiki/engineering_construction{ - pixel_y = 3 - }, -/obj/structure/closet/crate, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"aSD" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/space, -/area/space/nearstation) -"aSG" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/turf/open/space, -/area/space/nearstation) -"aSH" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/hallway/secondary/entry) -"aSI" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"aSJ" = ( -/obj/machinery/computer/shuttle/mining{ - dir = 4 - }, -/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/construction/mining/aux_base) -"aSK" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/construction/mining/aux_base) -"aSL" = ( -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/machinery/power/apc{ - areastring = "/area/construction/mining/aux_base"; - name = "Auxillary Base Construction APC"; - pixel_y = -24 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/construction/mining/aux_base) -"aSM" = ( -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/construction/mining/aux_base) -"aSN" = ( -/obj/structure/table, -/obj/item/stack/sheet/plasteel{ - amount = 10 - }, -/obj/item/stack/rods/fifty, -/obj/item/storage/box/lights/mixed, -/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/construction/mining/aux_base) -"aSO" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/maintenance/port) -"aSP" = ( -/obj/structure/closet/crate{ - icon_state = "crateopen" - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aSX" = ( -/turf/closed/wall, -/area/security/checkpoint/supply) -"aSY" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aSZ" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Tool Storage Maintenance"; - req_access_txt = "12" - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/port) -"aTi" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/highsecurity{ - name = "AI Upload"; - req_access_txt = "16" - }, -/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/ai_upload) -"aTj" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aTk" = ( -/obj/effect/spawner/structure/window/reinforced/tinted, -/turf/open/floor/plating, -/area/security/courtroom) -"aTl" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/security/courtroom) -"aTm" = ( -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -26 - }, -/turf/open/floor/plasteel/dark, -/area/security/courtroom) -"aTn" = ( -/obj/machinery/newscaster{ - pixel_y = -32 - }, -/obj/machinery/light, -/obj/machinery/camera{ - c_tag = "Courtroom - Gallery"; - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/security/courtroom) -"aTo" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel/dark, -/area/security/courtroom) -"aTp" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel/dark, -/area/security/courtroom) -"aTC" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"aTQ" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/lattice, -/turf/open/space, -/area/space/nearstation) -"aTV" = ( -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/ai) -"aTW" = ( -/obj/machinery/power/smes{ - charge = 5e+006 - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai) -"aTX" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/ai) -"aUb" = ( -/obj/structure/sign/warning/pods, -/turf/closed/wall, -/area/hallway/secondary/entry) -"aUc" = ( -/obj/machinery/door/airlock/external{ - name = "Escape Pod One" - }, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"aUd" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aUj" = ( -/obj/structure/closet/secure_closet/security/cargo, -/obj/machinery/light_switch{ - pixel_x = -25 - }, -/obj/machinery/airalarm{ - pixel_y = 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/supply) -"aUl" = ( -/obj/item/screwdriver{ - pixel_y = 10 - }, -/obj/item/radio/off, -/obj/machinery/light{ - dir = 1 - }, -/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/checkpoint/supply) -"aUm" = ( -/obj/structure/filingcabinet, -/obj/structure/reagent_dispensers/peppertank{ - 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/checkpoint/supply) -"aUv" = ( -/turf/closed/wall/r_wall, -/area/hallway/primary/central) -"aUw" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/turf/open/floor/plating, -/area/hallway/primary/central) -"aUx" = ( -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/ai_upload_foyer) -"aUy" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/obj/machinery/turretid{ - control_area = "/area/ai_monitored/turret_protected/ai_upload"; - icon_state = "control_stun"; - name = "AI Upload turret control"; - pixel_y = 28 - }, -/obj/item/radio/intercom{ - broadcasting = 1; - frequency = 1447; - name = "Private AI Channel"; - pixel_x = -24; - pixel_y = 24 - }, -/obj/effect/landmark/start/cyborg, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/machinery/power/apc{ - areastring = "/area/ai_monitored/turret_protected/ai_upload_foyer"; - name = "AI Upload Access APC"; - pixel_y = -27 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/computer/security/telescreen{ - desc = "Used for watching the AI Upload."; - dir = 4; - name = "AI Upload Monitor"; - network = list("aiupload"); - pixel_x = -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/ai_monitored/turret_protected/ai_upload_foyer) -"aUz" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - 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 - }, -/obj/effect/landmark/start/cyborg, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai_upload_foyer) -"aUA" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/obj/effect/landmark/start/cyborg, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/camera/motion{ - c_tag = "AI Upload Foyer"; - network = list("aiupload") - }, -/obj/machinery/airalarm{ - pixel_y = 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/ai_monitored/turret_protected/ai_upload_foyer) -"aUB" = ( -/obj/structure/sign/directions/security{ - dir = 1; - pixel_y = 8 - }, -/obj/structure/sign/directions/engineering{ - dir = 4 - }, -/obj/structure/sign/directions/command{ - pixel_y = -8 - }, -/turf/closed/wall/r_wall, -/area/hallway/primary/fore) -"aUC" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Fore Primary Hallway" - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aUD" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Fore Primary Hallway" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aUE" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Fore Primary Hallway" - }, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aUF" = ( -/obj/structure/sign/directions/evac, -/obj/structure/sign/directions/medical{ - pixel_y = 8 - }, -/obj/structure/sign/directions/science{ - pixel_y = -8 - }, -/turf/closed/wall, -/area/security/courtroom) -"aUG" = ( -/obj/machinery/power/apc{ - areastring = "/area/security/courtroom"; - name = "Courtroom APC"; - pixel_x = 1; - pixel_y = -24 - }, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/structure/table, -/obj/item/storage/fancy/donut_box, -/turf/open/floor/plasteel/dark, -/area/security/courtroom) -"aUH" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/courtroom) -"aUI" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel/dark, -/area/security/courtroom) -"aUJ" = ( -/obj/structure/table, -/obj/item/book/manual/wiki/security_space_law{ - pixel_x = -3; - pixel_y = 5 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/item/book/manual/wiki/security_space_law{ - pixel_x = -3; - pixel_y = 5 - }, -/obj/item/book/manual/wiki/security_space_law{ - pixel_x = -3; - pixel_y = 5 - }, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/turf/open/floor/plasteel/dark, -/area/security/courtroom) -"aUU" = ( -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"aUV" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"aUW" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/starboard/fore) -"aVf" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/airlock/engineering{ - name = "Supermatter Engine"; - req_access_txt = "10" - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"aVk" = ( -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/space, -/area/space/nearstation) -"aVl" = ( -/obj/machinery/porta_turret/ai{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai) -"aVm" = ( -/obj/machinery/status_display/evac{ - pixel_y = 32 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai) -"aVn" = ( -/obj/structure/showcase/cyborg/old{ - pixel_y = 20 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai) -"aVp" = ( -/obj/machinery/camera{ - c_tag = "AI Chamber - Fore"; - network = list("aicore") - }, -/obj/structure/showcase/cyborg/old{ - pixel_y = 20 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai) -"aVq" = ( -/obj/machinery/status_display/evac{ - pixel_y = 32 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai) -"aVr" = ( -/obj/machinery/porta_turret/ai{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai) -"aVs" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"aVt" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/item/kirbyplants{ - icon_state = "plant-20" - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aVu" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aVv" = ( -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = 21 - }, -/obj/structure/chair, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aVw" = ( -/obj/structure/chair, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aVx" = ( -/obj/structure/chair, -/obj/machinery/camera{ - c_tag = "Arrivals - Fore Arm - Far" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aVy" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/obj/machinery/status_display/evac{ - pixel_y = 32 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aVz" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aVA" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-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/hallway/secondary/entry) -"aVB" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aVC" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/sign/map/left{ - desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; - icon_state = "map-left-MS"; - pixel_y = 32 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aVD" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/sign/map/right{ - desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; - icon_state = "map-right-MS"; - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aVE" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/hallway/secondary/entry) -"aVM" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Security Post - Cargo"; - req_access_txt = "63" - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/supply) -"aVN" = ( -/obj/structure/cable/yellow{ - 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/supply) -"aVO" = ( -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/supply) -"aVP" = ( -/obj/structure/chair/office/dark, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/obj/effect/landmark/start/depsec/supply, -/turf/open/floor/plasteel, -/area/security/checkpoint/supply) -"aVQ" = ( -/obj/item/radio/intercom{ - dir = 4; - name = "Station Intercom (General)"; - pixel_x = 27 - }, -/obj/machinery/computer/security/mining{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/supply) -"aVU" = ( -/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) -"aVV" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/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) -"aVW" = ( -/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) -"aVX" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/ai_upload_foyer) -"aVY" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/highsecurity{ - name = "Secure Network Access"; - req_access_txt = "19" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - 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/ai_monitored/turret_protected/ai_upload_foyer) -"aVZ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/ai_upload_foyer) -"aWa" = ( -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/item/kirbyplants{ - icon_state = "applebush" - }, -/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/hallway/primary/central) -"aWb" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aWc" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/status_display/evac{ - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aWd" = ( -/obj/machinery/camera{ - c_tag = "Central Primary Hallway - Fore" - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aWe" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aWf" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aWg" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aWh" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aWi" = ( -/obj/structure/sign/map/left{ - desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; - icon_state = "map-left-MS"; - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aWj" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/sign/map/right{ - desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; - icon_state = "map-right-MS"; - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aWk" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, -/obj/item/kirbyplants{ - icon_state = "plant-16" - }, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = 21 - }, -/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/hallway/primary/central) -"aWl" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/grunge{ - name = "Courtroom" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/dark, -/area/security/courtroom) -"aWp" = ( -/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/primary/central) -"aWq" = ( -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/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) -"aWr" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/obj/structure/cable/yellow{ - icon_state = "2-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/central) -"aWs" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"aWt" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"aWu" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"aWH" = ( -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"aWK" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 10 - }, -/turf/open/space, -/area/space/nearstation) -"aWL" = ( -/obj/machinery/status_display/ai{ - pixel_x = -32 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/circuit, -/area/ai_monitored/turret_protected/ai) -"aWM" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/circuit, -/area/ai_monitored/turret_protected/ai) -"aWN" = ( -/turf/open/floor/circuit, -/area/ai_monitored/turret_protected/ai) -"aWO" = ( -/obj/machinery/ai_slipper{ - uses = 10 - }, -/turf/open/floor/circuit, -/area/ai_monitored/turret_protected/ai) -"aWP" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/circuit, -/area/ai_monitored/turret_protected/ai) -"aWQ" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/turf/open/floor/circuit, -/area/ai_monitored/turret_protected/ai) -"aWR" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/status_display/ai{ - pixel_x = 32 - }, -/turf/open/floor/circuit, -/area/ai_monitored/turret_protected/ai) -"aWT" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aWU" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aWV" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 2 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aWW" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aWX" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aWY" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aWZ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aXa" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aXb" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aXc" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aXd" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, -/obj/machinery/camera{ - c_tag = "Arrivals - Fore Arm"; - dir = 8 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white/corner, -/area/hallway/secondary/entry) -"aXm" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/security/checkpoint/supply) -"aXn" = ( -/obj/machinery/recharger{ - pixel_y = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/table/reinforced, -/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) -"aXo" = ( -/obj/item/paper_bin{ - pixel_x = 1; - pixel_y = 9 - }, -/obj/item/pen, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/table/reinforced, -/obj/machinery/camera{ - c_tag = "Security Post - Cargo"; - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/supply) -"aXp" = ( -/obj/item/book/manual/wiki/security_space_law, -/obj/machinery/newscaster{ - pixel_y = -32 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/structure/table/reinforced, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/supply) -"aXq" = ( -/obj/machinery/computer/secure_data{ - 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/checkpoint/supply) -"aXr" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/effect/landmark/blobstart, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/port/fore) -"aXs" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/item/trash/popcorn, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aXt" = ( -/obj/structure/cable/yellow{ - 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 = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"aXu" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance{ - req_one_access_txt = "12;63;48;50" - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aXv" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aXw" = ( -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aXx" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aXy" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/firealarm{ - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aXz" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aXA" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aXB" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aXC" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aXD" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aXE" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/machinery/camera{ - c_tag = "Central Primary Hallway - Fore - AI Upload" - }, -/obj/structure/sign/warning/securearea{ - desc = "A warning sign which reads 'HIGH-POWER TURRETS AHEAD'."; - name = "\improper HIGH-POWER TURRETS AHEAD"; - pixel_y = 32 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aXF" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = 21 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aXG" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aXH" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/machinery/status_display/ai{ - pixel_y = 32 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aXI" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/sign/warning/securearea{ - pixel_y = 32 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aXJ" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aXK" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/plaque{ - icon_state = "L1" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aXL" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/plaque{ - icon_state = "L3" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aXM" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/plaque{ - icon_state = "L5" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aXN" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/plaque{ - icon_state = "L7" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aXO" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/effect/turf_decal/plaque{ - icon_state = "L9" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aXP" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/plaque{ - icon_state = "L11" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aXQ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/plaque{ - icon_state = "L13" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aXR" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aXS" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aXT" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aXU" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aXV" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aXW" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aXX" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aXY" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aXZ" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aYa" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/effect/landmark/blobstart, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"aYb" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/starboard/fore) -"aYc" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"aYe" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"aYf" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"aYg" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"aYh" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"aYu" = ( -/turf/closed/wall, -/area/security/checkpoint/engineering) -"aYx" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 4 - }, -/obj/structure/lattice, -/turf/open/space, -/area/space/nearstation) -"aYy" = ( -/obj/machinery/camera{ - c_tag = "AI Chamber - Port"; - dir = 4; - network = list("aicore") - }, -/obj/structure/showcase/cyborg/old{ - dir = 4; - pixel_x = -9; - pixel_y = 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/ai_monitored/turret_protected/ai) -"aYz" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "AI Core shutters"; - name = "AI core shutters" - }, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/ai) -"aYA" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/circuit, -/area/ai_monitored/turret_protected/ai) -"aYB" = ( -/obj/structure/showcase/cyborg/old{ - dir = 8; - pixel_x = 9; - pixel_y = 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/ai_monitored/turret_protected/ai) -"aYC" = ( -/obj/structure/sign/warning/docking, -/turf/closed/wall, -/area/hallway/secondary/entry) -"aYE" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aYF" = ( -/obj/item/kirbyplants{ - icon_state = "plant-05" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aYG" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/obj/structure/sign/warning/vacuum/external{ - pixel_y = -32 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aYH" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aYI" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white/corner, -/area/hallway/secondary/entry) -"aYS" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/security/checkpoint/supply) -"aYT" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock/maintenance{ - req_one_access_txt = "12;63;48;50" - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aYU" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aYV" = ( -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/obj/structure/disposalpipe/junction{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aYW" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aYX" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aYY" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=3-Central-Port"; - location = "2.2-Leaving-Storage" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aYZ" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aZa" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aZb" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aZc" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aZd" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aZe" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/machinery/holopad, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aZf" = ( -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aZg" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/plaque{ - icon_state = "L2" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aZh" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/plaque{ - icon_state = "L4" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aZi" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=2.1-Storage"; - location = "1.5-Fore-Central" - }, -/obj/effect/turf_decal/plaque{ - icon_state = "L6" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aZk" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/plaque{ - icon_state = "L10" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aZl" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/plaque{ - icon_state = "L12" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aZm" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/plaque{ - icon_state = "L14" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aZn" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aZo" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aZp" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=15-Court"; - location = "14.9-CrewQuarters-Central" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aZq" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aZr" = ( -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aZs" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aZv" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/airlock/maintenance/abandoned{ - name = "Storage Room"; - req_access_txt = "12" - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"aZL" = ( -/obj/structure/filingcabinet, -/obj/structure/reagent_dispensers/peppertank{ - 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/engineering) -"aZM" = ( -/obj/structure/table, -/obj/item/radio/intercom{ - dir = 4; - name = "Station Intercom (General)"; - pixel_y = 29 - }, -/obj/machinery/recharger{ - pixel_y = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/engineering) -"aZN" = ( -/obj/structure/table, -/obj/item/paper_bin{ - pixel_x = -1; - pixel_y = 5 - }, -/obj/item/pen, -/obj/machinery/newscaster/security_unit{ - 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/checkpoint/engineering) -"aZQ" = ( -/obj/effect/landmark/start/ai/secondary, -/obj/item/radio/intercom{ - freerange = 1; - listening = 0; - name = "Custom Channel"; - pixel_x = -10; - pixel_y = 22 - }, -/obj/item/radio/intercom{ - freerange = 1; - name = "Common Channel"; - pixel_x = -27 - }, -/obj/item/radio/intercom{ - freerange = 1; - frequency = 1447; - name = "Private Channel"; - pixel_x = -10; - pixel_y = -25 - }, -/obj/machinery/door/window{ - base_state = "rightsecure"; - dir = 4; - icon_state = "rightsecure"; - layer = 4.1; - name = "Secondary AI Core Access"; - obj_integrity = 300; - pixel_x = 4; - req_access_txt = "16" - }, -/turf/open/floor/circuit/green, -/area/ai_monitored/turret_protected/ai) -"aZR" = ( -/obj/machinery/holopad, -/obj/machinery/flasher{ - id = "AI"; - pixel_x = -25; - pixel_y = -25 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/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) -"aZS" = ( -/obj/machinery/ai_slipper{ - uses = 10 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/circuit, -/area/ai_monitored/turret_protected/ai) -"aZV" = ( -/obj/machinery/door/window{ - base_state = "rightsecure"; - dir = 4; - icon_state = "rightsecure"; - name = "Primary AI Core Access"; - obj_integrity = 300; - req_access_txt = "16" - }, -/obj/machinery/camera{ - c_tag = "AI Chamber - Core"; - network = list("aicore") - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/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) -"aZW" = ( -/obj/machinery/ai_slipper{ - uses = 10 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/circuit, -/area/ai_monitored/turret_protected/ai) -"aZX" = ( -/obj/machinery/holopad, -/obj/machinery/flasher{ - id = "AI"; - pixel_x = 25; - pixel_y = 25 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/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) -"aZY" = ( -/obj/effect/landmark/start/ai/secondary, -/obj/item/radio/intercom{ - freerange = 1; - listening = 0; - name = "Custom Channel"; - pixel_x = 10; - pixel_y = 22 - }, -/obj/item/radio/intercom{ - freerange = 1; - name = "Common Channel"; - pixel_x = 27 - }, -/obj/item/radio/intercom{ - freerange = 1; - frequency = 1447; - name = "Private Channel"; - pixel_x = 10; - pixel_y = -25 - }, -/obj/machinery/door/window{ - base_state = "leftsecure"; - dir = 8; - icon_state = "leftsecure"; - layer = 4.1; - name = "Tertiary AI Core Access"; - obj_integrity = 300; - pixel_x = -3; - req_access_txt = "16" - }, -/turf/open/floor/circuit/green, -/area/ai_monitored/turret_protected/ai) -"aZZ" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"baa" = ( -/obj/structure/closet/emcloset, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bab" = ( -/obj/machinery/vending/cigarette, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bac" = ( -/obj/machinery/vending/coffee, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bad" = ( -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bae" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white/corner, -/area/hallway/secondary/entry) -"baf" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/maintenance{ - req_one_access_txt = "12;48;50;1" - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"bag" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/port/fore) -"bai" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"baj" = ( -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"bak" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Cargo Bay Maintenance"; - req_one_access_txt = "48;50" - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"baz" = ( -/obj/machinery/computer/cargo/request, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"baA" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/obj/machinery/status_display/supply{ - pixel_y = 32 - }, -/obj/structure/table, -/obj/item/folder/yellow, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"baB" = ( -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"baC" = ( -/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/hallway/primary/port) -"baD" = ( -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/structure/table, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/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/hallway/primary/port) -"baE" = ( -/turf/closed/wall, -/area/hallway/primary/port) -"baF" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/extinguisher_cabinet{ - pixel_x = -27 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Central Primary Hallway - Fore - Port Corner"; - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"baG" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"baH" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/sign/departments/custodian{ - pixel_x = 32; - pixel_y = -32 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"baI" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"baJ" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/mob/living/simple_animal/bot/cleanbot{ - auto_patrol = 1; - icon_state = "cleanbot1"; - name = "Mopficcer Sweepsky" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"baK" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"baL" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/obj/machinery/light, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet{ - pixel_y = -30 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"baM" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"baN" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"baO" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"baP" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"baQ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"baR" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"baS" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/holopad, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"baT" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"baU" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"baV" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Central Primary Hallway - Fore - Courtroom"; - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"baW" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/obj/machinery/light, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"baX" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"baY" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/obj/structure/extinguisher_cabinet{ - pixel_y = -30 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"baZ" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_x = -27; - pixel_y = -29 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bba" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bbb" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/camera{ - c_tag = "Central Primary Hallway - Fore - Starboard Corner"; - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bbh" = ( -/obj/effect/decal/cleanable/cobweb, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"bbi" = ( -/obj/effect/landmark/xeno_spawn, -/obj/item/cigbutt, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"bbj" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/starboard/fore) -"bbo" = ( -/turf/closed/wall, -/area/maintenance/solars/port/fore) -"bbB" = ( -/obj/item/screwdriver{ - pixel_y = 10 - }, -/obj/item/radio/off, -/obj/machinery/computer/security/telescreen/minisat{ - dir = 4; - pixel_x = -29 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/engineering) -"bbC" = ( -/obj/structure/chair/office/dark{ - dir = 4 - }, -/obj/effect/landmark/start/depsec/engineering, -/turf/open/floor/plasteel, -/area/security/checkpoint/engineering) -"bbD" = ( -/obj/structure/table, -/obj/item/book/manual/wiki/security_space_law, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/requests_console{ - department = "Security"; - departmentType = 5; - pixel_x = 30 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/engineering) -"bbF" = ( -/obj/structure/showcase/cyborg/old{ - dir = 4; - pixel_x = -9; - pixel_y = 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/ai_monitored/turret_protected/ai) -"bbH" = ( -/obj/machinery/camera{ - c_tag = "AI Chamber - Starboard"; - dir = 8; - network = list("aicore") - }, -/obj/structure/showcase/cyborg/old{ - dir = 8; - pixel_x = 9; - pixel_y = 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/ai_monitored/turret_protected/ai) -"bbI" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bbJ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white/corner, -/area/hallway/secondary/entry) -"bbK" = ( -/turf/closed/wall, -/area/security/checkpoint/customs) -"bbL" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bbM" = ( -/obj/item/stack/sheet/cardboard, -/obj/item/storage/box/lights/mixed, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"bbW" = ( -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bbX" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bbY" = ( -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bbZ" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bca" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/machinery/light{ - dir = 4 - }, -/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/hallway/primary/port) -"bcb" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_x = -29 - }, -/obj/machinery/status_display/evac{ - pixel_x = -32 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bcc" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bcg" = ( -/turf/closed/wall, -/area/maintenance/central) -"bch" = ( -/obj/machinery/door/airlock{ - name = "Central Emergency Storage" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/central) -"bci" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/hallway/primary/central) -"bcl" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bcm" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bcs" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bct" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"bcM" = ( -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/engineering) -"bcN" = ( -/obj/machinery/computer/secure_data{ - dir = 8 - }, -/obj/machinery/computer/security/telescreen{ - desc = "Used for monitoring the engine."; - dir = 8; - name = "Engine Monitor"; - network = list("engine"); - pixel_x = 32 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/engineering) -"bcO" = ( -/obj/structure/easel, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/starboard/fore) -"bcP" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/status_display/ai{ - pixel_x = -32 - }, -/turf/open/floor/circuit, -/area/ai_monitored/turret_protected/ai) -"bcQ" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/space, -/area/space/nearstation) -"bcV" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 24 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white/corner, -/area/hallway/secondary/entry) -"bcW" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/security/checkpoint/customs) -"bcX" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/obj/structure/table/reinforced, -/obj/item/book/manual/wiki/security_space_law{ - pixel_x = -3; - pixel_y = 5 - }, -/obj/machinery/light_switch{ - pixel_y = 26 - }, -/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) -"bcZ" = ( -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = 20 - }, -/obj/machinery/computer/security, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/customs) -"bda" = ( -/obj/machinery/computer/card, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/requests_console{ - department = "Security"; - departmentType = 5; - pixel_y = 30 - }, -/obj/machinery/camera{ - c_tag = "Customs Checkpoint" - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/customs) -"bdb" = ( -/obj/machinery/computer/secure_data, -/obj/machinery/newscaster/security_unit{ - 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/customs) -"bdc" = ( -/obj/machinery/light_switch{ - pixel_x = 27 - }, -/obj/structure/reagent_dispensers/peppertank{ - pixel_y = 30 - }, -/obj/structure/closet/secure_closet/security, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 24 - }, -/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) -"bdd" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/port/fore) -"bde" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/space_heater, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"bdr" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bds" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bdt" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bdu" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bdv" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bdw" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/hallway/primary/port) -"bdx" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bdy" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/sorting/mail{ - dir = 1; - sortType = 22 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bdz" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 24 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bdE" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plating, -/area/maintenance/central) -"bdF" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/central) -"bdG" = ( -/turf/closed/wall/r_wall, -/area/maintenance/central) -"bdO" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bdP" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bdQ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bdW" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"bem" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/obj/machinery/camera/autoname{ - dir = 4 - }, -/obj/machinery/button/door{ - desc = "A remote control-switch for the engineering security doors."; - id = "Engineering"; - name = "Engineering Lockdown"; - pixel_x = -24; - pixel_y = -6; - req_access_txt = "1" - }, -/obj/machinery/button/door{ - id = "atmos"; - name = "Atmospherics Lockdown"; - pixel_x = -24; - pixel_y = 5; - req_access_txt = "1" - }, -/obj/structure/cable/yellow{ - icon_state = "2-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/engineering) -"ben" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/engineering) -"beo" = ( -/obj/structure/closet/secure_closet/security/engine, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 24 - }, -/obj/structure/cable/yellow{ - icon_state = "2-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/checkpoint/engineering) -"beq" = ( -/obj/structure/sign/warning/vacuum/external, -/turf/closed/wall/r_wall, -/area/space/nearstation) -"beu" = ( -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/turf/open/floor/circuit, -/area/ai_monitored/turret_protected/ai) -"bex" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/circuit, -/area/ai_monitored/turret_protected/ai) -"beK" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/turf/open/floor/plating, -/area/security/checkpoint/customs) -"beL" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/table/reinforced, -/obj/item/folder/red, -/obj/item/folder/red, -/obj/structure/cable/yellow{ - 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/customs) -"beM" = ( -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/customs) -"beN" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/customs) -"beO" = ( -/obj/structure/chair/office/dark, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/customs) -"beP" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/customs) -"beQ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/customs) -"beR" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Security Maintenance"; - req_access_txt = "1" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"beS" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"beT" = ( -/obj/effect/landmark/blobstart, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"beU" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Mailroom Maintenance"; - req_access_txt = "50" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"bfd" = ( -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bff" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bfg" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bfh" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bfi" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bfn" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Custodial Maintenance"; - req_access_txt = "26" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/central) -"bfo" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/central) -"bfp" = ( -/obj/item/flashlight{ - pixel_x = 1; - pixel_y = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/central) -"bfq" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/central) -"bfE" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -22 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bfF" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bfK" = ( -/obj/structure/closet/emcloset, -/obj/structure/sign/map/left{ - icon_state = "map-left-MS"; - 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/hallway/primary/starboard) -"bfL" = ( -/obj/structure/sign/map/right{ - desc = "A framed picture of the station. Clockwise from security in red at the top, you see engineering in yellow, science in purple, escape in checkered red-and-white, medbay in green, arrivals in checkered red-and-blue, and then cargo in brown."; - icon_state = "map-right-MS"; - pixel_y = 32 - }, -/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/starboard) -"bfM" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"bfN" = ( -/turf/closed/wall, -/area/hallway/primary/starboard) -"bfU" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"bfV" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow, -/turf/open/floor/plating, -/area/security/checkpoint/engineering) -"bfW" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Engineering Security Post"; - req_access_txt = "63" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/engineering) -"bfX" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow, -/turf/open/floor/plating, -/area/security/checkpoint/engineering) -"bgh" = ( -/obj/structure/table/reinforced, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -26 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai) -"bgi" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai) -"bgj" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/obj/machinery/ai_slipper{ - uses = 10 - }, -/turf/open/floor/circuit, -/area/ai_monitored/turret_protected/ai) -"bgk" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/open/floor/circuit, -/area/ai_monitored/turret_protected/ai) -"bgl" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai) -"bgm" = ( -/obj/structure/table/reinforced, -/obj/item/phone{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/cigbutt/cigarbutt{ - pixel_x = 5; - pixel_y = -1 - }, -/obj/item/radio/intercom{ - broadcasting = 1; - frequency = 1447; - listening = 0; - name = "Station Intercom (AI Private)"; - pixel_x = 28 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai) -"bgn" = ( -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/turf/open/space, -/area/space/nearstation) -"bgo" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/turf/open/space, -/area/space/nearstation) -"bgv" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white/corner, -/area/hallway/secondary/entry) -"bgw" = ( -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -22 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/closet, -/obj/item/crowbar, -/obj/item/assembly/flash/handheld, -/obj/item/radio, -/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) -"bgx" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/customs) -"bgy" = ( -/obj/item/paper_bin{ - pixel_x = 1; - pixel_y = 9 - }, -/obj/item/pen, -/obj/structure/table/reinforced, -/obj/structure/cable/yellow{ - 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/customs) -"bgz" = ( -/obj/item/paper, -/obj/structure/table/reinforced, -/obj/machinery/door/window/brigdoor{ - name = "Arrivals Security Checkpoint"; - pixel_y = -8; - req_access_txt = "1" - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/customs) -"bgA" = ( -/obj/machinery/recharger{ - pixel_y = 4 - }, -/obj/structure/table/reinforced, -/obj/structure/cable/yellow{ - 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/customs) -"bgB" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/airalarm{ - pixel_y = 28 - }, -/obj/structure/closet/crate/secure/weapon{ - desc = "A secure clothing crate."; - name = "formal uniform crate"; - req_access_txt = "3" - }, -/obj/item/clothing/under/rank/security/officer/formal, -/obj/item/clothing/under/rank/security/officer/formal, -/obj/item/clothing/under/rank/security/officer/formal, -/obj/item/clothing/under/rank/security/officer/formal, -/obj/item/clothing/under/rank/security/officer/formal, -/obj/item/clothing/under/rank/security/officer/formal, -/obj/item/clothing/suit/armor/navyblue, -/obj/item/clothing/suit/armor/navyblue, -/obj/item/clothing/suit/armor/navyblue, -/obj/item/clothing/suit/armor/navyblue, -/obj/item/clothing/suit/armor/navyblue, -/obj/item/clothing/suit/armor/navyblue, -/obj/item/clothing/under/rank/security/warden/formal, -/obj/item/clothing/suit/armor/vest/warden/navyblue, -/obj/item/clothing/under/rank/security/head_of_security/formal, -/obj/item/clothing/suit/armor/hos/navyblue, -/obj/item/clothing/head/beret/sec/navyofficer, -/obj/item/clothing/head/beret/sec/navyofficer, -/obj/item/clothing/head/beret/sec/navyofficer, -/obj/item/clothing/head/beret/sec/navyofficer, -/obj/item/clothing/head/beret/sec/navyofficer, -/obj/item/clothing/head/beret/sec/navyofficer, -/obj/item/clothing/head/beret/sec/navywarden, -/obj/item/clothing/head/beret/sec/navyhos, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/security/warden) -"bgC" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"bgD" = ( -/obj/machinery/space_heater, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"bgU" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bgV" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bgW" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bgX" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/structure/disposalpipe/junction{ - dir = 2 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bgY" = ( -/obj/effect/turf_decal/tile/brown, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bgZ" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bhe" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/central) -"bhA" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bhB" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=14.2-Central-CrewQuarters"; - location = "14-Starboard-Central" - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bhC" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bhD" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Starboard Primary Hallway" - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bhE" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bhF" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bhG" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bhH" = ( -/obj/machinery/firealarm{ - pixel_y = 32 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bhI" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/machinery/camera{ - c_tag = "Starboard Primary Hallway - Tech Storage" - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bhJ" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bhK" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bhL" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bhM" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bhN" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bhO" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bhP" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/structure/sign/warning/securearea{ - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bhR" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bhS" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=14-Starboard-Central"; - location = "13.3-Engineering-Central" - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bii" = ( -/obj/docking_port/stationary/random{ - dir = 4; - id = "pod_lavaland3"; - name = "lavaland" - }, -/turf/open/space, -/area/space/nearstation) -"bim" = ( -/obj/structure/table/reinforced, -/obj/item/folder/blue{ - pixel_y = 2 - }, -/obj/item/pen, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai) -"bin" = ( -/obj/structure/chair/office/dark{ - dir = 8 - }, -/obj/machinery/status_display/ai{ - pixel_y = -32 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai) -"bio" = ( -/obj/machinery/camera{ - c_tag = "AI Chamber - Aft"; - dir = 1; - network = list("aicore") - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai) -"biq" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"bir" = ( -/obj/structure/chair/office/dark{ - dir = 4 - }, -/obj/machinery/status_display/evac{ - pixel_y = -32 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai) -"bis" = ( -/obj/structure/table/reinforced, -/obj/item/folder/blue{ - pixel_y = 2 - }, -/obj/item/pen, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai) -"biu" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"biv" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white/corner, -/area/hallway/secondary/entry) -"biw" = ( -/obj/structure/sign/warning/pods, -/turf/closed/wall, -/area/security/checkpoint/customs) -"bix" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/closed/wall, -/area/security/checkpoint/customs) -"biy" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/door/airlock/security{ - name = "Customs Desk"; - req_access_txt = "1" - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/security/checkpoint/customs) -"biz" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow, -/turf/open/floor/plating, -/area/security/checkpoint/customs) -"biA" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"biB" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/obj/machinery/door/airlock/maintenance{ - req_one_access_txt = "12;48;50;1" - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"biC" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall, -/area/maintenance/port/fore) -"biN" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/structure/closet/crate{ - icon_state = "crateopen" - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"biO" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"biP" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"biQ" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"biR" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/landmark/start/assistant, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"biW" = ( -/obj/item/storage/box/lights/mixed, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/central) -"biX" = ( -/obj/item/clothing/mask/gas, -/turf/open/floor/plating, -/area/maintenance/central) -"bjl" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/extinguisher_cabinet{ - pixel_x = -27 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bjm" = ( -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bjn" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bjo" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Starboard Primary Hallway" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bjp" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bjq" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bjr" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bjs" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bjt" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bju" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bjv" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/junction{ - dir = 2 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bjw" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bjx" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bjy" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bjz" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bjA" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bjB" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bjC" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bjD" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bjE" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 28 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bjP" = ( -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/aisat/foyer) -"bjQ" = ( -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/aisat_interior) -"bjR" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/aisat_interior) -"bjS" = ( -/obj/machinery/power/terminal{ - dir = 1 - }, -/obj/machinery/flasher{ - id = "AI"; - pixel_x = -24; - pixel_y = 28 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai) -"bjV" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bjW" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bjX" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/cafeteria, -/area/hallway/secondary/entry) -"bjY" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bjZ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/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/hallway/primary/port) -"bka" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bkb" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bkc" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/item/radio/intercom{ - pixel_y = 21 - }, -/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 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bkd" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bke" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/structure/sign/map/left{ - desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; - icon_state = "map-left-MS"; - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bkf" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 30 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/structure/sign/map/right{ - desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; - icon_state = "map-right-MS"; - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bks" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/machinery/autolathe/secure{ - name = "public autolathe" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bkt" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/holopad, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bku" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/effect/turf_decal/tile/brown, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bkv" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/structure/rack, -/obj/item/storage/box, -/obj/item/storage/box, -/obj/item/storage/box, -/obj/item/stack/packageWrap{ - pixel_x = 2; - pixel_y = -3 - }, -/obj/item/stack/packageWrap{ - pixel_x = 2; - pixel_y = -3 - }, -/obj/item/stack/packageWrap{ - pixel_x = 2; - pixel_y = -3 - }, -/obj/item/hand_labeler, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bkw" = ( -/obj/structure/table, -/obj/item/toner, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_x = 30 - }, -/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/hallway/primary/port) -"bkx" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bky" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bkA" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/item/tank/internals/air, -/turf/open/floor/plating, -/area/maintenance/central) -"bkB" = ( -/obj/item/extinguisher, -/turf/open/floor/plating, -/area/maintenance/central) -"bkQ" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bkR" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=13.1-Engineering-Enter"; - location = "12-Central-Starboard" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bkS" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bkT" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Starboard Primary Hallway" - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bkU" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bkV" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bkW" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bkX" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -29 - }, -/obj/machinery/light, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bkY" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet{ - pixel_y = -30 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bkZ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bla" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"blb" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/machinery/camera{ - c_tag = "Starboard Primary Hallway - Auxiliary Tool Storage"; - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"blc" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bld" = ( -/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/starboard) -"ble" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"blf" = ( -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Starboard Primary Hallway - Engineering"; - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"blg" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=13.2-Tcommstore"; - location = "13.1-Engineering-Enter" - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"blh" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bli" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"blt" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/maintenance/disposal) -"blu" = ( -/obj/structure/lattice, -/obj/structure/transit_tube/curved/flipped{ - dir = 4 - }, -/turf/open/space, -/area/space/nearstation) -"blv" = ( -/obj/structure/lattice, -/obj/structure/transit_tube/crossing/horizontal, -/turf/open/space, -/area/space/nearstation) -"blw" = ( -/obj/structure/transit_tube/curved{ - dir = 8 - }, -/turf/open/space, -/area/space/nearstation) -"blx" = ( -/turf/closed/wall, -/area/space/nearstation) -"bly" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/turf/open/space, -/area/space/nearstation) -"blB" = ( -/obj/machinery/computer/teleporter, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -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 - }, -/obj/machinery/light{ - dir = 1; - light_color = "#cee5d2" - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat/foyer) -"blC" = ( -/obj/machinery/teleport/station, -/obj/machinery/status_display/evac{ - 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/ai_monitored/turret_protected/aisat/foyer) -"blD" = ( -/obj/machinery/teleport/hub, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/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/foyer) -"blE" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai) -"blF" = ( -/obj/structure/showcase/cyborg/old{ - pixel_y = 20 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/landmark/start/cyborg, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"blG" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/landmark/start/cyborg, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"blH" = ( -/obj/structure/showcase/cyborg/old{ - pixel_y = 20 - }, -/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) -"blI" = ( -/obj/machinery/door/airlock/highsecurity{ - name = "AI Chamber"; - req_access_txt = "16" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "AI Chamber entrance shutters"; - name = "AI Chamber entrance shutters" - }, -/obj/machinery/flasher{ - id = "AI"; - pixel_x = -26; - pixel_y = 3 - }, -/obj/item/radio/intercom{ - broadcasting = 1; - frequency = 1447; - listening = 0; - name = "Station Intercom (AI Private)"; - pixel_x = 28 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"blT" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"blU" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white/corner, -/area/hallway/secondary/entry) -"blW" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"blX" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"blY" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=5-Customs"; - location = "4-Customs" - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"blZ" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bma" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bmb" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bmc" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bmd" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bmk" = ( -/obj/machinery/door/firedoor, -/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/hallway/primary/port) -"bml" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bmm" = ( -/obj/structure/sign/directions/security{ - dir = 1; - pixel_y = 8 - }, -/obj/structure/sign/directions/engineering{ - dir = 4 - }, -/obj/structure/sign/directions/command{ - pixel_y = -8 - }, -/turf/closed/wall/r_wall, -/area/hallway/primary/port) -"bmn" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bmr" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating, -/area/maintenance/central) -"bms" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 - }, -/obj/machinery/portable_atmospherics/canister/air, -/turf/open/floor/plating, -/area/maintenance/central) -"bmt" = ( -/obj/item/radio/off, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/central) -"bmu" = ( -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=4"; - dir = 4; - freq = 1400; - location = "Bridge" - }, -/obj/structure/plasticflaps/opaque, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/maintenance/central) -"bmJ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/status_display/evac{ - pixel_x = -32 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bmK" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bmQ" = ( -/obj/machinery/door/airlock/maintenance{ - req_one_access_txt = "12;25;46" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bmR" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/maintenance/starboard) -"bmS" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/airlock{ - name = "Starboard Emergency Storage" - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bmT" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock/maintenance{ - req_one_access_txt = "12;25;46" - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bmU" = ( -/obj/structure/sign/directions/engineering{ - dir = 4; - pixel_y = 8 - }, -/turf/closed/wall, -/area/maintenance/starboard) -"bmV" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bmW" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bmX" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 8; - sortType = 6 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bno" = ( -/obj/structure/transit_tube/diagonal, -/turf/open/space, -/area/space/nearstation) -"bnw" = ( -/obj/structure/showcase/cyborg/old{ - dir = 4; - pixel_x = -9; - pixel_y = 2 - }, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -22 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat/foyer) -"bnx" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat/foyer) -"bny" = ( -/obj/machinery/turretid{ - control_area = "/area/ai_monitored/turret_protected/aisat_interior"; - name = "Antechamber Turret Control"; - pixel_x = 30; - req_access_txt = "65" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/obj/machinery/ai_slipper{ - uses = 10 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat/foyer) -"bnz" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/aisat_interior) -"bnA" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "MiniSat - Antechamber"; - dir = 4; - network = list("minisat") - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"bnB" = ( -/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/landmark/start/cyborg, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"bnD" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/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) -"bnK" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -24 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/camera{ - c_tag = "Arrivals - Station Entrance"; - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bnL" = ( -/obj/machinery/hydroponics/constructable, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/sign/poster/official/hydro_ad{ - pixel_y = -32 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"bnR" = ( -/obj/structure/chair/comfy, -/turf/open/floor/plasteel/grimy, -/area/hallway/primary/port) -"bnS" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bnT" = ( -/obj/structure/disposalpipe/junction/flip{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bnU" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/firealarm{ - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bnV" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bnW" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bnX" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bnY" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bnZ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/camera{ - c_tag = "Port Primary Hallway - Middle" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"boa" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"boc" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bod" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = 21 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"boe" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bof" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bog" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"boh" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"boi" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Port Primary Hallway" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"boj" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bok" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=4-Customs"; - location = "3-Central-Port" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"boJ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/item/radio/intercom{ - dir = 8; - name = "Station Intercom (General)"; - pixel_x = -28 - }, -/obj/machinery/camera{ - c_tag = "Central Primary Hallway - Starboard - Art Storage"; - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"boK" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"boV" = ( -/obj/item/storage/box/lights/mixed, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/starboard) -"boW" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"boX" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"boY" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plating, -/area/maintenance/starboard) -"boZ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/space_heater, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bpa" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bpb" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/starboard) -"bpc" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bpd" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -27 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bpe" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bpf" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bpt" = ( -/obj/machinery/vending/wardrobe/sec_wardrobe, -/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) -"bpu" = ( -/turf/closed/wall/r_wall, -/area/space/nearstation) -"bpw" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/transit_tube/horizontal, -/turf/open/space, -/area/space/nearstation) -"bpx" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/transit_tube/crossing/horizontal, -/turf/open/space, -/area/space/nearstation) -"bpy" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/transit_tube/horizontal, -/turf/open/space, -/area/space/nearstation) -"bpz" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/transit_tube/junction/flipped{ - dir = 8 - }, -/turf/open/space, -/area/space/nearstation) -"bpA" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/space, -/area/space/nearstation) -"bpB" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/space, -/area/space/nearstation) -"bpI" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/hatch{ - name = "MiniSat Foyer"; - req_one_access_txt = "32;19" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat/foyer) -"bpJ" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat/foyer) -"bpL" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat/foyer) -"bpM" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/hatch{ - name = "MiniSat Antechamber"; - req_one_access_txt = "32;19" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"bpN" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"bpO" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"bpP" = ( -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/ai_slipper{ - uses = 10 - }, -/mob/living/simple_animal/bot/secbot/pingsky, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"bpQ" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"bpR" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"bpS" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "MiniSat Maintenance"; - req_access_txt = "32" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"bqb" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bqc" = ( -/obj/machinery/holopad, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bqd" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bqj" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bqk" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bql" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bqm" = ( -/obj/machinery/turretid{ - icon_state = "control_stun"; - name = "AI Chamber turret control"; - pixel_x = 3; - pixel_y = -23 - }, -/obj/machinery/door/window{ - base_state = "leftsecure"; - dir = 8; - icon_state = "leftsecure"; - name = "Primary AI Core Access"; - obj_integrity = 300; - req_access_txt = "16" - }, -/obj/machinery/newscaster/security_unit{ - pixel_x = 4; - pixel_y = 33 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/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) -"bqn" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bqo" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bqp" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bqq" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bqr" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bqs" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bqt" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/sorting/mail{ - dir = 8; - sortType = 3 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bqu" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bqv" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bqw" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bqx" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Port Primary Hallway" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bqy" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bqz" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bqA" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bra" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"brb" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"brc" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"brl" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Bar Maintenance"; - req_access_txt = "25" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"brm" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"brn" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bro" = ( -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/structure/disposalpipe/sorting/mail{ - dir = 2; - sortType = 19 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"brp" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance{ - req_one_access_txt = "12;25;46" - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"brq" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"brr" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/starboard) -"brs" = ( -/obj/item/assembly/prox_sensor, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/starboard) -"brt" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/item/storage/box/lights/mixed, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bru" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"brv" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/maintenance{ - req_one_access_txt = "12;25;46" - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"brw" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"brx" = ( -/obj/machinery/requests_console{ - department = "AI"; - departmentType = 5; - pixel_x = 30; - pixel_y = 30 - }, -/obj/machinery/ai_slipper{ - uses = 10 - }, -/obj/machinery/flasher{ - id = "AI"; - pixel_x = 23; - pixel_y = -23 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/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) -"bry" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"brz" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/sign/warning/securearea{ - pixel_x = 32 - }, -/turf/open/floor/plasteel/dark/corner, -/area/hallway/primary/starboard) -"brM" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/transit_tube/curved{ - dir = 4 - }, -/turf/open/space, -/area/space/nearstation) -"brO" = ( -/obj/structure/transit_tube/diagonal/topleft, -/turf/open/space, -/area/space/nearstation) -"brW" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -28 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat/foyer) -"brX" = ( -/obj/machinery/status_display/ai{ - pixel_y = 32 - }, -/obj/machinery/porta_turret/ai, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/obj/machinery/computer/security/telescreen{ - desc = "Used for watching the RD's goons from the safety of his office."; - dir = 4; - name = "Research Monitor"; - network = list("rd"); - 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/ai_monitored/turret_protected/aisat_interior) -"brY" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/power/apc/highcap/five_k{ - areastring = "/area/ai_monitored/turret_protected/aisat/foyer"; - name = "MiniSat Foyer APC"; - pixel_y = -29 - }, -/obj/structure/cable/yellow, -/obj/machinery/camera/motion{ - c_tag = "MiniSat Foyer"; - dir = 8; - network = list("minisat") - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat/foyer) -"brZ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/aisat_interior) -"bsa" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -22 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/mob/living/simple_animal/bot/floorbot, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"bsb" = ( -/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/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"bsc" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"bsd" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"bse" = ( -/obj/machinery/status_display/evac{ - pixel_y = 32 - }, -/obj/machinery/porta_turret/ai, -/obj/machinery/computer/security/telescreen/minisat{ - 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/ai_monitored/turret_protected/aisat_interior) -"bsf" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat/foyer) -"bsj" = ( -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/space, -/area/space/nearstation) -"bsk" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"bsl" = ( -/obj/machinery/vending/cola/random, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bsm" = ( -/obj/item/beacon, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bsn" = ( -/obj/structure/closet/firecloset, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bso" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bsu" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bsv" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bsw" = ( -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -28 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bsx" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bsy" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bsz" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bsA" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet{ - pixel_y = -30 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bsB" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bsC" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bsD" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bsE" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/status_display/evac{ - pixel_y = -32 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bsG" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/light, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bsH" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Port Primary Hallway - Starboard"; - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bsJ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Port Primary Hallway" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bsK" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bsL" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=7-Command-Starboard"; - location = "6-Port-Central" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bth" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/effect/landmark/blobstart, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/central) -"bti" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/maintenance{ - req_one_access_txt = "20;12" - }, -/turf/open/floor/plating, -/area/maintenance/central) -"btj" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"btk" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bts" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/starboard) -"btt" = ( -/obj/item/stock_parts/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, -/area/maintenance/starboard) -"btu" = ( -/obj/item/storage/toolbox/emergency, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/starboard) -"btv" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/item/cigbutt, -/turf/open/floor/plating, -/area/maintenance/starboard) -"btw" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/starboard) -"btx" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel/dark/corner{ - dir = 1 - }, -/area/hallway/primary/starboard) -"bty" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel/dark/corner, -/area/hallway/primary/starboard) -"btz" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Engineering Foyer Maintenance"; - req_one_access_txt = "32;19" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/starboard) -"btI" = ( -/obj/structure/lattice, -/obj/structure/transit_tube/curved{ - dir = 4 - }, -/turf/open/space, -/area/space/nearstation) -"btJ" = ( -/obj/structure/lattice, -/obj/structure/transit_tube/curved/flipped{ - dir = 8 - }, -/turf/open/space, -/area/space/nearstation) -"btK" = ( -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/obj/structure/lattice, -/turf/open/space, -/area/space/nearstation) -"btL" = ( -/turf/closed/wall/r_wall, -/area/tcommsat/computer) -"btM" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/tcommsat/computer) -"btN" = ( -/obj/machinery/door/airlock/hatch{ - name = "Telecomms Control Room"; - req_one_access_txt = "19; 61" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - 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/tcommsat/computer) -"btO" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"btP" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"btQ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"btR" = ( -/obj/item/kirbyplants{ - icon_state = "plant-18" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"btS" = ( -/obj/structure/sign/warning/vacuum/external{ - pixel_y = 32 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"btT" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"btW" = ( -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/holopad/secure, -/turf/open/floor/plasteel, -/area/engineering/gravity_generator) -"btY" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"btZ" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bua" = ( -/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/port) -"bub" = ( -/obj/structure/closet/emcloset, -/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/hallway/primary/port) -"buc" = ( -/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/port) -"bud" = ( -/obj/machinery/door/airlock/maintenance{ - req_one_access_txt = "12;27;37" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/port) -"buf" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/central) -"buj" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"buk" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/sorting/mail{ - dir = 1; - sortType = 15 - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bul" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"buK" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/camera{ - c_tag = "Captain's Office - Emergency Escape"; - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, -/area/maintenance/central) -"buL" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"buM" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"buU" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 - }, -/obj/machinery/portable_atmospherics/canister/air, -/turf/open/floor/plating, -/area/maintenance/starboard) -"buV" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, -/area/maintenance/starboard) -"buX" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"buY" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance{ - req_one_access_txt = "12;25;46" - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"buZ" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel/dark/corner{ - dir = 1 - }, -/area/hallway/primary/starboard) -"bva" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bvb" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel/dark/corner, -/area/hallway/primary/starboard) -"bvc" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bvd" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bve" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, -/area/maintenance/starboard) -"bvf" = ( -/obj/item/radio/intercom{ - freerange = 1; - name = "Common Channel"; - pixel_x = -27; - pixel_y = -7 - }, -/obj/item/radio/intercom{ - freerange = 1; - listening = 0; - name = "Custom Channel"; - pixel_y = -27 - }, -/obj/item/radio/intercom{ - freerange = 1; - frequency = 1447; - name = "Private Channel"; - pixel_x = 27; - pixel_y = -7 - }, -/obj/effect/landmark/start/ai, -/obj/machinery/button/door{ - id = "AI Core shutters"; - name = "AI Core shutters control"; - pixel_x = 24; - pixel_y = -22; - req_access_txt = "16" - }, -/obj/machinery/button/door{ - id = "AI Chamber entrance shutters"; - name = "AI Chamber entrance shutters control"; - pixel_x = -23; - pixel_y = -23; - req_access_txt = "16" - }, -/turf/open/floor/circuit/green, -/area/ai_monitored/turret_protected/ai) -"bvg" = ( -/obj/effect/landmark/blobstart, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bvh" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/starboard) -"bvu" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/announcement_system, -/turf/open/floor/plasteel/grimy, -/area/tcommsat/computer) -"bvw" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/showcase/cyborg/old{ - pixel_y = 20 - }, -/turf/open/floor/plasteel/grimy, -/area/tcommsat/computer) -"bvx" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/grimy, -/area/tcommsat/computer) -"bvy" = ( -/obj/machinery/light_switch{ - pixel_y = 28 - }, -/obj/structure/showcase/cyborg/old{ - pixel_y = 20 - }, -/turf/open/floor/plasteel/grimy, -/area/tcommsat/computer) -"bvz" = ( -/obj/structure/table/wood, -/obj/machinery/status_display/ai{ - pixel_y = 31 - }, -/obj/item/flashlight/lamp, -/turf/open/floor/plasteel/grimy, -/area/tcommsat/computer) -"bvA" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/item/radio/intercom{ - dir = 8; - freerange = 1; - name = "Station Intercom (Telecomms)"; - pixel_y = 30 - }, -/obj/structure/table/wood, -/obj/item/phone{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/cigbutt/cigarbutt{ - pixel_x = 5; - pixel_y = -1 - }, -/turf/open/floor/plasteel/grimy, -/area/tcommsat/computer) -"bvB" = ( -/obj/item/kirbyplants{ - icon_state = "plant-20" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bvC" = ( -/obj/structure/chair, -/obj/structure/sign/warning/vacuum/external{ - pixel_y = 32 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bvD" = ( -/obj/structure/chair, -/obj/effect/landmark/start/assistant, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bvE" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bvF" = ( -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bvG" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bvH" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bvI" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bvJ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bvK" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bvL" = ( -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bvN" = ( -/obj/machinery/atmospherics/pipe/simple/dark/visible, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"bvT" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/science/xenobiology) -"bvV" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bvY" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bwh" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/extinguisher_cabinet{ - pixel_x = -27 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bwG" = ( -/obj/machinery/door/airlock/command{ - name = "Emergency Escape"; - req_access_txt = "20" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/central) -"bwH" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/junction, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/central) -"bwI" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bwJ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bwY" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bwZ" = ( -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/floor/plasteel/dark/corner{ - dir = 1 - }, -/area/hallway/primary/starboard) -"bxa" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bxb" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel/dark/corner, -/area/hallway/primary/starboard) -"bxn" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/obj/structure/chair/office/dark{ - dir = 1 - }, -/turf/open/floor/plasteel/grimy, -/area/tcommsat/computer) -"bxo" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/grimy, -/area/tcommsat/computer) -"bxp" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/tcommsat/computer) -"bxq" = ( -/turf/open/floor/plasteel/grimy, -/area/tcommsat/computer) -"bxr" = ( -/obj/structure/chair/office/dark{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/tcommsat/computer) -"bxs" = ( -/obj/machinery/computer/security/telescreen{ - dir = 8; - name = "Telecomms Camera Monitor"; - network = list("tcomms"); - pixel_x = 26 - }, -/obj/machinery/computer/telecomms/monitor{ - dir = 8; - network = "tcommsat" - }, -/turf/open/floor/plasteel/grimy, -/area/tcommsat/computer) -"bxt" = ( -/obj/machinery/light, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bxu" = ( -/obj/machinery/camera{ - c_tag = "Arrivals - Middle Arm - Far"; - dir = 1 - }, -/obj/machinery/status_display/evac{ - pixel_y = -32 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bxv" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bxw" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bxx" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/sign/warning/vacuum/external{ - pixel_y = -32 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bxy" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/light, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bxz" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Arrivals - Middle Arm"; - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bxA" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bxB" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel/white/corner, -/area/hallway/secondary/entry) -"bxC" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/white/corner, -/area/hallway/secondary/entry) -"bxD" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel/white/corner, -/area/hallway/secondary/entry) -"bxG" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/window/reinforced, -/obj/structure/showcase/machinery/cloning_pod{ - layer = 4; - pixel_x = 2; - pixel_y = 5 - }, -/turf/open/floor/carpet, -/area/command/corporate_showroom) -"bxL" = ( -/obj/structure/sign/warning/vacuum/external{ - pixel_y = 32 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/vending/coffee, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bxN" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bxS" = ( -/obj/item/cigbutt, -/obj/machinery/power/apc/highcap/five_k{ - areastring = "/area/maintenance/port"; - name = "Port Maintenance APC"; - pixel_y = -24 - }, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/maintenance/port) -"bxT" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/port) -"bxY" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"byu" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/central) -"byv" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -24 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"byw" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"byx" = ( -/obj/machinery/porta_turret/ai, -/obj/machinery/flasher{ - id = "AI"; - pixel_y = 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/ai_monitored/turret_protected/ai) -"byM" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 24 - }, -/obj/effect/turf_decal/tile/blue, -/mob/living/simple_animal/bot/cleanbot, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"byP" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/item/beacon, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/turf/open/floor/plasteel/dark/corner{ - dir = 1 - }, -/area/hallway/primary/starboard) -"byQ" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark/corner, -/area/hallway/primary/starboard) -"bzi" = ( -/obj/structure/lattice, -/obj/structure/grille, -/turf/closed/wall/r_wall, -/area/space/nearstation) -"bzj" = ( -/obj/structure/grille, -/obj/structure/lattice, -/turf/closed/wall/r_wall, -/area/space/nearstation) -"bzn" = ( -/obj/machinery/computer/message_monitor{ - dir = 4 - }, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/turf/open/floor/plasteel/grimy, -/area/tcommsat/computer) -"bzo" = ( -/obj/structure/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/plasteel/grimy, -/area/tcommsat/computer) -"bzp" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel/grimy, -/area/tcommsat/computer) -"bzr" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/grimy, -/area/tcommsat/computer) -"bzs" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/chair/office/dark, -/turf/open/floor/plasteel/grimy, -/area/tcommsat/computer) -"bzw" = ( -/obj/machinery/door/airlock{ - name = "Port Emergency Storage" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bzC" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/port) -"bzI" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bzJ" = ( -/turf/closed/wall, -/area/hallway/secondary/command) -"bzL" = ( -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"bzM" = ( -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = 21 - }, -/obj/structure/sign/warning/electricshock{ - pixel_y = 32 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"bzN" = ( -/obj/machinery/status_display/evac{ - pixel_y = 32 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"bzO" = ( -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = 21 - }, -/obj/effect/turf_decal/bot, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"bzP" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/flasher{ - id = "hopflash"; - pixel_x = 28; - pixel_y = -28 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"bzQ" = ( -/obj/structure/table, -/obj/item/paper_bin{ - pixel_x = -2; - pixel_y = 4 - }, -/obj/item/pen, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"bzR" = ( -/turf/closed/wall/r_wall, -/area/hallway/secondary/command) -"bAh" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/maintenance/central) -"bAx" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/pump, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/camera{ - c_tag = "Starboard Primary Hallway - Atmospherics"; - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/hallway/primary/starboard) -"bAy" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bAz" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel/dark/corner, -/area/hallway/primary/starboard) -"bAS" = ( -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 2 - }, -/obj/structure/lattice, -/turf/open/space, -/area/space/nearstation) -"bAT" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 2 - }, -/turf/open/space, -/area/space/nearstation) -"bAU" = ( -/obj/machinery/microwave{ - pixel_y = 4 - }, -/obj/structure/table/wood, -/turf/open/floor/plasteel/grimy, -/area/tcommsat/computer) -"bAV" = ( -/obj/machinery/light/small, -/obj/item/storage/box/donkpockets, -/obj/structure/table/wood, -/turf/open/floor/plasteel/grimy, -/area/tcommsat/computer) -"bAW" = ( -/obj/structure/table/wood, -/obj/machinery/status_display/evac{ - pixel_y = 31 - }, -/obj/item/radio/off{ - pixel_y = 4 - }, -/obj/item/screwdriver{ - pixel_y = 10 - }, -/turf/open/floor/plasteel/grimy, -/area/tcommsat/computer) -"bAX" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/grimy, -/area/tcommsat/computer) -"bAY" = ( -/obj/structure/filingcabinet{ - pixel_x = 3 - }, -/turf/open/floor/plasteel/grimy, -/area/tcommsat/computer) -"bBa" = ( -/obj/machinery/requests_console{ - announcementConsole = 1; - department = "Telecomms Admin"; - departmentType = 5; - name = "Telecomms RC"; - pixel_y = -30 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 24 - }, -/obj/item/paper_bin{ - pixel_x = -1; - pixel_y = 6 - }, -/obj/structure/table/wood, -/turf/open/floor/plasteel/grimy, -/area/tcommsat/computer) -"bBb" = ( -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/obj/structure/lattice, -/turf/open/space, -/area/space/nearstation) -"bBc" = ( -/obj/structure/closet/emcloset, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bBh" = ( -/obj/structure/table/wood, -/obj/item/reagent_containers/food/snacks/chips, -/turf/open/floor/plasteel/grimy, -/area/hallway/primary/port) -"bBj" = ( -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/starboard) -"bBk" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/command/gateway) -"bBl" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bBq" = ( -/obj/structure/rack, -/obj/item/flashlight, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/port) -"bBy" = ( -/obj/structure/sign/directions/command{ - dir = 4; - pixel_y = -8 - }, -/obj/structure/sign/directions/security{ - dir = 1; - pixel_y = 8 - }, -/obj/structure/sign/directions/engineering{ - dir = 4 - }, -/turf/closed/wall, -/area/hallway/secondary/command) -"bBz" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/turf/open/floor/plating, -/area/hallway/secondary/command) -"bBA" = ( -/obj/machinery/door/poddoor/shutters/preopen{ - id = "hopqueue"; - name = "HoP Queue Shutters" - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/loading_area{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"bBB" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/hallway/secondary/command) -"bBC" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "hopqueue"; - name = "HoP Queue Shutters" - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/effect/turf_decal/loading_area, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"bBD" = ( -/obj/structure/sign/directions/command{ - dir = 1; - pixel_y = -8 - }, -/turf/closed/wall/r_wall, -/area/hallway/secondary/command) -"bBG" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/goonplaque{ - desc = "\"This is a plaque in honour of our comrades on the G4407 Stations. Hopefully TG4407 model can live up to your fame and fortune.\" Scratched in beneath that is a crude image of sentient postcards in a realm of darkness. The station model number is MSv42A-160516" - }, -/area/hallway/primary/port) -"bBO" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock/maintenance{ - req_one_access_txt = "20;12" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/central) -"bBP" = ( -/obj/structure/sign/directions/engineering{ - dir = 4 - }, -/obj/structure/sign/directions/security{ - dir = 1; - pixel_y = 8 - }, -/obj/structure/sign/directions/command{ - dir = 8; - pixel_y = -8 - }, -/turf/closed/wall, -/area/maintenance/central) -"bBQ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bBR" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=12-Central-Starboard"; - location = "11.1-Command-Starboard" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bBW" = ( -/obj/machinery/camera{ - c_tag = "Head of Personnel's Office"; - dir = 1 - }, -/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, -/obj/machinery/light, -/turf/open/floor/wood, -/area/command/heads_quarters/hop) -"bCe" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/pump, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/hallway/primary/starboard) -"bCf" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel/dark/corner, -/area/hallway/primary/starboard) -"bCz" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/purple/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/orange/visible, -/turf/open/space, -/area/space/nearstation) -"bCD" = ( -/turf/closed/wall/r_wall, -/area/tcommsat/server) -"bCE" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/tcommsat/server) -"bCF" = ( -/obj/machinery/door/airlock/hatch{ - name = "Telecomms Server Room" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/turf/open/floor/plasteel/dark, -/area/tcommsat/server) -"bCG" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/warning/vacuum/external, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"bCH" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white/corner, -/area/hallway/secondary/entry) -"bCI" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bCJ" = ( -/obj/item/storage/toolbox/emergency, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/port) -"bCK" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bCN" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bCQ" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/white/corner, -/area/hallway/secondary/entry) -"bCW" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bCX" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/junction{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bCY" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bCZ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock/public/glass{ - name = "Command Hallway" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"bDa" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"bDb" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"bDd" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"bDe" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"bDf" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"bDg" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"bDh" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = 21 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"bDi" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/status_display/evac{ - pixel_y = 32 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"bDj" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"bDk" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"bDl" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"bDm" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"bDn" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"bDo" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/status_display/ai{ - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"bDq" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"bDr" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"bDs" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"bDu" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = 21 - }, -/obj/machinery/camera{ - c_tag = "Command Hallway - Starboard" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"bDv" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/status_display/evac{ - pixel_y = 32 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"bDw" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/airalarm{ - pixel_y = 32 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"bDx" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"bDy" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Command Hallway" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"bDz" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bDA" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bDB" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bDM" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/scrubber, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/hallway/primary/starboard) -"bDN" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bEf" = ( -/obj/machinery/telecomms/processor/preset_one, -/obj/machinery/camera{ - c_tag = "Telecomms - Server Room - Fore-Port"; - network = list("ss13","tcomms") - }, -/turf/open/floor/circuit/green/telecomms/mainframe, -/area/tcommsat/server) -"bEg" = ( -/obj/structure/showcase/cyborg/old{ - pixel_y = 20 - }, -/turf/open/floor/plasteel/dark/telecomms, -/area/tcommsat/server) -"bEh" = ( -/obj/machinery/telecomms/receiver/preset_left, -/turf/open/floor/circuit/green/telecomms/mainframe, -/area/tcommsat/server) -"bEi" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/dark, -/area/tcommsat/server) -"bEj" = ( -/obj/machinery/telecomms/receiver/preset_right, -/turf/open/floor/circuit/green/telecomms/mainframe, -/area/tcommsat/server) -"bEk" = ( -/obj/machinery/telecomms/processor/preset_three, -/obj/machinery/camera{ - c_tag = "Telecomms - Server Room - Fore-Starboard"; - network = list("ss13","tcomms") - }, -/turf/open/floor/circuit/green/telecomms/mainframe, -/area/tcommsat/server) -"bEl" = ( -/obj/machinery/door/airlock/external{ - name = "Transport Airlock" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"bEm" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"bEn" = ( -/obj/machinery/status_display/evac{ - pixel_x = 32 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/white/corner, -/area/hallway/secondary/entry) -"bEo" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/item/storage/box/lights/mixed, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bEp" = ( -/obj/machinery/vending/coffee, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/port) -"bEt" = ( -/obj/structure/chair/comfy{ - dir = 8 - }, -/turf/open/floor/plasteel/grimy, -/area/hallway/primary/port) -"bEB" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=11.1-Command-Starboard"; - location = "11-Command-Port" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bEC" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bED" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/public/glass{ - name = "Command Hallway" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"bEE" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"bEF" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"bEG" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"bEH" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/light, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"bEI" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/extinguisher_cabinet{ - pixel_y = -30 - }, -/obj/machinery/camera{ - c_tag = "Command Hallway - Port"; - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"bEJ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"bEK" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"bEL" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"bEM" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/obj/machinery/newscaster{ - pixel_y = -29 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"bEN" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"bEO" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"bEP" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"bEQ" = ( -/obj/machinery/holopad, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"bER" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"bES" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"bET" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/light, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"bEU" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"bEV" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/machinery/newscaster{ - pixel_y = -29 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"bEW" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"bEX" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"bEY" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"bEZ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/extinguisher_cabinet{ - pixel_y = -30 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"bFa" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/light, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"bFb" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"bFc" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"bFd" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"bFe" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"bFf" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Command Hallway" - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"bFg" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bFh" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=7.5-Starboard-Aft-Corner"; - location = "7-Command-Starboard" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bFi" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bFA" = ( -/obj/machinery/door/airlock{ - name = "Theatre Stage"; - req_one_access_txt = "12;46" - }, -/obj/structure/cable/yellow{ - 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/starboard) -"bFB" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bFC" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/scrubber, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/window/reinforced, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/hallway/primary/starboard) -"bFD" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bFE" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel/dark/corner, -/area/hallway/primary/starboard) -"bFY" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 4 - }, -/turf/open/space, -/area/space/nearstation) -"bGc" = ( -/obj/machinery/telecomms/bus/preset_one, -/turf/open/floor/circuit/green/telecomms/mainframe, -/area/tcommsat/server) -"bGd" = ( -/turf/open/floor/plasteel/dark/telecomms, -/area/tcommsat/server) -"bGe" = ( -/turf/open/floor/circuit/green/telecomms/mainframe, -/area/tcommsat/server) -"bGf" = ( -/obj/machinery/telecomms/bus/preset_three, -/turf/open/floor/circuit/green/telecomms/mainframe, -/area/tcommsat/server) -"bGh" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat/foyer) -"bGj" = ( -/obj/machinery/vending/cola/random, -/obj/machinery/newscaster{ - pixel_x = -30 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/port) -"bGp" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bGq" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Library Maintenance"; - req_one_access_txt = "12;37" - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bGw" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/camera{ - c_tag = "Central Primary Hallway - Port"; - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bGF" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow, -/turf/open/floor/plating, -/area/hallway/secondary/command) -"bGG" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"bGH" = ( -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"bGI" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"bGJ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"bGK" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"bGL" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, -/obj/machinery/camera{ - c_tag = "Command Hallway - Central"; - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"bGQ" = ( -/obj/machinery/vending/cola/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/command) -"bGR" = ( -/obj/machinery/vending/cigarette, -/obj/machinery/newscaster{ - 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/command) -"bGS" = ( -/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/command) -"bGT" = ( -/obj/machinery/door/airlock/maintenance{ - req_one_access_txt = "12;17" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/central) -"bGU" = ( -/obj/structure/sign/directions/evac, -/obj/structure/sign/directions/medical{ - pixel_y = 8 - }, -/obj/structure/sign/directions/science{ - pixel_y = -8 - }, -/turf/closed/wall, -/area/maintenance/central) -"bGV" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bGW" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bGX" = ( -/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) -"bHl" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bHm" = ( -/obj/item/crowbar, -/obj/item/wrench, -/obj/structure/table, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bHn" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=13.3-Engineering-Central"; - location = "13.2-Tcommstore" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bHo" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 24 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel/dark/corner, -/area/hallway/primary/starboard) -"bHr" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/orange/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bHC" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plasteel/dark/telecomms, -/area/tcommsat/server) -"bHD" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plasteel/dark/telecomms, -/area/tcommsat/server) -"bHF" = ( -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plasteel/dark/telecomms, -/area/tcommsat/server) -"bHG" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plasteel/dark/telecomms, -/area/tcommsat/server) -"bHH" = ( -/obj/structure/closet/firecloset, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bHI" = ( -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/white/corner, -/area/hallway/secondary/entry) -"bHJ" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/newscaster{ - pixel_x = 28; - pixel_y = 1 - }, -/turf/open/floor/plasteel/white/corner, -/area/hallway/secondary/entry) -"bHM" = ( -/obj/structure/chair/comfy{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/hallway/primary/port) -"bHW" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bHX" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bIi" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"bIj" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"bIk" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"bIl" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/hallway/secondary/command) -"bIq" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/central) -"bIr" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bIs" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bIv" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 10 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"bIx" = ( -/obj/structure/rack, -/obj/item/clothing/shoes/winterboots, -/obj/item/clothing/suit/hooded/wintercoat, -/turf/open/floor/plating, -/area/maintenance/department/science/xenobiology) -"bID" = ( -/obj/structure/cable, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solars/port/fore) -"bIE" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, -/area/maintenance/starboard) -"bIF" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/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/hallway/primary/starboard) -"bIG" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bIH" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/item/kirbyplants{ - icon_state = "plant-22" - }, -/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/hallway/primary/starboard) -"bJb" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/yellow/visible{ - dir = 4 - }, -/turf/open/space, -/area/space/nearstation) -"bJe" = ( -/obj/structure/lattice, -/obj/structure/grille, -/obj/structure/lattice, -/obj/structure/lattice, -/turf/closed/wall/r_wall, -/area/space/nearstation) -"bJf" = ( -/obj/structure/lattice, -/obj/structure/grille, -/obj/structure/lattice, -/turf/closed/wall/r_wall, -/area/space/nearstation) -"bJg" = ( -/obj/machinery/telecomms/message_server, -/turf/open/floor/circuit/telecomms/mainframe, -/area/tcommsat/server) -"bJh" = ( -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, -/turf/open/floor/plasteel/grimy, -/area/tcommsat/computer) -"bJi" = ( -/obj/machinery/light/small, -/obj/item/folder, -/obj/item/folder, -/obj/machinery/camera{ - c_tag = "Telecomms - Control Room"; - dir = 1; - network = list("ss13","tcomms") - }, -/obj/structure/table/wood, -/obj/item/pen, -/turf/open/floor/plasteel/grimy, -/area/tcommsat/computer) -"bJj" = ( -/obj/machinery/door/airlock/maintenance{ - req_one_access_txt = "12;27;37" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bJk" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/dark/telecomms, -/area/tcommsat/server) -"bJl" = ( -/obj/structure/lattice, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/space, -/area/space/nearstation) -"bJm" = ( -/obj/machinery/telecomms/bus/preset_two, -/turf/open/floor/circuit/telecomms/mainframe, -/area/tcommsat/server) -"bJn" = ( -/obj/machinery/blackbox_recorder, -/turf/open/floor/circuit/telecomms/mainframe, -/area/tcommsat/server) -"bJo" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/white/corner, -/area/hallway/secondary/entry) -"bJp" = ( -/obj/machinery/vending/snack/random, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/port) -"bJq" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bJr" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bJs" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bJC" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bJN" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"bJO" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"bJP" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"bJQ" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/item/beacon, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"bJR" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"bKb" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/central) -"bKc" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bKd" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bKK" = ( -/obj/structure/grille, -/obj/structure/lattice, -/obj/structure/lattice, -/turf/closed/wall/r_wall, -/area/space/nearstation) -"bKL" = ( -/obj/machinery/telecomms/processor/preset_two, -/turf/open/floor/circuit/telecomms/mainframe, -/area/tcommsat/server) -"bKM" = ( -/obj/structure/table/glass, -/obj/item/folder{ - pixel_y = 2 - }, -/obj/item/folder{ - pixel_y = 2 - }, -/obj/item/pen, -/turf/open/floor/circuit/green/telecomms/mainframe, -/area/tcommsat/server) -"bKN" = ( -/obj/machinery/telecomms/bus/preset_four, -/turf/open/floor/circuit/telecomms/mainframe, -/area/tcommsat/server) -"bKO" = ( -/obj/machinery/telecomms/hub/preset, -/turf/open/floor/circuit/green/telecomms/mainframe, -/area/tcommsat/server) -"bKP" = ( -/obj/machinery/telecomms/processor/preset_four, -/turf/open/floor/circuit/telecomms/mainframe, -/area/tcommsat/server) -"bKQ" = ( -/obj/structure/lattice, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/space, -/area/space/nearstation) -"bKS" = ( -/obj/item/kirbyplants{ - icon_state = "plant-06" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bKT" = ( -/obj/structure/chair, -/obj/effect/landmark/start/assistant, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bKU" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bKV" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bKW" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 24 - }, -/obj/machinery/camera{ - c_tag = "Arrivals - Aft Arm"; - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/white/corner, -/area/hallway/secondary/entry) -"bKX" = ( -/obj/structure/chair/comfy{ - dir = 1 - }, -/turf/open/floor/plasteel/grimy, -/area/hallway/primary/port) -"bLb" = ( -/obj/structure/table, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/port) -"bLc" = ( -/obj/structure/closet/crate{ - icon_state = "crateopen" - }, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 3; - name = "3maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bLd" = ( -/obj/structure/closet, -/obj/item/clothing/shoes/jackboots, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bLe" = ( -/obj/machinery/vending/autodrobe, -/turf/open/floor/plating, -/area/maintenance/port) -"bLf" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/costume, -/obj/effect/spawner/lootdrop/costume, -/turf/open/floor/plating, -/area/maintenance/port) -"bLg" = ( -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/structure/rack, -/obj/effect/spawner/lootdrop/costume, -/obj/effect/spawner/lootdrop/costume, -/turf/open/floor/plating, -/area/maintenance/port) -"bLG" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/item/cigbutt, -/obj/effect/landmark/blobstart, -/turf/open/floor/plating, -/area/maintenance/central) -"bLH" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/status_display/evac{ - pixel_x = -32 - }, -/obj/machinery/camera{ - c_tag = "Central Primary Hallway - Starboard - Kitchen"; - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bLX" = ( -/obj/structure/closet, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/starboard) -"bLY" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bLZ" = ( -/obj/structure/closet/cardboard, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bMo" = ( -/obj/machinery/airalarm/server{ - dir = 4; - pixel_x = -22 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Telecomms - Server Room - Aft-Port"; - dir = 4; - network = list("ss13","tcomms") - }, -/turf/open/floor/plasteel/dark/telecomms, -/area/tcommsat/server) -"bMp" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel/dark/telecomms, -/area/tcommsat/server) -"bMq" = ( -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel/dark/telecomms, -/area/tcommsat/server) -"bMr" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/dark/telecomms, -/area/tcommsat/server) -"bMu" = ( -/obj/machinery/camera{ - c_tag = "Arrivals - Aft Arm - Far"; - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bMv" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bMw" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/item/radio/intercom{ - pixel_y = -25 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bMx" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bMy" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white/corner, -/area/hallway/secondary/entry) -"bMz" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel/white/corner, -/area/hallway/secondary/entry) -"bMA" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/structure/sign/map/left{ - desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; - icon_state = "map-left-MS"; - pixel_y = -32 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/white/corner, -/area/hallway/secondary/entry) -"bMB" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/obj/structure/sign/map/right{ - desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; - icon_state = "map-right-MS"; - pixel_y = -32 - }, -/obj/item/kirbyplants{ - icon_state = "plant-03" - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel/white/corner, -/area/hallway/secondary/entry) -"bME" = ( -/obj/structure/mirror{ - pixel_x = -28 - }, -/obj/item/lipstick/black, -/obj/item/lipstick/jade{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/lipstick/purple{ - pixel_x = -2; - pixel_y = -2 - }, -/obj/structure/table, -/turf/open/floor/plating, -/area/maintenance/port) -"bMF" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/port) -"bMG" = ( -/obj/structure/closet/crate{ - icon_state = "crateopen" - }, -/obj/item/rack_parts, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/port) -"bMR" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bNd" = ( -/obj/item/tank/internals/oxygen, -/obj/item/tank/internals/oxygen, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bNs" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/central) -"bNt" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/item/radio/intercom{ - dir = 8; - name = "Station Intercom (General)"; - pixel_x = -28 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bNu" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bNO" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bNT" = ( -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/command/nuke_storage) -"bNX" = ( -/obj/machinery/telecomms/server/presets/common, -/turf/open/floor/circuit/telecomms/mainframe, -/area/tcommsat/server) -"bNY" = ( -/obj/machinery/telecomms/server/presets/engineering, -/turf/open/floor/circuit/telecomms/mainframe, -/area/tcommsat/server) -"bNZ" = ( -/obj/machinery/light/small, -/obj/machinery/camera{ - c_tag = "Telecomms - Server Room - Aft"; - dir = 1; - network = list("ss13","tcomms") - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/ntnet_relay, -/turf/open/floor/plasteel/dark/telecomms, -/area/tcommsat/server) -"bOa" = ( -/obj/machinery/telecomms/server/presets/medical, -/turf/open/floor/circuit/telecomms/mainframe, -/area/tcommsat/server) -"bOb" = ( -/obj/machinery/telecomms/server/presets/science, -/turf/open/floor/circuit/telecomms/mainframe, -/area/tcommsat/server) -"bOc" = ( -/obj/machinery/telecomms/broadcaster/preset_left, -/turf/open/floor/circuit/telecomms/mainframe, -/area/tcommsat/server) -"bOd" = ( -/obj/machinery/door/airlock/external{ - name = "Auxiliary Airlock" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"bOe" = ( -/obj/machinery/door/airlock/maintenance{ - req_one_access_txt = "12;27" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bOf" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bOi" = ( -/obj/structure/table, -/obj/item/clothing/mask/cigarette/pipe, -/turf/open/floor/plating, -/area/maintenance/port) -"bOn" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bOq" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/port/fore) -"bOv" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bON" = ( -/obj/structure/sign/warning/securearea{ - pixel_x = -32 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, -/area/maintenance/central) -"bOO" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bOY" = ( -/obj/machinery/door/airlock/external{ - req_access_txt = "13" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"bPf" = ( -/obj/machinery/door/airlock{ - name = "Theatre Backstage"; - req_access_txt = "46" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bPg" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/sorting/mail{ - dir = 2; - sortType = 18 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bPk" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bPl" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bPm" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bPn" = ( -/obj/machinery/atmospherics/components/trinary/filter, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bPs" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/closed/wall, -/area/maintenance/starboard) -"bPA" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"bPC" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bPD" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/item/storage/box/lights/mixed, -/obj/structure/closet/firecloset, -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, -/area/maintenance/port) -"bPF" = ( -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bPG" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bPH" = ( -/obj/item/trash/candy, -/turf/open/floor/plating, -/area/maintenance/port) -"bPJ" = ( -/obj/structure/rack, -/obj/item/clothing/mask/horsehead, -/obj/effect/spawner/lootdrop/costume, -/turf/open/floor/plating, -/area/maintenance/port) -"bPK" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/maintenance/port) -"bPL" = ( -/obj/structure/rack, -/obj/item/storage/box, -/turf/open/floor/plating, -/area/maintenance/port) -"bPM" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, -/area/maintenance/port) -"bPN" = ( -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/structure/closet/emcloset, -/turf/open/floor/plating, -/area/maintenance/port) -"bPY" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bQx" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Gateway Maintenance"; - req_access_txt = "17" - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/central) -"bQy" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/central) -"bQz" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/extinguisher_cabinet{ - pixel_x = -27 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bQQ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/item/wrench, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bQR" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 - }, -/obj/machinery/portable_atmospherics/canister, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bRc" = ( -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bRd" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/port) -"bRe" = ( -/obj/item/trash/cheesie, -/turf/open/floor/plating, -/area/maintenance/port) -"bRf" = ( -/obj/machinery/door/airlock/maintenance/abandoned{ - name = "Storage Room"; - req_access_txt = "12" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/port) -"bRo" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/item/radio/intercom{ - dir = 4; - name = "Station Intercom (General)"; - pixel_x = 27 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bRN" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/maintenance/central) -"bRO" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -24 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bSc" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/starboard) -"bSd" = ( -/obj/machinery/portable_atmospherics/canister, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bSe" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/landmark/blobstart, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bSf" = ( -/obj/item/crowbar, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/starboard) -"bSn" = ( -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bSo" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bSp" = ( -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bSq" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bSr" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bSs" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bSt" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/port) -"bSu" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/port) -"bSv" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bSw" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bSD" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -24 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bSP" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock/maintenance{ - req_one_access_txt = "12;17" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/central) -"bSQ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bSR" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/green, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bSS" = ( -/turf/closed/wall, -/area/hallway/primary/central) -"bSZ" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Kitchen Maintenance"; - req_access_txt = "28" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bTa" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/landmark/blobstart, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bTb" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bTd" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/spawner/lootdrop/maintenance, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bTe" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bTf" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible, -/obj/machinery/meter, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bTg" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bTh" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bTn" = ( -/turf/closed/wall, -/area/maintenance/solars/port/aft) -"bTo" = ( -/obj/machinery/door/airlock/engineering{ - name = "Port Quarter Solar Access"; - req_access_txt = "10" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/solars/port/aft) -"bTp" = ( -/obj/structure/sign/warning/electricshock, -/turf/closed/wall, -/area/maintenance/solars/port/aft) -"bTr" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/airlock/maintenance/abandoned{ - name = "Storage Room"; - req_access_txt = "12" - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bTs" = ( -/turf/closed/wall, -/area/maintenance/aft) -"bTt" = ( -/obj/item/storage/box, -/turf/open/floor/plating, -/area/maintenance/port) -"bTv" = ( -/obj/structure/rack, -/obj/item/paper, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/port) -"bTD" = ( -/obj/machinery/vending/snack/random, -/obj/machinery/newscaster{ - pixel_x = -30 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/central) -"bTE" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=11-Command-Port"; - location = "10.2-Aft-Port-Corner" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bTF" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bTG" = ( -/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) -"bTH" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bTI" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bTJ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bTK" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bTL" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/firealarm{ - pixel_y = 28 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bTM" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = 21 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bTN" = ( -/obj/machinery/light{ - dir = 1 - }, -/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) -"bTO" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bTP" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bTQ" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bTR" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bTS" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bTT" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/status_display/evac{ - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bTV" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/obj/structure/sign/map/left{ - desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; - icon_state = "map-left-MS"; - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bTW" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/sign/map/right{ - desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; - icon_state = "map-right-MS"; - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bTX" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = 21 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bTY" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/button/door{ - id = "gateshutter"; - name = "Gateway Shutter Control"; - pixel_y = 26; - req_access_txt = "19" - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bUa" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bUb" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bUc" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/sign/departments/botany{ - pixel_x = 32; - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bUd" = ( -/obj/structure/table, -/obj/item/paper_bin{ - pixel_x = -2; - pixel_y = 8 - }, -/obj/item/pen, -/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, -/area/hallway/primary/central) -"bUs" = ( -/obj/structure/disposalpipe/sorting/mail{ - dir = 2; - sortType = 20 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bUt" = ( -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bUu" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bUv" = ( -/obj/structure/cable/yellow{ - 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 = "panelscorched" - }, -/area/maintenance/starboard) -"bUx" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bUy" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/obj/machinery/portable_atmospherics/canister, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bUL" = ( -/obj/machinery/telecomms/server/presets/security, -/turf/open/floor/circuit/telecomms/mainframe, -/area/tcommsat/server) -"bUO" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/solars/port/aft) -"bUP" = ( -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/machinery/power/smes, -/turf/open/floor/plating, -/area/maintenance/solars/port/aft) -"bUQ" = ( -/obj/item/cigbutt, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bUR" = ( -/obj/structure/closet, -/obj/item/storage/box/donkpockets, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bUS" = ( -/obj/machinery/door/airlock/maintenance{ - req_one_access_txt = "12;5;39;25;28" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"bUT" = ( -/obj/structure/table, -/obj/item/reagent_containers/food/condiment/enzyme{ - layer = 5 - }, -/obj/item/reagent_containers/food/condiment/flour, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"bUU" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"bUV" = ( -/obj/machinery/recharge_station, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"bUW" = ( -/obj/structure/table, -/obj/machinery/microwave{ - pixel_x = -3; - pixel_y = 6 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"bUX" = ( -/obj/structure/closet/crate/bin, -/obj/item/kitchen/knife, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"bUY" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/central) -"bUZ" = ( -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bVa" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bVb" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bVc" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bVd" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bVe" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/plaque{ - icon_state = "L1" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bVf" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/plaque{ - icon_state = "L3" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bVg" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=10.2-Aft-Port-Corner"; - location = "10.1-Central-from-Aft" - }, -/obj/effect/turf_decal/plaque{ - icon_state = "L5" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bVh" = ( -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/effect/turf_decal/plaque{ - icon_state = "L7" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bVi" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=8.1-Aft-to-Escape"; - location = "8-Central-to-Aft" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/plaque{ - icon_state = "L9" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bVj" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/plaque{ - icon_state = "L11" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bVk" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/plaque{ - icon_state = "L13" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bVl" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bVm" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bVn" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bVo" = ( -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=8-Central-to-Aft"; - location = "7.5-Starboard-Aft-Corner" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bVp" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bVq" = ( -/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, -/area/hallway/primary/central) -"bVz" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/turf/closed/wall, -/area/hallway/secondary/service) -"bVA" = ( -/obj/machinery/door/airlock{ - name = "Service Hall"; - req_access_txt = "null"; - req_one_access_txt = "25;26;35;28" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/hallway/secondary/service) -"bVB" = ( -/obj/structure/rack, -/obj/item/extinguisher, -/obj/item/storage/belt/utility, -/obj/item/clothing/mask/gas, -/obj/item/storage/box/lights/mixed, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bVC" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bVE" = ( -/obj/structure/closet/crate, -/obj/item/storage/belt/utility, -/obj/item/stack/cable_coil/random, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bVQ" = ( -/obj/structure/chair/stool, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/machinery/camera{ - c_tag = "Aft Port Solar Maintenance"; - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/solars/port/aft) -"bVR" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/landmark/xeno_spawn, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/solars/port/aft) -"bVS" = ( -/obj/machinery/power/terminal{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/item/radio/intercom{ - dir = 4; - name = "Station Intercom (General)"; - pixel_x = 27 - }, -/turf/open/floor/plating, -/area/maintenance/solars/port/aft) -"bVT" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/plating, -/area/maintenance/port) -"bVU" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/port) -"bVV" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"bVW" = ( -/obj/structure/table, -/obj/item/kitchen/rollingpin, -/obj/item/reagent_containers/glass/beaker, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/port/aft) -"bWb" = ( -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bWc" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bWd" = ( -/obj/structure/cable/yellow{ - 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/port) -"bWf" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance{ - req_one_access_txt = "12;5;39;37;25;28" - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bWg" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/junction/flip{ - 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/central) -"bWh" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bWi" = ( -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/camera{ - c_tag = "Central Primary Hallway - Aft-Port Corner"; - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bWj" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bWk" = ( -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bWl" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bWm" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet{ - pixel_y = -30 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bWn" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bWo" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bWp" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bWq" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bWr" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/effect/turf_decal/plaque{ - icon_state = "L2" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bWs" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/plaque{ - icon_state = "L4" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bWt" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/effect/turf_decal/plaque{ - icon_state = "L6" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bWu" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/plaque{ - icon_state = "L8" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bWv" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/plaque{ - icon_state = "L10" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bWw" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/plaque{ - icon_state = "L12" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bWx" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/plaque{ - icon_state = "L14" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bWy" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bWz" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bWA" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bWB" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bWC" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bWD" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bWE" = ( -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/structure/extinguisher_cabinet{ - pixel_y = -30 - }, -/obj/machinery/camera{ - c_tag = "Central Primary Hallway - Aft-Starboard Corner"; - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bWF" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bWG" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bWH" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bWI" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/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/central) -"bWJ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/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, -/area/hallway/primary/central) -"bWX" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/table, -/obj/item/storage/bag/plants, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/item/reagent_containers/glass/bucket, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/service) -"bWY" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bWZ" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, -/area/maintenance/starboard) -"bXa" = ( -/obj/structure/cable/yellow{ - 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/starboard) -"bXb" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bXc" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bXd" = ( -/obj/structure/cable/yellow{ - 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 = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bXe" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Atmospherics Maintenance"; - req_access_txt = "24" - }, -/obj/structure/cable/yellow{ - 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/starboard) -"bXt" = ( -/obj/machinery/power/solar_control{ - dir = 1; - id = "aftport"; - name = "Port Quarter Solar Control" - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/solars/port/aft) -"bXu" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/maintenance/solars/port/aft) -"bXv" = ( -/obj/structure/sign/warning/vacuum/external{ - pixel_x = 32 - }, -/turf/open/floor/plating, -/area/maintenance/solars/port/aft) -"bXx" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bXy" = ( -/obj/structure/closet, -/obj/item/flashlight, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"bXz" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/port/aft) -"bXA" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"bXC" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"bXD" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, -/area/maintenance/port/aft) -"bXE" = ( -/turf/open/floor/plating, -/area/maintenance/port/aft) -"bXF" = ( -/obj/structure/girder, -/obj/structure/grille, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"bXG" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/maintenance/port) -"bXH" = ( -/obj/structure/closet/crate, -/obj/item/coin/silver, -/obj/item/flashlight, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/port) -"bXI" = ( -/obj/structure/closet, -/obj/item/clothing/neck/stethoscope, -/obj/item/hemostat, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/port) -"bXJ" = ( -/obj/item/storage/box/lights/mixed, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/port) -"bXK" = ( -/turf/closed/wall, -/area/medical/storage) -"bXL" = ( -/turf/closed/wall, -/area/security/checkpoint/medical) -"bXM" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -27 - }, -/obj/item/kirbyplants{ - icon_state = "applebush" - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bXN" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bXO" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bXP" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bXQ" = ( -/obj/machinery/camera{ - c_tag = "Central Primary Hallway - Aft-Port"; - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bXR" = ( -/obj/machinery/light/small, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bXS" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bXT" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bXU" = ( -/obj/machinery/light/small, -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bXV" = ( -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bXW" = ( -/obj/machinery/camera{ - c_tag = "Central Primary Hallway - Aft-Starboard"; - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bXX" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bXY" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bXZ" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 24 - }, -/obj/item/kirbyplants{ - icon_state = "plant-10" - }, -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bYa" = ( -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/disposal/bin, -/obj/machinery/newscaster{ - 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/primary/central) -"bYb" = ( -/obj/machinery/door/airlock/maintenance{ - req_one_access_txt = "12;35;47" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"bYc" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/hallway/primary/central) -"bYd" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Hydroponics Storage" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bYo" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/structure/disposalpipe/junction/flip{ - dir = 2 - }, -/obj/structure/table, -/obj/item/kitchen/rollingpin, -/turf/open/floor/plasteel, -/area/hallway/secondary/service) -"bYp" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/plasteel, -/area/hallway/secondary/service) -"bYr" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bYs" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bYt" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bYu" = ( -/obj/item/cigbutt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bYC" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/solars/port/aft) -"bYD" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock/external{ - name = "Solar Maintenance"; - req_access_txt = "10; 13" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/turf/open/floor/plating, -/area/maintenance/solars/port/aft) -"bYE" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"bYH" = ( -/obj/structure/rack, -/obj/item/stack/rods{ - amount = 4 - }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/port/aft) -"bYI" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"bYJ" = ( -/obj/structure/table, -/obj/machinery/cell_charger, -/obj/item/stock_parts/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"bYK" = ( -/obj/machinery/mech_bay_recharge_port, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"bYL" = ( -/turf/open/floor/mech_bay_recharge_floor, -/area/maintenance/port/aft) -"bYM" = ( -/obj/machinery/computer/mech_bay_power_console, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/turf/open/floor/circuit, -/area/maintenance/port/aft) -"bYN" = ( -/obj/machinery/space_heater, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/port/aft) -"bYO" = ( -/obj/item/vending_refill/cola, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"bYP" = ( -/obj/structure/closet/crate{ - icon_state = "crateopen" - }, -/obj/item/storage/box/donkpockets, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"bYQ" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/airlock/maintenance{ - req_one_access_txt = "12;5;39;25;28" - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"bYR" = ( -/obj/machinery/vending/medical, -/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/storage) -"bYS" = ( -/obj/structure/noticeboard{ - pixel_y = 32 - }, -/obj/structure/table, -/obj/item/reagent_containers/glass/beaker/large{ - pixel_y = 3 - }, -/obj/item/reagent_containers/glass/beaker{ - pixel_x = 8; - pixel_y = 2 - }, -/obj/item/reagent_containers/glass/bottle/charcoal{ - pixel_x = -5 - }, -/obj/item/reagent_containers/glass/bottle/morphine, -/obj/item/reagent_containers/syringe/epinephrine{ - pixel_x = 3; - pixel_y = -2 - }, -/obj/item/reagent_containers/dropper, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/storage) -"bYT" = ( -/obj/structure/closet/secure_closet/medical3, -/obj/item/screwdriver{ - pixel_y = 6 - }, -/obj/item/storage/belt/medical{ - pixel_y = 2 - }, -/obj/item/clothing/neck/stethoscope, -/obj/item/radio/intercom{ - broadcasting = 1; - frequency = 1485; - listening = 0; - name = "Station Intercom (Medbay)"; - pixel_y = 30 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/storage) -"bYU" = ( -/obj/structure/closet/secure_closet/medical3, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/airalarm{ - pixel_y = 24 - }, -/obj/item/screwdriver{ - pixel_y = 6 - }, -/obj/item/storage/belt/medical{ - pixel_y = 2 - }, -/obj/item/clothing/neck/stethoscope, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/storage) -"bYV" = ( -/obj/machinery/vending/wardrobe/medi_wardrobe, -/obj/structure/sign/warning/nosmoking{ - pixel_y = 30 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/storage) -"bYW" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/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/storage) -"bYY" = ( -/obj/machinery/recharger{ - pixel_y = 4 - }, -/obj/structure/table/reinforced, -/obj/machinery/requests_console{ - department = "Security"; - departmentType = 5; - pixel_y = 30 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/camera{ - c_tag = "Security Post - Medbay"; - network = list("ss13","medbay") - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/medical) -"bYZ" = ( -/obj/item/pen, -/obj/structure/table/reinforced, -/obj/structure/reagent_dispensers/peppertank{ - pixel_x = 30 - }, -/obj/item/folder/red, -/obj/item/book/manual/wiki/security_space_law{ - pixel_x = 3; - pixel_y = 4 - }, -/obj/machinery/newscaster/security_unit{ - pixel_y = 32 - }, -/obj/item/screwdriver{ - pixel_y = 10 - }, -/obj/item/radio/off, -/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) -"bZa" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/medical/medbay/central) -"bZb" = ( -/obj/structure/sign/departments/medbay/alt, -/turf/closed/wall, -/area/medical/medbay/central) -"bZc" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/white/side, -/area/medical/medbay/central) -"bZd" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/white/side, -/area/medical/medbay/central) -"bZe" = ( -/obj/structure/sign/directions/security{ - dir = 1; - pixel_y = 8 - }, -/obj/structure/sign/directions/engineering{ - dir = 4 - }, -/obj/structure/sign/directions/command{ - dir = 1; - pixel_y = -8 - }, -/turf/closed/wall, -/area/medical/medbay/central) -"bZf" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Aft Primary Hallway" - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bZg" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Aft Primary Hallway" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bZh" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Aft Primary Hallway" - }, -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bZi" = ( -/obj/structure/sign/directions/medical{ - dir = 8; - pixel_y = 8 - }, -/obj/structure/sign/directions/evac, -/obj/structure/sign/directions/science{ - dir = 4; - pixel_y = -8 - }, -/turf/closed/wall, -/area/science/research) -"bZj" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/science/research) -"bZk" = ( -/obj/structure/sign/departments/science, -/turf/closed/wall, -/area/science/research) -"bZl" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/white/side, -/area/science/research) -"bZm" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/white/side, -/area/science/research) -"bZn" = ( -/turf/closed/wall, -/area/science/research) -"bZo" = ( -/turf/closed/wall, -/area/security/checkpoint/science/research) -"bZq" = ( -/obj/item/reagent_containers/food/snacks/grown/wheat, -/obj/item/reagent_containers/food/snacks/grown/watermelon, -/obj/item/reagent_containers/food/snacks/grown/citrus/orange, -/obj/item/reagent_containers/food/snacks/grown/grapes, -/obj/structure/extinguisher_cabinet{ - pixel_x = -27 - }, -/obj/structure/table/glass, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bZs" = ( -/obj/item/cultivator, -/obj/item/crowbar, -/obj/item/plant_analyzer, -/obj/item/reagent_containers/glass/bucket, -/obj/structure/table/glass, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bZy" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/airlock{ - name = "Service Hall"; - req_access_txt = "null"; - req_one_access_txt = "25;26;35;28" - }, -/turf/open/floor/plating, -/area/hallway/secondary/service) -"bZz" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bZA" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/starboard) -"bZB" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bZC" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/maintenance/disposal/incinerator) -"bZD" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Incinerator Access"; - req_access_txt = "12" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/disposal/incinerator) -"bZE" = ( -/turf/closed/wall, -/area/maintenance/disposal/incinerator) -"bZN" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plating/airless, -/area/maintenance/solars/port/aft) -"bZO" = ( -/obj/machinery/door/airlock/maintenance/abandoned{ - name = "Storage Room"; - req_access_txt = "12" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"bZP" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/circuit, -/area/maintenance/port/aft) -"bZQ" = ( -/turf/open/floor/circuit, -/area/maintenance/port/aft) -"bZR" = ( -/obj/structure/cable/yellow{ - 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/plating, -/area/maintenance/port/aft) -"bZS" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"bZT" = ( -/obj/machinery/space_heater, -/turf/open/floor/plating, -/area/maintenance/aft) -"bZU" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/mopbucket, -/obj/item/mop, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"bZV" = ( -/obj/item/storage/box/lights/mixed, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"bZW" = ( -/obj/item/cigbutt{ - pixel_x = 6; - pixel_y = -6 - }, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/item/storage/toolbox/emergency, -/obj/item/hand_labeler, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"bZX" = ( -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=4"; - dir = 4; - freq = 1400; - location = "Medbay" - }, -/obj/structure/plasticflaps/opaque, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/window/northleft{ - dir = 8; - name = "MuleBot Access"; - req_access_txt = "50" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/medical/storage) -"bZY" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/landmark/start/paramedic, -/turf/open/floor/plasteel/white, -/area/medical/storage) -"bZZ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/storage) -"caa" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/storage) -"cab" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel/white, -/area/medical/storage) -"cac" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/storage) -"cad" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Medbay Security Post"; - req_access_txt = "63" - }, -/obj/structure/cable/yellow{ - 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/medical) -"cae" = ( -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/machinery/light_switch{ - pixel_y = -25 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - 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/medical) -"caf" = ( -/turf/open/floor/plasteel, -/area/security/checkpoint/medical) -"cag" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/medical) -"cah" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/security/checkpoint/medical) -"cai" = ( -/obj/structure/table, -/obj/item/pen, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/item/storage/firstaid/regular, -/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) -"caj" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/table, -/obj/item/reagent_containers/glass/bottle/epinephrine{ - pixel_x = 7; - pixel_y = -3 - }, -/obj/item/reagent_containers/glass/bottle/charcoal{ - pixel_x = -4; - pixel_y = -3 - }, -/obj/item/reagent_containers/syringe/epinephrine{ - pixel_x = 3; - pixel_y = -2 - }, -/obj/item/reagent_containers/dropper, -/obj/item/reagent_containers/glass/beaker{ - pixel_x = 8; - 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) -"cak" = ( -/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) -"cal" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cam" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"can" = ( -/obj/structure/chair, -/obj/effect/landmark/start/assistant, -/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) -"cao" = ( -/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) -"cap" = ( -/obj/structure/table, -/obj/item/stack/medical/gauze, -/obj/item/stack/medical/mesh, -/obj/item/stack/medical/suture, -/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) -"caq" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"car" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cas" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cat" = ( -/obj/structure/table, -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/item/clothing/glasses/science, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"cau" = ( -/obj/structure/table, -/obj/item/paper/pamphlet/gateway, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/item/paicard{ - pixel_x = -8 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"cav" = ( -/obj/structure/chair, -/obj/effect/landmark/start/assistant, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"caw" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/white, -/area/science/research) -"cax" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/white, -/area/science/research) -"cay" = ( -/obj/structure/chair, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"caz" = ( -/obj/structure/table, -/obj/item/stack/cable_coil, -/obj/item/assembly/igniter{ - pixel_x = -4; - pixel_y = -4 - }, -/obj/item/screwdriver{ - pixel_y = 16 - }, -/obj/item/gps{ - gpstag = "RD0" - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"caA" = ( -/obj/structure/table, -/obj/item/stack/sheet/glass, -/obj/item/electronics/airlock, -/obj/item/assembly/timer{ - pixel_x = -4; - pixel_y = 2 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"caB" = ( -/obj/structure/table, -/obj/item/paper_bin{ - pixel_x = -2; - pixel_y = 4 - }, -/obj/item/pen, -/obj/machinery/status_display/evac{ - pixel_y = 32 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 24 - }, -/obj/machinery/camera{ - c_tag = "Research Division - Lobby"; - network = list("ss13","rd") - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"caC" = ( -/obj/structure/table, -/obj/machinery/recharger{ - pixel_y = 4 - }, -/obj/machinery/light_switch{ - pixel_x = -27; - pixel_y = 6 - }, -/obj/machinery/newscaster/security_unit{ - pixel_y = 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/science/research) -"caD" = ( -/obj/structure/table, -/obj/machinery/requests_console{ - department = "Security"; - departmentType = 5; - pixel_y = 30 - }, -/obj/machinery/button/door{ - id = "Biohazard"; - name = "Biohazard Shutter Control"; - pixel_x = -7; - req_access_txt = "47" - }, -/obj/machinery/button/door{ - desc = "A remote control switch for the research division entryway."; - id = "ResearchExt"; - name = "Research Exterior Airlock"; - normaldoorcontrol = 1; - pixel_x = 7; - pixel_y = 7 - }, -/obj/machinery/button/door{ - desc = "A remote control switch for the research division entryway."; - id = "ResearchInt"; - name = "Research Interior Airlock"; - normaldoorcontrol = 1; - pixel_x = 7; - pixel_y = -2 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/science/research) -"caE" = ( -/obj/structure/table, -/obj/item/paper_bin{ - pixel_x = 1; - pixel_y = 9 - }, -/obj/item/pen, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 24 - }, -/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/science/research) -"caG" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -24 - }, -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"caH" = ( -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"caT" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance{ - name = "Hydroponics Maintenance"; - req_access_txt = "35" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"caU" = ( -/obj/structure/disposalpipe/sorting/mail{ - sortType = 21 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"caW" = ( -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"caX" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/light_switch{ - pixel_y = 25 - }, -/turf/closed/wall, -/area/maintenance/disposal/incinerator) -"caY" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"caZ" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/obj/structure/sign/warning/deathsposal{ - pixel_y = 32 - }, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"cba" = ( -/obj/machinery/power/smes{ - capacity = 9e+006; - charge = 10000 - }, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"cbp" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cbq" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/port/aft) -"cbr" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cbs" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cbt" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cbu" = ( -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/aft) -"cbv" = ( -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/structure/light_construct{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cbw" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/port/aft) -"cbx" = ( -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cby" = ( -/obj/machinery/mecha_part_fabricator{ - name = "counterfeit exosuit fabricator"; - req_access = null - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cbz" = ( -/obj/structure/rack, -/obj/item/stack/sheet/cardboard, -/obj/item/radio/off, -/obj/structure/light_construct{ - dir = 1 - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cbA" = ( -/obj/structure/closet, -/obj/item/stack/sheet/metal{ - amount = 34 - }, -/obj/item/extinguisher/mini, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cbB" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/sorting/mail{ - dir = 1; - sortType = 9 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cbC" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cbD" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance{ - req_one_access_txt = "12;5" - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cbE" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/item/hand_labeler_refill, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cbF" = ( -/obj/item/reagent_containers/glass/bottle/morphine, -/obj/item/trash/candy, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/item/clothing/neck/stethoscope, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/port/aft) -"cbG" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cbH" = ( -/obj/item/tank/internals/air, -/obj/item/tank/internals/air, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cbI" = ( -/obj/machinery/door/airlock{ - name = "Medbay Emergency Storage"; - req_access_txt = "5" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cbJ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/storage) -"cbK" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/white, -/area/medical/storage) -"cbL" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/white, -/area/medical/storage) -"cbM" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/white, -/area/medical/storage) -"cbN" = ( -/obj/machinery/holopad, -/obj/effect/landmark/start/medical_doctor, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel/white, -/area/medical/storage) -"cbO" = ( -/obj/machinery/camera{ - c_tag = "Medbay Storage"; - dir = 8; - network = list("ss13","medbay") - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/storage) -"cbP" = ( -/obj/machinery/requests_console{ - department = "Medbay"; - departmentType = 1; - name = "Medbay RC" - }, -/turf/closed/wall, -/area/security/checkpoint/medical) -"cbQ" = ( -/obj/machinery/computer/secure_data{ - dir = 4 - }, -/obj/machinery/computer/security/telescreen{ - desc = "Used for monitoring medbay to ensure patient safety."; - dir = 1; - name = "Medbay Monitor"; - network = list("medbay"); - pixel_y = -29 - }, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_x = -27; - pixel_y = -10 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/medical) -"cbR" = ( -/obj/structure/chair/office/dark, -/obj/machinery/button/door{ - desc = "A remote control switch for the medbay foyer."; - id = "MedbayFoyer"; - name = "Medbay Doors Control"; - normaldoorcontrol = 1; - pixel_x = 24; - pixel_y = -24 - }, -/obj/effect/landmark/start/depsec/medical, -/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) -"cbS" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/security/checkpoint/medical) -"cbT" = ( -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cbU" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cbV" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cbW" = ( -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/machinery/holopad, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cbX" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cbY" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cbZ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cca" = ( -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"ccb" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/white/side{ - dir = 8 - }, -/area/medical/medbay/central) -"ccc" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/white/side{ - dir = 4 - }, -/area/science/research) -"ccd" = ( -/turf/open/floor/plasteel/white, -/area/science/research) -"cce" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"ccf" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"ccg" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"cch" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/obj/machinery/holopad, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/white, -/area/science/research) -"cci" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"ccj" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"cck" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/security/checkpoint/science/research) -"ccl" = ( -/obj/item/screwdriver{ - pixel_y = 10 - }, -/obj/item/radio/off, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/science/research) -"ccm" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/obj/structure/chair/office/dark{ - dir = 1 - }, -/obj/effect/landmark/start/depsec/science, -/turf/open/floor/plasteel, -/area/security/checkpoint/science/research) -"ccn" = ( -/obj/machinery/computer/secure_data{ - dir = 8 - }, -/obj/item/book/manual/wiki/security_space_law, -/obj/machinery/computer/security/telescreen{ - desc = "Used for watching the RD's goons from the safety of his office."; - dir = 8; - name = "Research Monitor"; - network = list("rd"); - pixel_x = 28; - pixel_y = 2 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/science/research) -"ccq" = ( -/obj/structure/table, -/obj/item/book/manual/hydroponics_pod_people, -/obj/machinery/light, -/obj/item/paper/guides/jobs/hydroponics, -/obj/machinery/camera{ - c_tag = "Hydroponics - Foyer"; - dir = 1 - }, -/obj/item/radio/intercom{ - pixel_y = -25 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/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) -"ccr" = ( -/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/hallway/primary/central) -"ccD" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"ccE" = ( -/obj/machinery/atmospherics/components/unary/tank/toxins{ - dir = 4 - }, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"ccF" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 4; - name = "plasma tank pump" - }, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"ccG" = ( -/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/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"ccH" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/table, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/pen, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"ccI" = ( -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"ccJ" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"ccK" = ( -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/power/terminal{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/dark/visible{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"ccU" = ( -/obj/structure/table/wood/poker, -/obj/item/toy/cards/deck{ - pixel_y = 4 - }, -/turf/open/floor/wood, -/area/service/bar) -"cdb" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cdc" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cdd" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/girder, -/obj/structure/grille, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cde" = ( -/obj/machinery/door/airlock/maintenance/abandoned{ - name = "Storage Room"; - req_access_txt = "12" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cdf" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cdg" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cdh" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cdi" = ( -/obj/structure/closet, -/obj/item/stack/sheet/glass{ - amount = 12 - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cdj" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cdk" = ( -/obj/item/trash/semki, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cdl" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cdm" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating, -/area/maintenance/aft) -"cdn" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 - }, -/obj/machinery/portable_atmospherics/canister/air, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cdo" = ( -/obj/effect/landmark/xeno_spawn, -/obj/structure/closet/firecloset, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cdp" = ( -/obj/machinery/light_switch{ - pixel_x = -26 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/closet/l3closet, -/obj/machinery/power/apc{ - areastring = "/area/medical/storage"; - name = "Medbay Storage APC"; - pixel_y = -24 - }, -/obj/structure/cable/yellow, -/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/white, -/area/medical/storage) -"cdq" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/structure/closet/l3closet, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/storage) -"cdr" = ( -/obj/item/storage/box/bodybags{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/box/beakers{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/storage/box/rxglasses{ - pixel_x = 1; - pixel_y = 1 - }, -/obj/item/reagent_containers/spray/cleaner, -/obj/structure/table/glass, -/obj/item/clothing/glasses/hud/health, -/obj/item/clothing/glasses/hud/health, -/obj/item/clothing/glasses/hud/health, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/item/gun/syringe/dart, -/turf/open/floor/plasteel/white, -/area/medical/storage) -"cds" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/white, -/area/medical/storage) -"cdt" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/white, -/area/medical/storage) -"cdu" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/storage) -"cdv" = ( -/obj/machinery/rnd/production/techfab/department/medical, -/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/storage) -"cdw" = ( -/turf/closed/wall, -/area/medical/medbay/central) -"cdx" = ( -/obj/machinery/computer/crew, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/medical/medbay/central) -"cdy" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/shower{ - dir = 4; - name = "emergency shower" - }, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -22 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cdz" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cdA" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cdB" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/mob/living/simple_animal/bot/medbot{ - auto_patrol = 1; - desc = "A little medical robot, officially part of the Nanotrasen medical inspectorate. He looks somewhat underwhelmed."; - name = "Inspector Johnson" - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cdC" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cdD" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cdE" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cdF" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/white/side{ - dir = 8 - }, -/area/medical/medbay/central) -"cdG" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cdH" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cdI" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cdJ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"cdK" = ( -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"cdL" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"cdM" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"cdN" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"cdO" = ( -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"cdP" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/security/checkpoint/science/research) -"cdQ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "2-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/research) -"cdR" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/science/research) -"cdS" = ( -/obj/structure/reagent_dispensers/peppertank{ - pixel_x = 30 - }, -/obj/structure/chair{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Security Post - Research Division"; - dir = 8; - network = list("ss13","rd") - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/science/research) -"cdU" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Hydroponics Maintenance"; - req_access_txt = "35" - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cdV" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/starboard) -"cdW" = ( -/obj/item/flashlight, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"cdX" = ( -/obj/structure/closet/crate, -/obj/item/coin/silver, -/obj/effect/spawner/lootdrop/maintenance, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/maintenance/starboard) -"cdY" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/item/storage/box/lights/mixed, -/obj/effect/spawner/lootdrop/maintenance, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/maintenance/starboard) -"cdZ" = ( -/obj/structure/sign/warning/nosmoking{ - pixel_x = -28 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4; - name = "input gas connector port" - }, -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"cea" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 4; - name = "input port pump" - }, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"ceb" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/general/visible{ - dir = 4 - }, -/obj/machinery/meter, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"cec" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"ced" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"cee" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"cef" = ( -/obj/structure/sign/warning/fire{ - pixel_x = 32 - }, -/obj/machinery/atmospherics/components/binary/pump{ - name = "Fuel Pipe to Incinerator" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"cem" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cen" = ( -/obj/structure/girder, -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"ceo" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cep" = ( -/obj/structure/rack, -/obj/item/screwdriver{ - pixel_y = 16 - }, -/obj/item/hand_labeler, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"ceq" = ( -/obj/structure/rack, -/obj/item/stack/cable_coil{ - pixel_x = -1; - pixel_y = -3 - }, -/obj/item/wrench, -/obj/item/flashlight/seclite, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cer" = ( -/obj/structure/rack, -/obj/item/stack/rods{ - amount = 23 - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"ceu" = ( -/obj/structure/grille, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cew" = ( -/obj/item/storage/firstaid/regular{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/item/storage/firstaid/fire{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/firstaid/fire, -/obj/item/storage/firstaid/fire{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/structure/table/glass, -/obj/machinery/door/window/eastleft{ - name = "First-Aid Supplies"; - req_access_txt = "5" - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/storage) -"cex" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/white, -/area/medical/storage) -"cey" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/landmark/start/paramedic, -/turf/open/floor/plasteel/white, -/area/medical/storage) -"cez" = ( -/obj/item/storage/firstaid/regular{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/item/storage/firstaid/toxin{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/firstaid/toxin, -/obj/item/storage/firstaid/toxin{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/structure/table/glass, -/obj/machinery/door/window/westleft{ - name = "First-Aid Supplies"; - req_access_txt = "5" - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/storage) -"ceA" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -26; - pixel_y = 28 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/newscaster{ - pixel_x = -30 - }, -/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) -"ceB" = ( -/obj/structure/chair/office/light{ - dir = 4 - }, -/obj/effect/landmark/start/medical_doctor, -/obj/machinery/button/door{ - desc = "A remote control switch for the medbay foyer."; - id = "MedbayFoyer"; - name = "Medbay Doors Control"; - normaldoorcontrol = 1; - pixel_x = 24; - pixel_y = 24 - }, -/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) -"ceC" = ( -/obj/machinery/telecomms/server/presets/command, -/turf/open/floor/circuit/telecomms/mainframe, -/area/tcommsat/server) -"ceD" = ( -/obj/structure/cable/yellow{ - 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/medbay/central) -"ceE" = ( -/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/medbay/central) -"ceF" = ( -/obj/structure/bed/roller, -/obj/item/radio/intercom{ - frequency = 1485; - name = "Station Intercom (Medbay)"; - pixel_y = -30 - }, -/obj/machinery/camera{ - c_tag = "Medbay Foyer"; - 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) -"ceG" = ( -/obj/machinery/light, -/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) -"ceH" = ( -/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) -"ceI" = ( -/obj/item/kirbyplants{ - icon_state = "plant-11" - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"ceJ" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"ceK" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_x = 26; - pixel_y = -26 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"ceL" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"ceN" = ( -/obj/structure/table, -/obj/machinery/cell_charger, -/obj/item/stock_parts/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"ceO" = ( -/obj/structure/table, -/obj/item/stock_parts/cell/potato, -/obj/machinery/light, -/obj/machinery/newscaster{ - pixel_x = -1; - pixel_y = -29 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"ceQ" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"ceR" = ( -/obj/structure/disposalpipe/junction/flip{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"ceS" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -30 - }, -/obj/item/kirbyplants{ - icon_state = "plant-08" - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"ceT" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"ceU" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"ceV" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/science/research) -"ceW" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/science/research) -"ceX" = ( -/obj/item/radio/intercom{ - dir = 4; - name = "Station Intercom (General)"; - pixel_x = 27 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/science/research) -"ceY" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"ceZ" = ( -/obj/structure/cable/yellow{ - 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/starboard/aft) -"cfa" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, -/area/maintenance/starboard/aft) -"cfb" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cfc" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cfd" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/starboard/aft) -"cff" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/starboard/aft) -"cfg" = ( -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cfh" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cfi" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"cfj" = ( -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/starboard) -"cfk" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"cfl" = ( -/obj/machinery/door/airlock/maintenance/abandoned{ - name = "Storage Room"; - req_access_txt = "12" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"cfm" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"cfn" = ( -/obj/machinery/portable_atmospherics/canister, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4; - name = "input gas connector port" - }, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"cfo" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/general/visible, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"cfp" = ( -/obj/effect/landmark/xeno_spawn, -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"cfq" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"cfr" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 4; - name = "input port pump" - }, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"cfs" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible{ - dir = 4 - }, -/obj/machinery/meter, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"cft" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/disposal/incinerator) -"cfu" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/green/visible, -/turf/open/space, -/area/space/nearstation) -"cfv" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow, -/obj/machinery/door/poddoor/preopen{ - id = "hosprivacy"; - name = "privacy shutters" - }, -/turf/open/floor/plating, -/area/command/heads_quarters/hos) -"cfw" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/manifold/yellow/visible{ - dir = 8 - }, -/turf/open/space, -/area/space/nearstation) -"cfx" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/yellow/visible{ - dir = 9 - }, -/turf/open/space, -/area/space/nearstation) -"cfy" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/cyan/visible, -/turf/open/space, -/area/space/nearstation) -"cfA" = ( -/obj/machinery/door/airlock/external, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"cfC" = ( -/obj/item/trash/pistachios, -/obj/structure/closet, -/obj/item/stack/sheet/glass, -/obj/item/extinguisher, -/obj/item/storage/belt/utility, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cfD" = ( -/obj/item/storage/box, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cfE" = ( -/obj/structure/closet/crate, -/obj/item/reagent_containers/dropper, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cfF" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cfL" = ( -/obj/item/storage/firstaid/regular{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/item/storage/firstaid/brute{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/firstaid/brute, -/obj/item/storage/firstaid/brute{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/machinery/light_switch{ - pixel_x = -26 - }, -/obj/machinery/light/small, -/obj/structure/table/glass, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - 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/white, -/area/medical/storage) -"cfM" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/storage) -"cfN" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/mob/living/simple_animal/bot/cleanbot{ - name = "Scrubs, MD"; - on = 0 - }, -/turf/open/floor/plasteel/white, -/area/medical/storage) -"cfO" = ( -/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/storage) -"cfP" = ( -/obj/item/storage/firstaid/regular{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/item/storage/firstaid/o2{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/firstaid/o2, -/obj/item/storage/firstaid/o2{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/structure/table/glass, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/storage) -"cfQ" = ( -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/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 = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cfR" = ( -/obj/structure/chair/office/light{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/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) -"cfS" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/item/reagent_containers/food/drinks/britcup, -/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/white, -/area/medical/medbay/central) -"cfT" = ( -/obj/structure/cable/yellow{ - 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/medbay/central) -"cfU" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/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/medbay/central) -"cfV" = ( -/obj/structure/sign/directions/medical{ - pixel_y = -7 - }, -/turf/closed/wall, -/area/medical/chemistry) -"cfW" = ( -/obj/structure/sign/departments/chemistry, -/turf/closed/wall, -/area/medical/chemistry) -"cfX" = ( -/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) -"cfY" = ( -/obj/machinery/smartfridge/chemistry/preloaded, -/turf/closed/wall, -/area/medical/chemistry) -"cfZ" = ( -/obj/structure/table/reinforced, -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/machinery/door/window/northleft{ - dir = 2; - name = "Chemistry Desk"; - req_access_txt = "5; 33" - }, -/obj/machinery/door/firedoor, -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "chemistry_shutters"; - name = "chemistry shutters" - }, -/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) -"cga" = ( -/turf/closed/wall, -/area/medical/chemistry) -"cgb" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cgc" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cgd" = ( -/turf/closed/wall/r_wall, -/area/science/lab) -"cge" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "research_shutters"; - name = "research shutters" - }, -/turf/open/floor/plating, -/area/science/lab) -"cgf" = ( -/obj/structure/table/reinforced, -/obj/item/pen, -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/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"; - name = "research shutters" - }, -/turf/open/floor/plating, -/area/science/lab) -"cgg" = ( -/obj/structure/sign/directions/science{ - pixel_y = -8 - }, -/turf/closed/wall/r_wall, -/area/science/lab) -"cgh" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/poddoor/preopen{ - id = "Biohazard"; - name = "biohazard containment door" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/research) -"cgi" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/poddoor/preopen{ - id = "Biohazard"; - name = "biohazard containment door" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/research) -"cgk" = ( -/obj/structure/closet/secure_closet/security/science, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/science/research) -"cgl" = ( -/obj/structure/filingcabinet, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 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/research) -"cgm" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cgn" = ( -/obj/item/cigbutt, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/starboard/aft) -"cgo" = ( -/turf/closed/wall/r_wall, -/area/science/research) -"cgp" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Research Maintenance"; - req_access_txt = "47" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/science/research) -"cgq" = ( -/turf/closed/wall/r_wall, -/area/science/explab) -"cgs" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, -/area/maintenance/starboard/aft) -"cgu" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"cgv" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"cgw" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"cgx" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"cgy" = ( -/obj/machinery/telecomms/server/presets/service, -/turf/open/floor/circuit/telecomms/mainframe, -/area/tcommsat/server) -"cgz" = ( -/turf/closed/wall/r_wall, -/area/maintenance/disposal/incinerator) -"cgH" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/port) -"cgI" = ( -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cgJ" = ( -/obj/structure/cable/yellow{ - 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/aft) -"cgL" = ( -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cgM" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cgN" = ( -/obj/structure/cable/yellow{ - 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/aft) -"cgO" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Medbay Maintenance"; - req_access_txt = "5" - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cgU" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical/glass{ - name = "Medbay Storage"; - req_access_txt = "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/storage) -"cgV" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/medical/storage) -"cgW" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/airlock/medical/glass{ - name = "Medbay Storage"; - req_access_txt = "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/storage) -"cgX" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/airlock/medical/glass{ - name = "Medbay Desk"; - req_access_txt = "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/medbay/central) -"cgY" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/medical/medbay/central) -"cgZ" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical/glass{ - id_tag = "MedbayFoyer"; - name = "Medbay"; - req_access_txt = "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 - }, -/obj/effect/mapping_helpers/airlock/unres, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cha" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical/glass{ - id_tag = "MedbayFoyer"; - name = "Medbay"; - req_access_txt = "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 - }, -/obj/effect/mapping_helpers/airlock/unres, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"chb" = ( -/obj/machinery/chem_heater, -/obj/machinery/light_switch{ - pixel_x = -23 - }, -/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) -"chc" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/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) -"chd" = ( -/obj/item/reagent_containers/glass/beaker/large, -/obj/item/reagent_containers/glass/beaker/large, -/obj/item/reagent_containers/glass/beaker{ - pixel_x = 8; - pixel_y = 2 - }, -/obj/item/reagent_containers/glass/beaker{ - pixel_x = 8; - pixel_y = 2 - }, -/obj/item/reagent_containers/dropper, -/obj/item/reagent_containers/dropper, -/obj/structure/table/glass, -/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) -"che" = ( -/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, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"chf" = ( -/obj/machinery/chem_dispenser{ - layer = 2.7 - }, -/obj/machinery/button/door{ - id = "chemistry_shutters"; - name = "chemistry shutters control"; - pixel_x = 24; - pixel_y = 24; - req_access_txt = "5; 33" - }, -/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) -"chg" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"chh" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"chi" = ( -/obj/structure/table, -/obj/item/crowbar, -/obj/item/wrench, -/obj/item/clothing/mask/gas, -/obj/item/multitool{ - pixel_x = 3 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/noticeboard{ - pixel_y = 31 - }, -/turf/open/floor/plasteel, -/area/science/lab) -"chj" = ( -/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/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/lab) -"chk" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/lab) -"chm" = ( -/obj/machinery/button/door{ - id = "research_shutters"; - name = "research shutters control"; - pixel_x = 28; - req_access_txt = "7" - }, -/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/lab) -"chn" = ( -/obj/machinery/telecomms/broadcaster/preset_right, -/turf/open/floor/circuit/telecomms/mainframe, -/area/tcommsat/server) -"cho" = ( -/obj/machinery/telecomms/server/presets/supply, -/turf/open/floor/circuit/telecomms/mainframe, -/area/tcommsat/server) -"chp" = ( -/turf/closed/wall/r_wall, -/area/security/checkpoint/science/research) -"chq" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Security Post - Research Division"; - req_access_txt = "63" - }, -/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/research) -"chr" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock/maintenance{ - req_one_access_txt = "12;47" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"chs" = ( -/obj/item/paper, -/obj/structure/sign/map/left{ - desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; - icon_state = "map-left-MS"; - pixel_y = 32 - }, -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_x = -32 - }, -/obj/item/storage/box/donkpockets, -/obj/structure/table/glass, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/science/research) -"cht" = ( -/obj/structure/sign/map/right{ - desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; - icon_state = "map-right-MS"; - pixel_y = 32 - }, -/obj/structure/table/glass, -/obj/item/radio/off, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/science/research) -"chu" = ( -/obj/machinery/status_display/ai{ - pixel_y = 32 - }, -/obj/structure/chair/stool, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/science/research) -"chv" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/science/research) -"chx" = ( -/turf/open/floor/engine, -/area/science/explab) -"chy" = ( -/obj/structure/sign/warning/nosmoking{ - pixel_y = 32 - }, -/obj/machinery/camera{ - c_tag = "Experimentation Lab - Test Chamber"; - network = list("ss13","rd") - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/engine, -/area/science/explab) -"chA" = ( -/obj/item/radio/intercom{ - pixel_y = 25 - }, -/turf/open/floor/engine, -/area/science/explab) -"chB" = ( -/obj/machinery/space_heater, -/obj/effect/landmark/blobstart, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"chC" = ( -/obj/structure/closet/crate, -/obj/item/storage/belt/utility, -/obj/item/stack/cable_coil/random, -/obj/effect/spawner/lootdrop/maintenance, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"chD" = ( -/obj/structure/closet/crate{ - icon_state = "crateopen" - }, -/obj/item/cane, -/obj/effect/spawner/lootdrop/maintenance, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"chE" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"chF" = ( -/obj/structure/closet, -/obj/item/flashlight, -/obj/effect/spawner/lootdrop/maintenance, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"chG" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/item/storage/toolbox/emergency, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -29 - }, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"chH" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/item/extinguisher, -/obj/machinery/light/small, -/obj/structure/extinguisher_cabinet{ - pixel_y = -31 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"chI" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/components/binary/valve{ - name = "output gas to space" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"chJ" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = -31 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/canister, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"chK" = ( -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -26 - }, -/obj/machinery/camera{ - c_tag = "Storage Wing"; - dir = 1 - }, -/obj/machinery/light, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/construction/storage_wing) -"chZ" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cia" = ( -/turf/closed/wall, -/area/medical/surgery) -"cib" = ( -/obj/structure/closet/secure_closet/medical2, -/turf/open/floor/plasteel/white/corner, -/area/medical/surgery) -"cic" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel/white/side{ - dir = 1 - }, -/area/medical/surgery) -"cid" = ( -/obj/structure/curtain{ - icon_state = "closed" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/white, -/area/medical/surgery) -"cil" = ( -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - 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) -"cim" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/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/white, -/area/medical/medbay/central) -"cin" = ( -/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/white, -/area/medical/medbay/central) -"cio" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/sign/warning/nosmoking{ - pixel_y = 28 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"ciq" = ( -/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/white, -/area/medical/medbay/central) -"cir" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cis" = ( -/obj/machinery/button/door{ - desc = "A remote control switch for the medbay foyer."; - id = "MedbayFoyer"; - name = "Medbay Exit Button"; - normaldoorcontrol = 1; - pixel_y = 26 - }, -/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) -"cit" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/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) -"ciu" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - 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) -"civ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical/glass{ - name = "Chemistry Lab"; - req_access_txt = "5; 33" - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"ciw" = ( -/obj/structure/cable/yellow{ - 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 = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"cix" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"ciy" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"ciz" = ( -/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) -"ciA" = ( -/obj/machinery/chem_master, -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/noticeboard{ - desc = "A board for pinning important notices upon. Probably helpful for keeping track of requests."; - name = "requests board"; - pixel_x = 32 - }, -/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) -"ciB" = ( -/obj/machinery/rnd/destructive_analyzer, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/lab) -"ciC" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/lab) -"ciD" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/rnd/production/protolathe/department/science, -/turf/open/floor/plasteel, -/area/science/lab) -"ciE" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/lab) -"ciF" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel/white, -/area/science/lab) -"ciG" = ( -/obj/machinery/disposal/bin{ - pixel_x = 5 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 24 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/lab) -"ciH" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/obj/machinery/shower{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"ciI" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"ciK" = ( -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/research) -"ciL" = ( -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"ciM" = ( -/obj/effect/landmark/blobstart, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/item/cigbutt, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"ciN" = ( -/obj/structure/chair/stool, -/obj/machinery/newscaster{ - pixel_x = -30 - }, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/science/research) -"ciO" = ( -/obj/structure/chair/stool, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/science/research) -"ciP" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/science/research) -"ciQ" = ( -/obj/item/cigbutt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/science/research) -"ciR" = ( -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/obj/machinery/vending/cola/random, -/turf/open/floor/plasteel/white/side{ - dir = 4 - }, -/area/science/research) -"ciS" = ( -/obj/machinery/rnd/bepis, -/turf/open/floor/engine, -/area/science/explab) -"ciT" = ( -/obj/item/beacon, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/engine, -/area/science/explab) -"ciU" = ( -/obj/machinery/rnd/experimentor, -/turf/open/floor/engine, -/area/science/explab) -"ciV" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/engine, -/area/science/explab) -"ciW" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/engine, -/area/science/explab) -"ciX" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/starboard/aft) -"ciY" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/general/visible, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/disposal/incinerator) -"cja" = ( -/obj/effect/mapping_helpers/airlock/locked, -/obj/machinery/door/airlock/public/glass/incinerator/atmos_interior, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/machinery/embedded_controller/radio/airlock_controller/incinerator_atmos{ - pixel_x = 40; - pixel_y = 8 - }, -/turf/open/floor/engine, -/area/maintenance/disposal/incinerator) -"cjb" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible, -/turf/closed/wall/r_wall, -/area/maintenance/disposal/incinerator) -"cjp" = ( -/obj/machinery/vending/boozeomat, -/turf/open/floor/wood, -/area/maintenance/port/aft) -"cjq" = ( -/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/effect/spawner/lootdrop/keg, -/turf/open/floor/wood{ - icon_state = "wood-broken3" - }, -/area/maintenance/port/aft) -"cjr" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"cjs" = ( -/obj/item/reagent_containers/food/drinks/drinkingglass{ - pixel_x = 4; - pixel_y = 5 - }, -/obj/item/reagent_containers/food/drinks/drinkingglass{ - pixel_x = 6; - pixel_y = -1 - }, -/obj/item/reagent_containers/food/drinks/drinkingglass{ - pixel_x = -4; - pixel_y = 6 - }, -/obj/item/reagent_containers/food/drinks/drinkingglass{ - pixel_x = -5; - pixel_y = 2 - }, -/obj/structure/table/wood, -/obj/structure/light_construct/small{ - dir = 1 - }, -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass, -/turf/open/floor/wood, -/area/maintenance/port/aft) -"cjt" = ( -/obj/structure/chair/stool, -/turf/open/floor/wood, -/area/maintenance/port/aft) -"cjv" = ( -/obj/machinery/computer/arcade, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cjw" = ( -/obj/structure/table, -/obj/item/storage/backpack/duffelbag/med/surgery{ - pixel_y = 5 - }, -/obj/machinery/light_switch{ - pixel_x = -26 - }, -/obj/machinery/vending/wallmed{ - pixel_y = 29 - }, -/turf/open/floor/plasteel/white/corner, -/area/medical/surgery) -"cjz" = ( -/obj/structure/closet/secure_closet/medical2, -/turf/open/floor/plasteel/white/corner{ - dir = 8 - }, -/area/medical/surgery) -"cjA" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/white/corner{ - dir = 4 - }, -/area/medical/surgery) -"cjB" = ( -/obj/machinery/iv_drip, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/obj/machinery/firealarm{ - pixel_y = 28 - }, -/turf/open/floor/plasteel/white/side, -/area/medical/surgery) -"cjC" = ( -/obj/structure/table, -/obj/item/radio/intercom{ - broadcasting = 1; - frequency = 1485; - listening = 0; - name = "Station Intercom (Medbay)"; - pixel_y = 22 - }, -/obj/item/clothing/gloves/color/latex, -/obj/item/clothing/suit/apron/surgical, -/turf/open/floor/plasteel/white/side, -/area/medical/surgery) -"cjD" = ( -/obj/structure/table, -/obj/item/storage/backpack/duffelbag/med/surgery{ - pixel_y = 5 - }, -/obj/machinery/light_switch{ - pixel_x = 28 - }, -/obj/machinery/vending/wallmed{ - pixel_y = 29 - }, -/turf/open/floor/plasteel/white/corner{ - dir = 8 - }, -/area/medical/surgery) -"cjK" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/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) -"cjL" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cjM" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cjN" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cjO" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cjP" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cjQ" = ( -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cjR" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/obj/machinery/shower{ - dir = 8; - name = "emergency shower" - }, -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cjS" = ( -/obj/item/stack/sheet/mineral/plasma, -/obj/item/stack/sheet/mineral/plasma, -/obj/structure/table/glass, -/obj/item/reagent_containers/glass/bottle/epinephrine, -/obj/item/reagent_containers/glass/bottle/charcoal{ - pixel_x = 7; - pixel_y = 4 - }, -/obj/item/storage/pill_bottle/epinephrine{ - pixel_x = 3 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"cjT" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"cjU" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"cjV" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"cjW" = ( -/obj/item/assembly/timer{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/assembly/timer{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/assembly/igniter{ - pixel_x = 3; - pixel_y = -7 - }, -/obj/item/assembly/igniter{ - pixel_x = 3; - pixel_y = -7 - }, -/obj/item/assembly/igniter{ - pixel_x = 3; - pixel_y = -7 - }, -/obj/item/assembly/igniter{ - pixel_x = 3; - pixel_y = -7 - }, -/obj/item/assembly/timer{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/assembly/timer{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/structure/table/glass, -/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) -"cjX" = ( -/obj/machinery/computer/rdconsole/core{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/science/lab) -"cjY" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/science/lab) -"cjZ" = ( -/obj/item/reagent_containers/glass/beaker/sulphuric, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/rnd/production/circuit_imprinter/department/science, -/turf/open/floor/plasteel, -/area/science/lab) -"cka" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/lab) -"ckb" = ( -/obj/effect/landmark/start/scientist, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/lab) -"ckc" = ( -/obj/structure/table, -/obj/item/stock_parts/manipulator, -/obj/item/stock_parts/capacitor, -/obj/item/stock_parts/capacitor, -/obj/item/stock_parts/manipulator, -/obj/item/stock_parts/micro_laser, -/obj/item/stock_parts/micro_laser, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/item/clothing/glasses/science, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/lab) -"ckd" = ( -/obj/effect/spawner/structure/window, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/science/lab) -"cke" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"ckf" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"ckg" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"ckh" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/closet/firecloset, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/research) -"cki" = ( -/obj/item/storage/toolbox/emergency, -/obj/item/clothing/mask/gas, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"ckj" = ( -/obj/machinery/light/small, -/obj/item/stock_parts/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"ckk" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/item/flashlight, -/obj/effect/landmark/blobstart, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"ckl" = ( -/obj/item/stack/packageWrap, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"ckm" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -24 - }, -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/item/cigbutt, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/science/research) -"ckn" = ( -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/science/research) -"cko" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/science/research) -"ckp" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/science/research) -"ckq" = ( -/obj/machinery/vending/coffee, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_x = 29 - }, -/turf/open/floor/plasteel/white/side{ - dir = 4 - }, -/area/science/research) -"ckr" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/engine, -/area/science/explab) -"cks" = ( -/obj/machinery/button/door{ - id = "telelab"; - name = "Test Chamber Blast Doors"; - pixel_y = -25 - }, -/turf/open/floor/engine, -/area/science/explab) -"ckt" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/engine, -/area/science/explab) -"cku" = ( -/obj/structure/closet, -/obj/item/storage/box/donkpockets, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 3; - name = "3maintenance loot spawner" - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"ckv" = ( -/obj/structure/closet/crate, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/obj/item/assembly/infra, -/obj/effect/spawner/lootdrop/maintenance, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"ckw" = ( -/obj/structure/table, -/obj/effect/decal/cleanable/cobweb, -/obj/item/shard, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"ckx" = ( -/obj/structure/table, -/obj/structure/sign/departments/medbay{ - pixel_y = 32 - }, -/obj/item/reagent_containers/glass/beaker/large, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cky" = ( -/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/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/blood/gibs/old, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"ckz" = ( -/obj/structure/table, -/obj/item/storage/toolbox/emergency, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"ckA" = ( -/obj/structure/table, -/obj/item/reagent_containers/food/drinks/drinkingglass{ - pixel_x = 4; - pixel_y = 5 - }, -/obj/item/reagent_containers/food/drinks/drinkingglass{ - pixel_x = 6; - pixel_y = -1 - }, -/obj/item/reagent_containers/food/drinks/drinkingglass{ - pixel_x = -4; - pixel_y = 6 - }, -/obj/item/reagent_containers/dropper, -/obj/item/reagent_containers/dropper, -/obj/item/reagent_containers/syringe, -/obj/item/reagent_containers/syringe, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"ckB" = ( -/obj/item/reagent_containers/glass/bottle/toxin{ - pixel_x = 4; - pixel_y = 2 - }, -/obj/structure/table, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/machinery/reagentgrinder{ - pixel_y = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"ckC" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/components/binary/pump/on{ - name = "Incinerator Output Pump" - }, -/obj/structure/disposalpipe/segment, -/turf/open/space, -/area/maintenance/disposal/incinerator) -"ckD" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/sign/warning/fire{ - pixel_x = -32 - }, -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 1 - }, -/obj/machinery/airlock_sensor/incinerator_atmos{ - pixel_x = -8; - pixel_y = 24 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/engine, -/area/maintenance/disposal/incinerator) -"ckE" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume/incinerator_atmos{ - dir = 8 - }, -/turf/open/floor/engine, -/area/maintenance/disposal/incinerator) -"ckF" = ( -/obj/structure/sign/warning/fire{ - pixel_x = 32 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/atmospherics/components/binary/pump/on, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/engine, -/area/maintenance/disposal/incinerator) -"ckN" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"ckO" = ( -/obj/structure/closet/secure_closet/bar{ - pixel_x = -3; - pixel_y = -1; - req_access_txt = "25" - }, -/turf/open/floor/wood, -/area/maintenance/port/aft) -"ckP" = ( -/turf/open/floor/wood, -/area/maintenance/port/aft) -"ckQ" = ( -/turf/open/floor/wood{ - icon_state = "wood-broken7" - }, -/area/maintenance/port/aft) -"ckR" = ( -/obj/item/reagent_containers/rag, -/obj/structure/table/wood, -/turf/open/floor/wood{ - icon_state = "wood-broken4" - }, -/area/maintenance/port/aft) -"ckS" = ( -/turf/open/floor/wood{ - icon_state = "wood-broken5" - }, -/area/maintenance/port/aft) -"ckU" = ( -/obj/machinery/computer/operating{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/white/side{ - dir = 4 - }, -/area/medical/surgery) -"ckX" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel/white/side{ - dir = 8 - }, -/area/medical/surgery) -"ckY" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel/white/side{ - dir = 1 - }, -/area/medical/surgery) -"ckZ" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel/white/side{ - dir = 4 - }, -/area/medical/surgery) -"cla" = ( -/turf/open/floor/plasteel/white, -/area/medical/surgery) -"clb" = ( -/obj/effect/landmark/start/medical_doctor, -/turf/open/floor/plasteel/white, -/area/medical/surgery) -"clc" = ( -/obj/machinery/computer/operating{ - dir = 8 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/white/side{ - dir = 8 - }, -/area/medical/surgery) -"clj" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"clk" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cll" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"clm" = ( -/obj/item/radio/intercom{ - broadcasting = 1; - frequency = 1485; - listening = 0; - name = "Station Intercom (Medbay)"; - pixel_y = -30 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cln" = ( -/obj/effect/turf_decal/tile/blue, -/obj/vehicle/ridden/wheelchair{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"clo" = ( -/obj/structure/bed/roller, -/obj/machinery/iv_drip, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"clp" = ( -/obj/machinery/light, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"clq" = ( -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"clr" = ( -/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/medbay/central) -"cls" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/window/eastright{ - name = "Chemistry Desk"; - req_access_txt = "5; 33" - }, -/obj/machinery/door/window/eastright{ - dir = 8; - name = "Chemistry Desk"; - req_access_txt = "5" - }, -/obj/item/reagent_containers/glass/bottle/morphine, -/obj/item/reagent_containers/glass/bottle/toxin{ - pixel_x = 5; - pixel_y = 4 - }, -/obj/item/reagent_containers/glass/bottle/epinephrine{ - pixel_x = 8 - }, -/obj/item/reagent_containers/glass/bottle/charcoal{ - pixel_x = -5 - }, -/obj/item/reagent_containers/syringe/epinephrine, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"clt" = ( -/obj/structure/chair/office/light{ - dir = 8 - }, -/obj/effect/landmark/start/chemist, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"clu" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/landmark/start/chemist, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"clv" = ( -/obj/structure/chair/office/light{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"clw" = ( -/obj/structure/table/glass, -/obj/item/folder/white{ - pixel_y = 2 - }, -/obj/item/grenade/chem_grenade, -/obj/item/grenade/chem_grenade, -/obj/item/grenade/chem_grenade, -/obj/item/grenade/chem_grenade, -/obj/item/screwdriver{ - pixel_x = -2; - pixel_y = 6 - }, -/obj/item/radio/headset/headset_med, -/obj/structure/extinguisher_cabinet{ - pixel_x = 24 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/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) -"clx" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/extinguisher_cabinet{ - pixel_x = -27 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cly" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/camera{ - c_tag = "Aft Primary Hallway - Fore"; - dir = 8 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 24 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"clz" = ( -/obj/item/stack/sheet/glass/fifty{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/stack/sheet/metal/fifty, -/obj/item/clothing/glasses/welding, -/obj/structure/table, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/lab) -"clA" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/lab) -"clB" = ( -/obj/structure/chair/stool, -/turf/open/floor/plasteel/white, -/area/science/lab) -"clC" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/chair/stool, -/turf/open/floor/plasteel/white, -/area/science/lab) -"clD" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/lab) -"clE" = ( -/obj/structure/table, -/obj/item/stock_parts/matter_bin, -/obj/item/stock_parts/matter_bin, -/obj/item/stock_parts/scanning_module, -/obj/item/stock_parts/scanning_module, -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/sign/warning/nosmoking{ - pixel_x = 30 - }, -/turf/open/floor/plasteel, -/area/science/lab) -"clF" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/shower{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"clG" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel/white, -/area/science/research) -"clH" = ( -/obj/machinery/shower{ - dir = 8 - }, -/obj/item/radio/intercom{ - dir = 8; - name = "Station Intercom (General)"; - pixel_y = -28 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/white, -/area/science/research) -"clI" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 24 - }, -/obj/structure/closet/firecloset, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/research) -"clJ" = ( -/obj/structure/plasticflaps/opaque, -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=2"; - freq = 1400; - location = "Research Division" - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/maintenance/starboard/aft) -"clK" = ( -/turf/closed/wall/r_wall, -/area/maintenance/aft) -"clL" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/item/storage/box/lights/mixed, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"clN" = ( -/obj/machinery/microwave{ - pixel_x = -3; - pixel_y = 6 - }, -/obj/structure/table/glass, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/science/research) -"clO" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/science/research) -"clP" = ( -/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/cafeteria{ - dir = 5 - }, -/area/science/research) -"clQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/noticeboard{ - pixel_y = -32 - }, -/obj/machinery/light, -/obj/machinery/camera{ - c_tag = "Research Division - Break Room"; - dir = 1; - network = list("ss13","rd") - }, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/science/research) -"clR" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/plasteel/white/side{ - dir = 4 - }, -/area/science/research) -"clS" = ( -/obj/structure/sign/warning/electricshock, -/turf/closed/wall/r_wall, -/area/science/explab) -"clT" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "telelab"; - name = "test chamber blast door" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/science/explab) -"clU" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "telelab"; - name = "test chamber blast door" - }, -/turf/open/floor/plating, -/area/science/explab) -"clV" = ( -/obj/machinery/door/poddoor/preopen{ - id = "telelab"; - name = "test chamber blast door" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/engine, -/area/science/explab) -"clW" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"clX" = ( -/obj/machinery/door/airlock/maintenance/abandoned{ - name = "Storage Room"; - req_one_access_txt = "12;47" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"clY" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"clZ" = ( -/obj/effect/landmark/xeno_spawn, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/blood/gibs/old, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cma" = ( -/obj/structure/rack, -/obj/item/clothing/suit/apron, -/obj/item/clothing/mask/surgical, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cmb" = ( -/obj/machinery/chem_master{ - pixel_x = -4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cmc" = ( -/obj/structure/lattice, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/general/visible, -/turf/open/space, -/area/space/nearstation) -"cmd" = ( -/obj/effect/mapping_helpers/airlock/locked, -/obj/machinery/door/airlock/public/glass/incinerator/atmos_exterior, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/turf/open/floor/engine, -/area/maintenance/disposal/incinerator) -"cmg" = ( -/obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/shaker, -/obj/item/reagent_containers/glass/beaker/cryoxadone, -/obj/item/reagent_containers/glass/beaker{ - pixel_x = 8; - pixel_y = 2 - }, -/obj/item/reagent_containers/dropper, -/turf/open/floor/wood, -/area/maintenance/port/aft) -"cmh" = ( -/obj/item/reagent_containers/food/drinks/ale, -/obj/structure/table/wood, -/turf/open/floor/wood, -/area/maintenance/port/aft) -"cmi" = ( -/obj/structure/light_construct/small{ - dir = 4 - }, -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_x = 30 - }, -/turf/open/floor/wood, -/area/maintenance/port/aft) -"cmk" = ( -/obj/structure/table/optable, -/turf/open/floor/plasteel/white/corner{ - dir = 4 - }, -/area/medical/surgery) -"cml" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/plasteel/white/side{ - dir = 1 - }, -/area/medical/surgery) -"cmm" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/medical/surgery) -"cmn" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/open/floor/plasteel/white/side{ - dir = 1 - }, -/area/medical/surgery) -"cmr" = ( -/obj/machinery/door/firedoor, -/obj/structure/extinguisher_cabinet{ - pixel_x = -27 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cms" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cmt" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cmy" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Medbay Maintenance"; - req_access_txt = "5" - }, -/turf/open/floor/plating, -/area/medical/medbay/central) -"cmz" = ( -/obj/machinery/reagentgrinder, -/obj/machinery/requests_console{ - department = "Chemistry"; - departmentType = 2; - pixel_x = -30; - receive_ore_updates = 1 - }, -/obj/structure/table/glass, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"cmA" = ( -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/machinery/holopad, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"cmB" = ( -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"cmC" = ( -/obj/item/stack/packageWrap, -/obj/item/stack/packageWrap, -/obj/item/stack/packageWrap, -/obj/item/stack/packageWrap, -/obj/item/stack/packageWrap, -/obj/item/hand_labeler, -/obj/structure/table/glass, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"cmD" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/sign/departments/chemistry{ - pixel_x = -32 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cmE" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/sign/departments/science{ - pixel_x = 32 - }, -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cmF" = ( -/obj/item/radio/intercom{ - dir = 8; - name = "Station Intercom (General)"; - pixel_x = -28 - }, -/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/white, -/area/science/lab) -"cmG" = ( -/obj/item/paper_bin{ - pixel_x = -2; - pixel_y = 6 - }, -/obj/structure/table, -/turf/open/floor/plasteel/white, -/area/science/lab) -"cmH" = ( -/obj/structure/table, -/obj/structure/disposalpipe/segment, -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/item/disk/tech_disk, -/obj/item/disk/tech_disk, -/obj/item/disk/design_disk, -/obj/item/disk/design_disk, -/turf/open/floor/plasteel/white, -/area/science/lab) -"cmI" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/white, -/area/science/lab) -"cmJ" = ( -/obj/machinery/camera{ - c_tag = "Research and Development"; - dir = 8; - network = list("ss13","rd") - }, -/obj/machinery/light_switch{ - pixel_x = 27 - }, -/obj/structure/table, -/obj/item/stack/cable_coil, -/obj/item/stack/cable_coil, -/obj/item/stock_parts/scanning_module{ - pixel_x = 2; - pixel_y = 3 - }, -/obj/item/stock_parts/scanning_module, -/turf/open/floor/plasteel, -/area/science/lab) -"cmL" = ( -/obj/machinery/door/window/westleft{ - dir = 2; - name = "Research Division Deliveries"; - req_access_txt = "47" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/research) -"cmM" = ( -/obj/machinery/door/airlock{ - name = "Research Emergency Storage"; - req_one_access_txt = "47" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cmN" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock/medical{ - name = "Research Break Room"; - req_one_access_txt = "47" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/science/research) -"cmO" = ( -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/window/reinforced/tinted/fulltile, -/turf/open/floor/plating, -/area/science/research) -"cmP" = ( -/turf/closed/wall, -/area/science/explab) -"cmQ" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -27 - }, -/obj/machinery/requests_console{ - department = "Science"; - departmentType = 2; - name = "Science Requests Console"; - pixel_y = 30; - receive_ore_updates = 1 - }, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/science/explab) -"cmR" = ( -/obj/structure/table/reinforced, -/obj/item/paper_bin{ - pixel_x = -2; - pixel_y = 6 - }, -/obj/item/pen, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/science/explab) -"cmS" = ( -/obj/structure/table/reinforced, -/obj/item/hand_labeler, -/obj/item/stack/packageWrap, -/obj/item/stack/packageWrap, -/obj/item/stack/packageWrap, -/obj/item/taperecorder, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/science/explab) -"cmT" = ( -/obj/machinery/computer/rdconsole/experiment, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/science/explab) -"cmU" = ( -/obj/structure/table/reinforced, -/obj/item/clipboard, -/obj/item/book/manual/wiki/experimentor, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/science/explab) -"cmV" = ( -/obj/machinery/button/door{ - id = "telelab"; - name = "Test Chamber Blast Doors"; - pixel_y = 25 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/obj/structure/table/reinforced, -/obj/item/reagent_containers/glass/bottle/epinephrine{ - pixel_x = 7; - pixel_y = 2 - }, -/obj/item/reagent_containers/glass/bottle/charcoal{ - pixel_x = -2; - pixel_y = -1 - }, -/obj/item/reagent_containers/dropper, -/obj/item/stack/medical/suture{ - pixel_x = -2; - pixel_y = 6 - }, -/obj/item/stack/medical/mesh, -/obj/item/healthanalyzer, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/science/explab) -"cmW" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/science/explab) -"cmY" = ( -/obj/structure/closet/crate{ - icon_state = "crateopen" - }, -/obj/effect/spawner/lootdrop/maintenance, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cmZ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cna" = ( -/obj/structure/rack, -/obj/item/clothing/under/color/white, -/obj/item/clothing/head/soft/mime, -/obj/item/clothing/under/color/white, -/obj/item/clothing/head/soft/mime, -/obj/item/clothing/mask/surgical, -/obj/item/clothing/mask/surgical, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cnb" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/starboard/aft) -"cnc" = ( -/obj/machinery/chem_heater, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cnd" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/incinerator_output{ - dir = 1 - }, -/turf/open/floor/engine/vacuum, -/area/maintenance/disposal/incinerator) -"cne" = ( -/obj/machinery/igniter/incinerator_atmos, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/air_sensor/atmos/incinerator_tank{ - pixel_x = -32; - pixel_y = -32 - }, -/turf/open/floor/engine/vacuum, -/area/maintenance/disposal/incinerator) -"cnf" = ( -/obj/structure/sign/warning/vacuum/external{ - pixel_y = -32 - }, -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/incinerator_input{ - dir = 1 - }, -/turf/open/floor/engine/vacuum, -/area/maintenance/disposal/incinerator) -"cng" = ( -/obj/machinery/door/poddoor/incinerator_atmos_aux, -/turf/open/floor/engine/vacuum, -/area/maintenance/disposal/incinerator) -"cnh" = ( -/obj/item/flashlight/lamp, -/obj/structure/table/wood, -/turf/open/floor/wood, -/area/maintenance/port/aft) -"cni" = ( -/obj/item/reagent_containers/food/drinks/bottle/tequila, -/obj/structure/table/wood, -/turf/open/floor/wood, -/area/maintenance/port/aft) -"cnj" = ( -/obj/item/reagent_containers/food/drinks/beer, -/obj/structure/table/wood, -/turf/open/floor/wood, -/area/maintenance/port/aft) -"cnk" = ( -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, -/area/maintenance/port/aft) -"cnl" = ( -/obj/structure/mineral_door/wood{ - name = "The Gobbetting Barmaid" - }, -/turf/open/floor/wood, -/area/maintenance/port/aft) -"cnm" = ( -/obj/structure/sign/poster/official/cleanliness, -/turf/closed/wall, -/area/medical/surgery) -"cnp" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical/glass{ - name = "Operating Theatre"; - req_access_txt = "45" - }, -/turf/open/floor/plasteel/white, -/area/medical/surgery) -"cnq" = ( -/obj/machinery/smartfridge/organ/preloaded, -/turf/closed/wall, -/area/medical/surgery) -"cnr" = ( -/obj/effect/spawner/structure/window, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/medical/surgery) -"cnt" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/medical/surgery) -"cnv" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/closet/secure_closet/medical1{ - pixel_x = -3 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/cryo) -"cnw" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/medical/cryo) -"cnx" = ( -/obj/machinery/atmospherics/components/unary/cryo_cell, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/medical/cryo) -"cny" = ( -/obj/machinery/atmospherics/components/unary/cryo_cell, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/medical/cryo) -"cnz" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/medical/cryo) -"cnA" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cnB" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cnH" = ( -/obj/item/clothing/glasses/science{ - pixel_x = 2; - pixel_y = 4 - }, -/obj/item/clothing/glasses/science, -/obj/item/radio/intercom{ - dir = 8; - name = "Station Intercom (General)"; - pixel_x = -28 - }, -/obj/structure/table/glass, -/obj/item/stack/cable_coil, -/obj/item/stack/cable_coil, -/obj/machinery/camera{ - c_tag = "Chemistry"; - dir = 4; - network = list("ss13","medbay") - }, -/obj/machinery/light{ - dir = 8 - }, -/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) -"cnI" = ( -/obj/structure/disposalpipe/junction/flip{ - dir = 2 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"cnJ" = ( -/obj/machinery/disposal/bin{ - pixel_x = 5 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"cnK" = ( -/obj/machinery/chem_dispenser{ - layer = 2.7 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"cnL" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "chemistry_shutters_2"; - name = "chemistry shutters" - }, -/turf/open/floor/plating, -/area/medical/chemistry) -"cnM" = ( -/obj/structure/table/reinforced, -/obj/item/paper_bin{ - pixel_x = -2; - pixel_y = 6 - }, -/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, -/area/hallway/primary/aft) -"cnN" = ( -/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, -/area/hallway/primary/aft) -"cnO" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cnP" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cnQ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/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, -/area/hallway/primary/aft) -"cnR" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "research_shutters_2"; - name = "research shutters" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/science/lab) -"cnS" = ( -/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/science/lab) -"cnT" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/chair/stool, -/turf/open/floor/plasteel/white, -/area/science/lab) -"cnU" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/chair/stool, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/lab) -"cnV" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/lab) -"cnW" = ( -/obj/structure/table, -/obj/item/stack/sheet/glass, -/obj/item/stack/sheet/glass, -/obj/item/stack/sheet/glass, -/obj/item/stock_parts/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/science/lab) -"cnX" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/science/lab) -"cnY" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/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/research) -"cnZ" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/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/white, -/area/science/research) -"coa" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"cob" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/sign/warning/nosmoking{ - pixel_y = 32 - }, -/obj/machinery/camera{ - c_tag = "Research Division Hallway - Central"; - network = list("ss13","rd") - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"coc" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"cod" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = 29 - }, -/turf/open/floor/plasteel/white/side{ - dir = 10 - }, -/area/science/research) -"coe" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/white/side, -/area/science/research) -"cof" = ( -/turf/open/floor/plasteel/white/side{ - dir = 6 - }, -/area/science/research) -"cog" = ( -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = 20 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"coh" = ( -/obj/structure/disposalpipe/segment, -/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/research) -"coi" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"coj" = ( -/obj/item/kirbyplants{ - icon_state = "plant-10" - }, -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/plasteel/white, -/area/science/research) -"cok" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -26 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/explab) -"col" = ( -/obj/structure/chair/office/light{ - dir = 4 - }, -/mob/living/simple_animal/pet/dog/pug{ - desc = "It's Pugley IV, the research department's lovable pug clone. Hopefully nothing happens to this one - fourth time lucky!"; - name = "Pugley IV"; - real_name = "Pugley IV" - }, -/turf/open/floor/plasteel/white, -/area/science/explab) -"com" = ( -/obj/structure/table/reinforced, -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/item/stack/sheet/mineral/plasma{ - pixel_y = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/explab) -"con" = ( -/obj/effect/landmark/start/scientist, -/obj/structure/chair/office/light{ - dir = 1; - pixel_y = 3 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/explab) -"coo" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/table/reinforced, -/obj/item/wrench, -/obj/item/crowbar, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas, -/obj/item/clothing/glasses/science, -/obj/item/multitool{ - pixel_x = 3 - }, -/turf/open/floor/plasteel/white, -/area/science/explab) -"cop" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/holopad, -/turf/open/floor/plasteel/white, -/area/science/explab) -"coq" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/explab) -"cor" = ( -/obj/structure/girder, -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cos" = ( -/obj/structure/table, -/obj/item/paper_bin{ - pixel_y = 6 - }, -/obj/item/pen, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cot" = ( -/obj/structure/table, -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/item/reagent_containers/blood/random, -/obj/item/reagent_containers/blood/random, -/obj/item/reagent_containers/blood{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/reagent_containers/blood{ - pixel_x = -3; - pixel_y = -3 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cou" = ( -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cov" = ( -/obj/structure/bed, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cow" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/rnd/production/techfab/department/service, -/turf/open/floor/plasteel, -/area/hallway/secondary/service) -"cox" = ( -/obj/structure/mineral_door/wood{ - name = "The Gobbetting Barmaid" - }, -/turf/open/floor/wood{ - icon_state = "wood-broken6" - }, -/area/maintenance/port/aft) -"coy" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/turf/open/floor/plasteel/dark, -/area/medical/surgery) -"coz" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/decal/cleanable/vomit/old{ - pixel_x = -2; - pixel_y = 7 - }, -/turf/open/floor/plasteel/dark, -/area/medical/surgery) -"coA" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel/dark, -/area/medical/surgery) -"coB" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/medical/surgery) -"coC" = ( -/obj/effect/landmark/start/medical_doctor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/medical/surgery) -"coD" = ( -/obj/item/cigbutt{ - pixel_x = -8; - pixel_y = 12 - }, -/obj/structure/chair{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel/dark, -/area/medical/surgery) -"coE" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel/dark, -/area/medical/surgery) -"coF" = ( -/obj/item/trash/popcorn{ - pixel_x = -5; - pixel_y = -4 - }, -/obj/structure/chair{ - dir = 1 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 24 - }, -/turf/open/floor/plasteel/dark, -/area/medical/surgery) -"coG" = ( -/obj/structure/table/optable, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/medical/surgery) -"coH" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/white, -/area/medical/cryo) -"coI" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/cryo) -"coJ" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/medical/cryo) -"coK" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible, -/obj/effect/landmark/start/medical_doctor, -/turf/open/floor/plasteel, -/area/medical/cryo) -"coL" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 9 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/medical/cryo) -"coM" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/medical/cryo) -"coN" = ( -/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) -"coT" = ( -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/machinery/vending/wardrobe/chem_wardrobe, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"coU" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"coV" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"coW" = ( -/obj/structure/chair/office/light{ - dir = 4 - }, -/obj/effect/landmark/start/chemist, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"coX" = ( -/obj/structure/table/reinforced, -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/window/eastright{ - dir = 8; - name = "Chemistry Desk"; - req_access_txt = "5; 33" - }, -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/item/pen, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "chemistry_shutters_2"; - name = "chemistry shutters" - }, -/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) -"coY" = ( -/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, -/area/hallway/primary/aft) -"coZ" = ( -/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, -/area/hallway/primary/aft) -"cpa" = ( -/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, -/area/hallway/primary/aft) -"cpb" = ( -/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, -/area/hallway/primary/aft) -"cpc" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/eastright{ - name = "Research and Development Desk"; - req_one_access_txt = "7;29" - }, -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/machinery/door/firedoor, -/obj/item/pen, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "research_shutters_2"; - name = "research shutters" - }, -/turf/open/floor/plating, -/area/science/lab) -"cpd" = ( -/obj/effect/landmark/start/scientist, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/lab) -"cpe" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/white, -/area/science/lab) -"cpf" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/plasteel/white, -/area/science/lab) -"cpg" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/lab) -"cph" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/lab) -"cpj" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"cpk" = ( -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"cpl" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/white, -/area/science/research) -"cpm" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"cpn" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/white, -/area/science/research) -"cpo" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"cpp" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"cpq" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/structure/disposalpipe/junction/flip{ - dir = 2 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plasteel/white, -/area/science/research) -"cpr" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"cpt" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/junction{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/white, -/area/science/research) -"cpu" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plasteel/white, -/area/science/research) -"cpv" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"cpw" = ( -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/junction/flip{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"cpx" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/airlock/research{ - name = "Experimentation Lab"; - req_access_txt = "8" - }, -/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/white, -/area/science/explab) -"cpy" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/junction{ - 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/explab) -"cpz" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/explab) -"cpA" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/explab) -"cpB" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/explab) -"cpC" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/explab) -"cpD" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/explab) -"cpE" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/explab) -"cpF" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Experimentation Lab Maintenance"; - req_access_txt = "8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cpG" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cpH" = ( -/obj/structure/bed/roller, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cpI" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/starboard/aft) -"cpJ" = ( -/obj/structure/barricade/wooden, -/obj/structure/girder, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cpK" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cpL" = ( -/obj/effect/decal/cleanable/blood/gibs/limb, -/obj/structure/rack, -/obj/item/storage/firstaid/regular, -/obj/item/stack/medical/suture, -/obj/item/stack/medical/suture, -/obj/item/stack/medical/mesh, -/obj/item/clothing/glasses/hud/health, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cpM" = ( -/obj/structure/lattice, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 5 - }, -/turf/open/space, -/area/space/nearstation) -"cpN" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/on{ - dir = 8 - }, -/turf/open/floor/plating/airless, -/area/maintenance/disposal/incinerator) -"cpP" = ( -/obj/structure/lattice/catwalk, -/obj/item/wrench, -/turf/open/space, -/area/space/nearstation) -"cpQ" = ( -/obj/structure/chair/stool, -/turf/open/floor/wood{ - icon_state = "wood-broken7" - }, -/area/maintenance/port/aft) -"cpS" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cpT" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel/white, -/area/medical/surgery) -"cpW" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/holopad, -/turf/open/floor/plasteel/dark/side{ - dir = 1 - }, -/area/medical/surgery) -"cpX" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/structure/extinguisher_cabinet{ - pixel_y = -30 - }, -/turf/open/floor/plasteel/dark/side{ - dir = 1 - }, -/area/medical/surgery) -"cpZ" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/dark/side{ - dir = 1 - }, -/area/medical/surgery) -"cqa" = ( -/turf/open/floor/plasteel/dark/side{ - dir = 1 - }, -/area/medical/surgery) -"cqb" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/blue{ - 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/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/door/airlock/medical{ - name = "Surgery Observation" - }, -/turf/open/floor/plasteel/white, -/area/medical/surgery) -"cqc" = ( -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel/white, -/area/medical/cryo) -"cqd" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/cryo) -"cqe" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/medical/cryo) -"cqf" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/medical/cryo) -"cqg" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 10 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/medical/cryo) -"cqh" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/medical/cryo) -"cqi" = ( -/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/white, -/area/medical/medbay/central) -"cqj" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cqp" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance{ - name = "CMO Maintenance"; - req_access_txt = "40" - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cqq" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cqs" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/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) -"cqt" = ( -/obj/machinery/chem_heater{ - pixel_x = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"cqu" = ( -/obj/machinery/chem_master, -/obj/structure/noticeboard{ - desc = "A board for pinning important notices upon. Probably helpful for keeping track of requests."; - dir = 1; - name = "requests board"; - pixel_y = -32 - }, -/obj/machinery/button/door{ - id = "chemistry_shutters_2"; - name = "chemistry shutters control"; - pixel_x = 26; - pixel_y = -26; - req_access_txt = "5; 33" - }, -/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) -"cqv" = ( -/obj/structure/table/reinforced, -/obj/item/paper_bin{ - pixel_x = -2; - pixel_y = 6 - }, -/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, -/area/hallway/primary/aft) -"cqw" = ( -/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) -"cqx" = ( -/obj/machinery/cell_charger, -/obj/item/stock_parts/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/obj/machinery/power/apc{ - areastring = "/area/science/lab"; - name = "Research Lab APC"; - pixel_y = -26 - }, -/obj/structure/cable/yellow, -/obj/structure/table, -/obj/machinery/button/door{ - id = "research_shutters_2"; - name = "research shutters control"; - pixel_x = -26; - pixel_y = -26; - req_access_txt = "7" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/lab) -"cqy" = ( -/obj/item/storage/toolbox/mechanical{ - pixel_x = 2; - pixel_y = 3 - }, -/obj/item/storage/toolbox/mechanical{ - pixel_x = -2; - pixel_y = -1 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/item/stack/cable_coil, -/obj/item/stack/cable_coil, -/obj/structure/table, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/lab) -"cqz" = ( -/obj/item/stack/packageWrap, -/obj/item/stack/packageWrap, -/obj/item/hand_labeler, -/obj/machinery/requests_console{ - department = "Science"; - departmentType = 2; - name = "Science Requests Console"; - pixel_y = -30; - receive_ore_updates = 1 - }, -/obj/structure/table, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/lab) -"cqA" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/window/eastleft{ - dir = 1; - name = "Research and Development Deliveries"; - req_one_access_txt = "7;29" - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/lab) -"cqB" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/lab) -"cqC" = ( -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"cqD" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"cqE" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/white, -/area/science/research) -"cqF" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"cqG" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"cqH" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"cqI" = ( -/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/white, -/area/science/research) -"cqJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"cqK" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Research Division Hallway - Starboard"; - dir = 1; - network = list("ss13","rd") - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"cqL" = ( -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel/white, -/area/science/research) -"cqM" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"cqN" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/plasteel/white, -/area/science/research) -"cqO" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"cqP" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/science/explab) -"cqQ" = ( -/obj/machinery/light_switch{ - pixel_x = -23 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/science/explab) -"cqR" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/power/apc{ - areastring = "/area/science/explab"; - name = "Experimentation Lab APC"; - pixel_y = -24 - }, -/obj/structure/cable/yellow, -/turf/open/floor/plasteel/white, -/area/science/explab) -"cqS" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -29 - }, -/obj/machinery/camera{ - c_tag = "Experimentation Lab"; - dir = 1; - network = list("ss13","rd") - }, -/obj/machinery/light, -/turf/open/floor/plasteel/white, -/area/science/explab) -"cqT" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/explab) -"cqU" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel/white, -/area/science/explab) -"cqV" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/science/explab) -"cqW" = ( -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/explab) -"cqX" = ( -/obj/structure/bed/roller, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/blood/gibs/old, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cqY" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cqZ" = ( -/obj/structure/barricade/wooden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/girder, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cra" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"crb" = ( -/obj/structure/bed, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/blood/gibs/old, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"crc" = ( -/obj/structure/lattice, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/space, -/area/space/nearstation) -"crd" = ( -/obj/structure/disposaloutlet, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/space/nearstation) -"cre" = ( -/obj/structure/sign/warning/fire, -/turf/closed/wall/r_wall, -/area/maintenance/disposal/incinerator) -"crf" = ( -/obj/machinery/door/poddoor/incinerator_atmos_main, -/turf/open/floor/engine/vacuum, -/area/maintenance/disposal/incinerator) -"crg" = ( -/obj/item/toy/cards/deck, -/obj/structure/table/wood/poker, -/turf/open/floor/wood, -/area/maintenance/port/aft) -"crh" = ( -/turf/open/floor/wood{ - icon_state = "wood-broken4" - }, -/area/maintenance/port/aft) -"cri" = ( -/obj/machinery/shower{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/freezer, -/area/commons/toilet/restrooms) -"crj" = ( -/obj/machinery/light_switch{ - pixel_x = -26 - }, -/turf/open/floor/plasteel/white/corner, -/area/medical/surgery) -"crl" = ( -/turf/open/floor/plasteel/white/side, -/area/medical/surgery) -"crm" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel/white/side, -/area/medical/surgery) -"crn" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/white/side, -/area/medical/surgery) -"cro" = ( -/obj/effect/landmark/blobstart, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel/white, -/area/medical/surgery) -"crq" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/white/side, -/area/medical/surgery) -"crr" = ( -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -22 - }, -/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/cryo) -"crs" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/structure/table/reinforced, -/obj/item/crowbar, -/obj/machinery/camera{ - c_tag = "Medbay Cryo"; - dir = 1; - network = list("ss13","medbay") - }, -/obj/item/screwdriver{ - pixel_y = 6 - }, -/obj/item/clothing/neck/stethoscope, -/obj/item/wrench/medical, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/cryo) -"crt" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ - dir = 1 - }, -/obj/item/radio/intercom{ - broadcasting = 1; - frequency = 1485; - listening = 0; - name = "Station Intercom (Medbay)"; - pixel_y = -30 - }, -/obj/machinery/light, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/medical/cryo) -"cru" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1; - name = "Connector Port (Air Supply)" - }, -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/medical/cryo) -"crv" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1; - name = "Connector Port (Air Supply)" - }, -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/machinery/light_switch{ - pixel_y = -24 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/medical/cryo) -"crw" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"crx" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"crD" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/aft) -"crE" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Chemistry Lab Maintenance"; - req_access_txt = "5; 33" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/aft) -"crF" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_x = -29 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"crG" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"crH" = ( -/obj/machinery/power/apc/highcap/five_k{ - areastring = "/area/hallway/primary/aft"; - dir = 4; - name = "Aft Hallway APC"; - pixel_x = 24 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"crI" = ( -/obj/structure/plasticflaps/opaque, -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=1"; - dir = 1; - freq = 1400; - location = "Research and Development" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/lab) -"crJ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"crK" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/white/side{ - dir = 5 - }, -/area/science/research) -"crL" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/white, -/area/science/research) -"crM" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/white, -/area/science/research) -"crR" = ( -/turf/closed/wall/r_wall, -/area/science/storage) -"crS" = ( -/obj/structure/sign/warning/biohazard, -/turf/closed/wall/r_wall, -/area/science/storage) -"crT" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock/research{ - name = "Toxins Storage"; - req_access_txt = "8" - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "toxins_blastdoor"; - name = "biohazard containment shutters" - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/science/storage) -"crU" = ( -/obj/structure/closet/emcloset, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/explab) -"crV" = ( -/obj/structure/closet/radiation, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/explab) -"crW" = ( -/obj/structure/closet/l3closet/scientist{ - pixel_x = -2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/explab) -"crX" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/vending/wardrobe/science_wardrobe, -/turf/open/floor/plasteel, -/area/science/explab) -"crZ" = ( -/obj/structure/table, -/obj/structure/bedsheetbin{ - pixel_x = 2 - }, -/obj/item/clothing/mask/muzzle, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"csa" = ( -/obj/structure/table, -/obj/item/restraints/handcuffs/cable/white, -/obj/item/gun/syringe/dart, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"csc" = ( -/obj/machinery/iv_drip, -/obj/item/roller, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"csd" = ( -/obj/structure/rack, -/obj/item/tank/internals/anesthetic, -/obj/item/clothing/mask/gas, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cse" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"csf" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/port/aft) -"csg" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"csh" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/maintenance/port/aft) -"csi" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"csj" = ( -/obj/structure/sign/warning/nosmoking{ - pixel_x = -28 - }, -/obj/machinery/limbgrower, -/turf/open/floor/plasteel/white/side{ - dir = 4 - }, -/area/medical/surgery) -"csk" = ( -/obj/machinery/light, -/obj/machinery/bloodbankgen, -/turf/open/floor/plasteel/white, -/area/medical/surgery) -"csl" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/closet/crate/freezer/blood, -/obj/machinery/door/window/northleft{ - name = "Surgery Supplies"; - red_alert_access = 1; - req_access_txt = "5" - }, -/turf/open/floor/plasteel/white, -/area/medical/surgery) -"csm" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/closet/crate/freezer/surplus_limbs, -/obj/item/reagent_containers/glass/beaker/synthflesh, -/obj/machinery/door/window/northright{ - name = "Surgery Supplies"; - red_alert_access = 1; - req_access_txt = "5" - }, -/obj/machinery/camera{ - c_tag = "Medbay Surgery"; - dir = 1; - network = list("ss13","medbay") - }, -/turf/open/floor/plasteel/white, -/area/medical/surgery) -"csn" = ( -/obj/structure/chair/office/light{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/surgery) -"cso" = ( -/obj/item/bedsheet/medical{ - dir = 1 - }, -/obj/structure/bed{ - dir = 1 - }, -/turf/open/floor/plasteel/white/side{ - dir = 4 - }, -/area/medical/surgery) -"csp" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/surgery) -"csq" = ( -/obj/structure/bed, -/obj/item/bedsheet/medical, -/obj/structure/sign/warning/nosmoking{ - pixel_x = 28 - }, -/turf/open/floor/plasteel/white/side{ - dir = 8 - }, -/area/medical/surgery) -"csr" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Medbay Maintenance"; - req_access_txt = "5" - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"css" = ( -/turf/closed/wall, -/area/medical/cryo) -"cst" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -24 - }, -/obj/machinery/camera{ - c_tag = "Medbay Hallway Central"; - dir = 4; - network = list("ss13","medbay") - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"csu" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"csv" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/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) -"csC" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/effect/landmark/blobstart, -/turf/open/floor/plating, -/area/maintenance/aft) -"csD" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"csE" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/aft) -"csF" = ( -/obj/structure/disposalpipe/sorting/mail{ - dir = 8; - sortType = 11 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"csH" = ( -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 8; - sortType = 23 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/maintenance/aft) -"csI" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance{ - req_one_access_txt = "12;5;9" - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"csJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"csK" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/junction{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"csL" = ( -/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/tile/neutral, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"csM" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock{ - name = "Aft Emergency Storage" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"csN" = ( -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 8; - sortType = 14 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"csO" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"csP" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance{ - req_one_access_txt = "7;47;29;12" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"csQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"csR" = ( -/obj/structure/disposalpipe/sorting/mail{ - dir = 8; - sortType = 12 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"csS" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/maintenance/aft) -"csT" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"csU" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance{ - name = "Research Maintenance"; - req_one_access_txt = "7;47;29" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"csV" = ( -/obj/structure/disposalpipe/junction{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white/side{ - dir = 4 - }, -/area/science/research) -"csW" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 8; - sortType = 13 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"csX" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/white, -/area/science/research) -"ctf" = ( -/obj/machinery/portable_atmospherics/scrubber/huge, -/obj/machinery/light_switch{ - pixel_x = -23 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/storage) -"ctg" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/science/storage) -"cth" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/sign/warning/nosmoking{ - pixel_y = 32 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/science/storage) -"ctj" = ( -/obj/machinery/portable_atmospherics/scrubber/huge, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/storage) -"ctl" = ( -/obj/machinery/camera{ - active_power_usage = 0; - c_tag = "Turbine Vent"; - dir = 4; - network = list("turbine"); - use_power = 0 - }, -/turf/open/space, -/area/space/nearstation) -"ctm" = ( -/obj/structure/grille/broken, -/turf/open/space, -/area/space/nearstation) -"ctn" = ( -/obj/machinery/vending/cigarette, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cto" = ( -/obj/machinery/vending/kink, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"ctq" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"ctr" = ( -/obj/structure/bed{ - dir = 1 - }, -/obj/item/bedsheet/medical{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/patients_rooms/room_a) -"cts" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/machinery/vending/wallmed{ - pixel_y = 28 - }, -/turf/open/floor/plasteel/white, -/area/medical/patients_rooms/room_a) -"ctt" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/machinery/light_switch{ - pixel_y = 25 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/patients_rooms/room_a) -"ctu" = ( -/obj/machinery/door/airlock/medical{ - name = "Patient Room A"; - req_access_txt = "5" - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel/white, -/area/medical/patients_rooms/room_a) -"ctv" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"ctw" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"ctA" = ( -/turf/closed/wall/r_wall, -/area/medical/genetics) -"ctB" = ( -/turf/closed/wall, -/area/medical/genetics) -"ctC" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Genetics Maintenance"; - req_access_txt = "9" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/aft) -"ctD" = ( -/obj/structure/sign/directions/evac, -/turf/closed/wall, -/area/medical/paramedic) -"ctE" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"ctF" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"ctG" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"ctH" = ( -/obj/structure/sign/directions/evac, -/turf/closed/wall, -/area/maintenance/aft) -"ctJ" = ( -/obj/item/storage/toolbox/emergency, -/obj/structure/closet/firecloset, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/aft) -"ctK" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/aft) -"ctL" = ( -/turf/closed/wall/r_wall, -/area/science/misc_lab/range) -"ctM" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Research Testing Range Maintenance"; - req_one_access_txt = "7;47;29" - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"ctN" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/white/side{ - dir = 6 - }, -/area/science/research) -"ctO" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/white, -/area/science/research) -"ctP" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/white, -/area/science/research) -"ctW" = ( -/obj/machinery/portable_atmospherics/canister/carbon_dioxide, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -22 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/storage) -"ctX" = ( -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/storage) -"ctY" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/chair/stool, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/storage) -"ctZ" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/storage) -"cua" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/storage) -"cub" = ( -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cuc" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cud" = ( -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/disposal/bin, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"cuf" = ( -/obj/structure/closet, -/obj/item/extinguisher, -/obj/effect/decal/cleanable/cobweb, -/obj/item/flashlight, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cug" = ( -/obj/structure/closet, -/obj/item/reagent_containers/glass/beaker{ - pixel_x = 8; - pixel_y = 2 - }, -/obj/item/reagent_containers/dropper, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cuh" = ( -/obj/structure/closet/crate, -/obj/item/stack/cable_coil, -/obj/item/grenade/chem_grenade, -/obj/item/flashlight, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cui" = ( -/obj/structure/table/reinforced, -/obj/structure/bedsheetbin{ - pixel_x = 2 - }, -/obj/item/clothing/suit/straight_jacket, -/obj/item/clothing/ears/earmuffs, -/obj/item/clothing/glasses/sunglasses/blindfold, -/obj/item/clothing/mask/muzzle, -/obj/item/clothing/glasses/eyepatch, -/obj/item/gun/syringe/dart, -/obj/item/storage/belt/medical{ - pixel_y = 2 - }, -/turf/open/floor/plasteel/white/side{ - dir = 1 - }, -/area/medical/surgery) -"cuj" = ( -/obj/structure/sign/poster/official/medical_green_cross{ - pixel_y = -32 - }, -/obj/structure/bed{ - dir = 1 - }, -/obj/item/bedsheet/medical{ - dir = 1 - }, -/obj/machinery/light/small, -/turf/open/floor/plasteel/white/corner{ - dir = 4 - }, -/area/medical/surgery) -"cul" = ( -/obj/structure/chair/office/light{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/effect/landmark/start/medical_doctor, -/turf/open/floor/plasteel/white, -/area/medical/patients_rooms/room_a) -"cum" = ( -/obj/structure/closet/secure_closet/personal/patient, -/obj/machinery/button/door{ - id = "isola"; - name = "Privacy Shutters"; - pixel_y = -25 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/patients_rooms/room_a) -"cun" = ( -/obj/effect/spawner/structure/window, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/poddoor/preopen{ - id = "isola"; - name = "privacy shutters" - }, -/turf/open/floor/plating, -/area/medical/patients_rooms/room_a) -"cuo" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cup" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cuq" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cur" = ( -/obj/item/storage/box/rxglasses{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/box/bodybags, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_x = -29 - }, -/obj/structure/table/glass, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/medical/genetics) -"cus" = ( -/obj/item/clothing/gloves/color/latex, -/obj/item/clothing/gloves/color/latex, -/obj/item/storage/box/disks{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/structure/table/glass, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/medical/genetics) -"cut" = ( -/obj/machinery/requests_console{ - department = "Genetics"; - name = "Genetics Requests Console"; - pixel_y = 30 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/item/storage/box/monkeycubes, -/obj/item/radio/headset/headset_medsci, -/obj/item/flashlight/pen{ - pixel_x = 4; - pixel_y = 3 - }, -/obj/item/flashlight/pen{ - pixel_x = 4; - pixel_y = 3 - }, -/obj/structure/noticeboard{ - pixel_x = -32; - pixel_y = 32 - }, -/obj/structure/table/glass, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/medical/genetics) -"cuv" = ( -/obj/item/reagent_containers/dropper, -/obj/item/reagent_containers/glass/beaker{ - pixel_x = 8; - pixel_y = 2 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 24 - }, -/obj/structure/sign/warning/nosmoking{ - pixel_y = 32 - }, -/obj/structure/table/glass, -/obj/effect/turf_decal/tile/neutral{ - 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/reagent_containers/spray/cleaner{ - pixel_x = -5 - }, -/turf/open/floor/plasteel/dark, -/area/medical/genetics) -"cuw" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/computer/crew, -/obj/machinery/vending/wallmed{ - pixel_x = -25 - }, -/turf/open/floor/plasteel, -/area/medical/paramedic) -"cux" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/medical/paramedic) -"cuy" = ( -/obj/structure/table/glass, -/obj/item/flashlight/lamp{ - pixel_x = -1; - pixel_y = 11 - }, -/obj/effect/spawner/lootdrop/cig_packs{ - pixel_x = 5; - pixel_y = -4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel, -/area/medical/paramedic) -"cuA" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cuB" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/maintenance/aft) -"cuC" = ( -/obj/machinery/portable_atmospherics/canister/air, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/obj/effect/spawner/lootdrop/maintenance, -/obj/item/wrench, -/turf/open/floor/plating, -/area/maintenance/aft) -"cuD" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/item/storage/box/lights/mixed, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/aft) -"cuE" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/aft) -"cuF" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/science/misc_lab/range) -"cuG" = ( -/turf/open/floor/engine{ - dir = 9; - icon_state = "floor" - }, -/area/science/misc_lab/range) -"cuH" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/science/misc_lab/range) -"cuI" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/white/side{ - dir = 5 - }, -/area/science/research) -"cuJ" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"cuK" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel/white, -/area/science/research) -"cuS" = ( -/obj/machinery/portable_atmospherics/canister/carbon_dioxide, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/storage) -"cuT" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/storage) -"cuU" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/storage) -"cuV" = ( -/obj/machinery/portable_atmospherics/canister/nitrogen, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/storage) -"cuW" = ( -/obj/machinery/portable_atmospherics/canister/nitrogen, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Toxins Storage"; - dir = 8; - network = list("ss13","rd") - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/storage) -"cuY" = ( -/obj/structure/rack, -/obj/item/extinguisher, -/obj/item/storage/belt/utility, -/obj/item/clothing/mask/gas, -/obj/item/storage/box/lights/mixed, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cuZ" = ( -/turf/closed/wall/r_wall, -/area/science/circuit) -"cvk" = ( -/obj/structure/closet/crate, -/obj/item/crowbar/red, -/obj/item/pen, -/obj/item/flashlight/pen{ - pixel_x = 4; - pixel_y = 3 - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cvl" = ( -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cvm" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cvn" = ( -/obj/structure/sign/poster/contraband/random{ - pixel_x = 32 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cvo" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/medical/patients_rooms/room_a) -"cvp" = ( -/turf/closed/wall, -/area/medical/patients_rooms/room_a) -"cvq" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/sign/departments/examroom{ - pixel_x = -32 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cvr" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cvs" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cvt" = ( -/turf/closed/wall, -/area/medical/genetics/cloning) -"cvu" = ( -/obj/machinery/shower{ - dir = 4 - }, -/obj/machinery/door/window/southleft{ - name = "Cloning Shower" - }, -/obj/structure/mirror{ - 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/medical/genetics/cloning) -"cvv" = ( -/obj/machinery/door/window/southleft{ - base_state = "right"; - icon_state = "right"; - name = "Cloning Shower" - }, -/obj/structure/sink/kitchen{ - desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; - name = "sink"; - 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/medical/genetics/cloning) -"cvw" = ( -/obj/machinery/clonepod{ - pixel_y = 2 - }, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_x = 29 - }, -/obj/structure/window/reinforced, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/medical/genetics/cloning) -"cvx" = ( -/obj/machinery/computer/scan_consolenew{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Genetics Lab"; - dir = 4; - network = list("ss13","medbay") - }, -/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) -"cvy" = ( -/obj/structure/chair/office/light{ - dir = 8 - }, -/obj/effect/landmark/start/geneticist, -/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/genetics) -"cvz" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/genetics) -"cvA" = ( -/obj/structure/chair/office/light{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/landmark/start/geneticist, -/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/genetics) -"cvB" = ( -/obj/machinery/computer/scan_consolenew{ - 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/white, -/area/medical/genetics) -"cvD" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/item/cigbutt{ - pixel_x = -15; - pixel_y = 14 - }, -/obj/effect/landmark/start/paramedic, -/turf/open/floor/plasteel, -/area/medical/paramedic) -"cvE" = ( -/obj/structure/table/glass, -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/pen/blue{ - pixel_x = 5; - pixel_y = 3 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/medical/paramedic) -"cvF" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/medical/paramedic) -"cvG" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cvH" = ( -/turf/closed/wall, -/area/science/robotics/mechbay) -"cvI" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Mech Bay Maintenance"; - req_access_txt = "29" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/aft) -"cvJ" = ( -/obj/structure/sign/warning/nosmoking{ - pixel_x = -29 - }, -/turf/open/floor/engine{ - dir = 9; - icon_state = "floor" - }, -/area/science/misc_lab/range) -"cvK" = ( -/obj/machinery/magnetic_module, -/obj/effect/landmark/blobstart, -/obj/structure/target_stake, -/obj/effect/turf_decal/bot{ - dir = 9 - }, -/turf/open/floor/plasteel{ - dir = 9 - }, -/area/science/misc_lab/range) -"cvL" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "researchrangeshutters" - }, -/turf/open/floor/plating, -/area/science/misc_lab/range) -"cvM" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/white/side{ - dir = 4 - }, -/area/science/research) -"cvN" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"cvO" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 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/science/research) -"cvV" = ( -/obj/machinery/portable_atmospherics/canister/nitrous_oxide, -/obj/structure/extinguisher_cabinet{ - pixel_x = -27 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/storage) -"cvW" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/landmark/blobstart, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/plasteel, -/area/science/storage) -"cvX" = ( -/obj/machinery/portable_atmospherics/canister/toxins, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/storage) -"cvY" = ( -/obj/machinery/portable_atmospherics/canister/toxins, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_x = 29 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/storage) -"cwa" = ( -/obj/structure/reagent_dispensers/watertank/high, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cwb" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/science/circuit) -"cwc" = ( -/obj/machinery/door/airlock/external{ - name = "Auxiliary Escape Airlock" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/turf/open/floor/plating, -/area/maintenance/aft) -"cwd" = ( -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"cwf" = ( -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/space/nearstation) -"cwg" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/external{ - req_access_txt = "13" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cwh" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cwi" = ( -/obj/machinery/door/airlock/external{ - req_access_txt = "13" - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cwj" = ( -/obj/structure/closet/crate, -/obj/item/coin/silver, -/obj/item/reagent_containers/spray/weedspray, -/obj/item/paper, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cwm" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cwn" = ( -/turf/open/floor/plasteel/white/side{ - dir = 1 - }, -/area/medical/surgery) -"cwo" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/obj/machinery/light_switch{ - pixel_y = 25 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/chem_dispenser/apothecary, -/turf/open/floor/plasteel/white, -/area/medical/medbay/aft) -"cwp" = ( -/obj/structure/chair/office/light{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/aft) -"cwq" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/chem_heater{ - pixel_x = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/aft) -"cwr" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/medical/medbay/aft) -"cws" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/aft) -"cwt" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/aft) -"cwu" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/aft) -"cwv" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/machinery/light_switch{ - pixel_x = -23 - }, -/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/genetics/cloning) -"cww" = ( -/obj/effect/landmark/start/geneticist, -/obj/machinery/holopad, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/genetics/cloning) -"cwx" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/obj/machinery/computer/cloning{ - dir = 8 - }, -/obj/machinery/light{ - dir = 4 - }, -/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/genetics/cloning) -"cwy" = ( -/obj/machinery/dna_scannernew, -/obj/machinery/light_switch{ - 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/white, -/area/medical/genetics) -"cwz" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/genetics) -"cwA" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel/white, -/area/medical/genetics) -"cwB" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/genetics) -"cwC" = ( -/obj/machinery/dna_scannernew, -/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) -"cwD" = ( -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_x = -29 - }, -/obj/machinery/camera{ - c_tag = "Paramedics Office"; - dir = 4; - network = list("ss13","medbay") - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/medical/paramedic) -"cwE" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/medical/paramedic) -"cwF" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -24 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cwG" = ( -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/sign/warning/nosmoking{ - pixel_x = -28 - }, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"cwH" = ( -/obj/machinery/mech_bay_recharge_port, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/science/robotics/mechbay) -"cwI" = ( -/obj/structure/sign/warning/electricshock{ - pixel_y = 31 - }, -/turf/open/floor/mech_bay_recharge_floor, -/area/science/robotics/mechbay) -"cwJ" = ( -/obj/machinery/computer/mech_bay_power_console, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = 20 - }, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/turf/open/floor/circuit/green, -/area/science/robotics/mechbay) -"cwK" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/science/misc_lab/range) -"cwL" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/science/misc_lab/range) -"cwM" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/camera{ - c_tag = "Research Division Hallway - Mech Bay"; - dir = 4; - network = list("ss13","rd") - }, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/turf/open/floor/plasteel/white/side{ - dir = 6 - }, -/area/science/research) -"cwN" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"cwO" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 24 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"cwV" = ( -/obj/machinery/portable_atmospherics/canister/nitrous_oxide, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/storage) -"cwW" = ( -/obj/item/cigbutt, -/obj/machinery/light_switch{ - pixel_y = -23 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/science/storage) -"cwX" = ( -/obj/effect/landmark/start/scientist, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/science/storage) -"cwY" = ( -/obj/machinery/portable_atmospherics/canister/toxins, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/machinery/light/small, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/storage) -"cwZ" = ( -/turf/open/floor/plasteel, -/area/science/circuit) -"cxb" = ( -/obj/structure/rack, -/obj/item/tank/internals/air, -/obj/item/wrench, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, -/area/maintenance/port/aft) -"cxc" = ( -/obj/machinery/newscaster{ - pixel_y = -32 - }, -/obj/machinery/camera{ - c_tag = "Medbay Recovery Room"; - dir = 1; - network = list("ss13","medbay") - }, -/obj/structure/bed, -/obj/item/bedsheet/medical, -/obj/structure/sign/poster/official/love_ian{ - pixel_x = 32 - }, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/medical/surgery) -"cxd" = ( -/obj/structure/rack, -/obj/item/clothing/glasses/sunglasses, -/obj/item/flashlight/pen, -/obj/effect/spawner/lootdrop/maintenance, -/obj/effect/landmark/blobstart, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cxe" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/chem_master, -/turf/open/floor/plasteel/white, -/area/medical/medbay/aft) -"cxf" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/aft) -"cxg" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/aft) -"cxh" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/airlock/medical/glass{ - name = "Apothecary"; - req_access_txt = "5" - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/aft) -"cxi" = ( -/obj/machinery/atmospherics/pipe/manifold/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/aft) -"cxj" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/aft) -"cxk" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel/white, -/area/medical/medbay/aft) -"cxl" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/medical/genetics/cloning) -"cxm" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/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/genetics/cloning) -"cxn" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/genetics/cloning) -"cxo" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/obj/machinery/dna_scannernew, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/genetics/cloning) -"cxp" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/medical/genetics) -"cxq" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/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/genetics) -"cxr" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/genetics) -"cxs" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/white, -/area/medical/genetics) -"cxt" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/genetics) -"cxu" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 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/white, -/area/medical/genetics) -"cxv" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 24 - }, -/obj/effect/landmark/start/paramedic, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel, -/area/medical/paramedic) -"cxw" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/suit_storage_unit/paramedic, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel, -/area/medical/paramedic) -"cxx" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/light, -/obj/structure/closet/secure_closet/paramedic, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/medical/paramedic) -"cxy" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/medical/paramedic) -"cxz" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=10.1-Central-from-Aft"; - location = "10-Aft-To-Central" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cxA" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cxB" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=9.1-Escape-1"; - location = "8.1-Aft-to-Escape" - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cxC" = ( -/obj/machinery/door/poddoor/shutters{ - id = "Skynet_launch"; - name = "Mech Bay" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"cxD" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"cxE" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/open/floor/circuit/green, -/area/science/robotics/mechbay) -"cxF" = ( -/turf/open/floor/circuit/green, -/area/science/robotics/mechbay) -"cxG" = ( -/obj/machinery/camera{ - c_tag = "Mech Bay"; - dir = 8; - network = list("ss13","rd") - }, -/turf/open/floor/circuit/green, -/area/science/robotics/mechbay) -"cxH" = ( -/turf/open/floor/plating, -/area/science/misc_lab/range) -"cxI" = ( -/obj/machinery/camera{ - c_tag = "Research Testing Range"; - dir = 8; - network = list("ss13","rd"); - pixel_y = -22 - }, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/turf/open/floor/plating, -/area/science/misc_lab/range) -"cxJ" = ( -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_x = 29 - }, -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/white, -/area/science/research) -"cxK" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research{ - name = "Toxins Storage"; - req_access_txt = "8" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/science/storage) -"cxL" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/aft) -"cxM" = ( -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cxN" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/circuit) -"cxO" = ( -/turf/open/floor/plasteel/white, -/area/science/circuit) -"cxP" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"cxQ" = ( -/obj/machinery/computer/slot_machine{ - pixel_y = 2 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/port/aft) -"cxR" = ( -/obj/item/trash/chips, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cxS" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/structure/reagent_dispensers/fueltank, -/obj/effect/decal/cleanable/oil/streak, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cxT" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cxU" = ( -/turf/closed/wall, -/area/medical/medbay/aft) -"cxV" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/extinguisher_cabinet{ - pixel_x = -27 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/aft) -"cxW" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/aft) -"cxX" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/aft) -"cxY" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/medical/glass{ - id_tag = "CloningDoor"; - name = "Cloning Lab"; - req_access_txt = "5; 68" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - 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/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/genetics/cloning) -"cxZ" = ( -/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/white, -/area/medical/genetics/cloning) -"cya" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/white, -/area/medical/genetics/cloning) -"cyb" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/genetics/cloning) -"cyc" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research/glass{ - name = "Genetics Lab"; - req_access_txt = "5; 9; 68" - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - 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/white, -/area/medical/genetics) -"cyd" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/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/genetics) -"cye" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/genetics) -"cyf" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/effect/landmark/start/geneticist, -/turf/open/floor/plasteel/white, -/area/medical/genetics) -"cyg" = ( -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/white, -/area/medical/genetics) -"cyh" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/structure/mirror{ - pixel_x = 28 - }, -/turf/open/floor/plasteel/white, -/area/medical/genetics) -"cyi" = ( -/obj/machinery/door/airlock/medical/glass{ - id_tag = "MedbayFoyer"; - name = "Medbay"; - req_access_txt = "5" - }, -/obj/machinery/door/firedoor, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/medical/paramedic) -"cyk" = ( -/obj/structure/disposalpipe/segment, -/turf/closed/wall, -/area/medical/paramedic) -"cyl" = ( -/turf/closed/wall, -/area/medical/paramedic) -"cym" = ( -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/door/airlock/research{ - id_tag = "AuxGenetics"; - name = "Genetics Access"; - req_access_txt = "9" - }, -/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/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/medical/genetics) -"cyn" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/light{ - dir = 8 - }, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_x = -26 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cyo" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cyp" = ( -/obj/machinery/door/poddoor/shutters{ - id = "Skynet_launch"; - name = "Mech Bay" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"cyq" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"cyr" = ( -/turf/open/floor/circuit, -/area/science/robotics/mechbay) -"cys" = ( -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/obj/effect/landmark/start/roboticist, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/circuit, -/area/science/robotics/mechbay) -"cyt" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/science/misc_lab/range) -"cyu" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/science/misc_lab/range) -"cyv" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/extinguisher_cabinet{ - pixel_x = -27 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"cyw" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"cyx" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"cyy" = ( -/obj/structure/sign/warning/biohazard, -/turf/closed/wall, -/area/science/mixing) -"cyz" = ( -/obj/machinery/light_switch{ - pixel_y = 28 - }, -/obj/effect/turf_decal/stripes/line, -/obj/structure/closet/bombcloset, -/turf/open/floor/plasteel, -/area/science/mixing) -"cyA" = ( -/obj/structure/closet/wardrobe/science_white, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/science/mixing) -"cyB" = ( -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/obj/machinery/atmospherics/components/unary/thermomachine/freezer, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/science/mixing) -"cyC" = ( -/obj/item/radio/intercom{ - pixel_y = 25 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/science/mixing) -"cyD" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/science/mixing) -"cyE" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Toxins - Lab"; - network = list("ss13","rd") - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/science/mixing) -"cyF" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/airalarm/unlocked{ - pixel_y = 24 - }, -/obj/machinery/portable_atmospherics/pump, -/turf/open/floor/plasteel, -/area/science/mixing) -"cyG" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/obj/structure/sign/warning/nosmoking{ - pixel_y = 32 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/science/mixing) -"cyH" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/canister, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"cyI" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/mixing) -"cyJ" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, -/obj/machinery/light_switch{ - pixel_y = 28 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"cyK" = ( -/turf/closed/wall/r_wall, -/area/science/mixing) -"cyM" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/science/circuit) -"cyN" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -24 - }, -/obj/machinery/airalarm{ - pixel_y = 24 - }, -/obj/item/paper_bin{ - pixel_x = -2; - pixel_y = 4 - }, -/obj/structure/table/glass, -/turf/open/floor/plasteel/white/side, -/area/medical/medbay/aft) -"cyO" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/obj/machinery/status_display/evac{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/white/side, -/area/medical/medbay/aft) -"cyP" = ( -/obj/machinery/vending/coffee, -/obj/structure/sign/map/left{ - desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; - icon_state = "map-left-MS"; - pixel_y = 32 - }, -/turf/open/floor/plasteel/white/side, -/area/medical/medbay/aft) -"cyQ" = ( -/obj/structure/sign/map/right{ - desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; - icon_state = "map-right-MS"; - pixel_y = 32 - }, -/obj/machinery/vending/cola/random, -/turf/open/floor/plasteel/white/side, -/area/medical/medbay/aft) -"cyR" = ( -/obj/machinery/vending/cigarette, -/obj/structure/noticeboard{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/white/side, -/area/medical/medbay/aft) -"cyT" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/aft) -"cyU" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/sign/warning/nosmoking{ - pixel_x = 28 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/aft) -"cyV" = ( -/obj/machinery/button/door{ - desc = "A remote control switch for the cloning door."; - id = "CloningDoor"; - name = "Cloning Exit Button"; - normaldoorcontrol = 1; - pixel_x = -23; - pixel_y = 8 - }, -/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/white, -/area/medical/genetics/cloning) -"cyW" = ( -/obj/effect/landmark/start/geneticist, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/genetics/cloning) -"cyX" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/machinery/power/apc/unlocked{ - areastring = "/area/medical/genetics/cloning"; - dir = 4; - name = "Cloning Lab APC"; - pixel_x = 24 - }, -/obj/structure/cable/yellow, -/obj/machinery/camera{ - c_tag = "Genetics Cloning Lab"; - dir = 8; - network = list("ss13","medbay") - }, -/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/cloning) -"cyY" = ( -/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/white, -/area/medical/genetics) -"cyZ" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/genetics) -"cza" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/genetics) -"czb" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/obj/machinery/camera{ - c_tag = "Genetics Lab"; - dir = 6; - network = list("ss13","medbay") - }, -/turf/open/floor/plasteel, -/area/medical/genetics) -"czc" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/medical/genetics) -"czd" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/medical/genetics) -"cze" = ( -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/airlock/research{ - id_tag = "AuxGenetics"; - name = "Genetics Access"; - req_access_txt = "9" - }, -/turf/open/floor/plasteel, -/area/medical/genetics) -"czf" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"czg" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"czh" = ( -/obj/machinery/button/door{ - id = "Skynet_launch"; - name = "Mech Bay Door Control"; - pixel_x = 26; - pixel_y = 6; - req_one_access_txt = "29" - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"czi" = ( -/obj/machinery/button/door{ - id = "Skynet_launch"; - name = "Mech Bay Door Control"; - pixel_x = -26; - pixel_y = 6 - }, -/obj/machinery/light_switch{ - pixel_x = -23; - pixel_y = -2 - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"czj" = ( -/turf/open/floor/mech_bay_recharge_floor, -/area/science/robotics/mechbay) -"czk" = ( -/obj/machinery/computer/mech_bay_power_console{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/turf/open/floor/circuit, -/area/science/robotics/mechbay) -"czl" = ( -/obj/structure/table/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -27 - }, -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/item/paper/guides/jobs/security/range{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/misc_lab/range) -"czm" = ( -/obj/machinery/door/window/westleft{ - base_state = "right"; - dir = 1; - icon_state = "right"; - name = "door" - }, -/turf/open/floor/engine{ - dir = 9; - icon_state = "floor" - }, -/area/science/misc_lab/range) -"czn" = ( -/obj/structure/table/reinforced, -/obj/machinery/magnetic_controller{ - autolink = 1; - pixel_y = 3 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/item/clothing/ears/earmuffs, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/misc_lab/range) -"czo" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"czp" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"czq" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/plasteel/white, -/area/science/research) -"czr" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "toxins_blastdoor"; - name = "biohazard containment door" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/science/mixing) -"czs" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"czt" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"czv" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"czw" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible, -/obj/machinery/meter, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"czx" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 9 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"czy" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 5 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"czz" = ( -/obj/machinery/atmospherics/components/trinary/filter{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"czA" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"czB" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 2 - }, -/obj/machinery/portable_atmospherics/pump, -/turf/open/floor/plasteel, -/area/science/mixing) -"czC" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock/maintenance{ - req_one_access_txt = "12;47" - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"czD" = ( -/turf/closed/wall, -/area/science/mixing) -"czE" = ( -/obj/structure/table/reinforced, -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/machinery/door/firedoor, -/obj/item/reagent_containers/glass/bottle/epinephrine, -/obj/item/reagent_containers/syringe, -/obj/item/pen, -/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/white, -/area/medical/medbay/central) -"czF" = ( -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/turf/open/floor/plasteel{ - dir = 1 - }, -/area/science/mixing) -"czG" = ( -/obj/item/stack/rods/fifty, -/obj/item/stack/sheet/glass/fifty, -/obj/item/stack/sheet/metal/fifty, -/obj/item/target, -/obj/item/target/syndicate, -/obj/item/target/alien, -/obj/item/target/clown, -/obj/structure/closet/crate/secure{ - desc = "A secure crate containing various materials for building a customised test-site."; - name = "Test Site Materials Crate"; - req_access_txt = "8" - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/turf/open/floor/plasteel{ - dir = 1 - }, -/area/science/mixing) -"czH" = ( -/obj/machinery/airalarm/all_access{ - dir = 8; - pixel_x = 24 - }, -/obj/machinery/atmospherics/pipe/simple/general/visible, -/obj/structure/chair/stool{ - pixel_y = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"czI" = ( -/obj/structure/sign/warning/securearea{ - desc = "A warning sign which reads 'BOMB RANGE"; - name = "BOMB RANGE" - }, -/turf/closed/wall, -/area/science/mixing) -"czJ" = ( -/turf/closed/wall, -/area/science/test_area) -"czK" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/science/test_area) -"czN" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Medbay Maintenance"; - req_access_txt = "5" - }, -/turf/open/floor/plating, -/area/medical/medbay/aft) -"czO" = ( -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/medical/medbay/aft) -"czP" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/medical/medbay/aft) -"czQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/medical/medbay/aft) -"czR" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/medical/medbay/aft) -"czS" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/item/cigbutt, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/medical/medbay/aft) -"czT" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/door/airlock/medical{ - name = "Medbay Break Room"; - req_access_txt = "5" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/medical/medbay/aft) -"czU" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/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/white, -/area/medical/medbay/aft) -"czV" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/aft) -"czX" = ( -/obj/item/book/manual/wiki/medical_cloning{ - pixel_y = 6 - }, -/obj/item/paper, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -24 - }, -/obj/structure/table/glass, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/medical/genetics/cloning) -"czY" = ( -/obj/item/storage/box/rxglasses{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/box/bodybags, -/obj/item/pen, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/table/glass, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/medical/genetics/cloning) -"czZ" = ( -/obj/structure/closet/secure_closet/personal/patient, -/obj/machinery/airalarm{ - dir = 8; - 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/medical/genetics/cloning) -"cAa" = ( -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/obj/machinery/vending/wardrobe/gene_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/medical/genetics) -"cAb" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/bed/roller, -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/mob/living/carbon/monkey, -/turf/open/floor/plasteel/freezer, -/area/medical/genetics) -"cAc" = ( -/obj/structure/bed/roller, -/obj/machinery/door/window/westleft{ - dir = 1; - name = "Monkey Pen"; - pixel_y = 2; - req_access_txt = "9" - }, -/turf/open/floor/plasteel/freezer, -/area/medical/genetics) -"cAd" = ( -/obj/machinery/light, -/obj/machinery/door/window/westleft{ - base_state = "right"; - dir = 1; - icon_state = "right"; - name = "Monkey Pen"; - pixel_y = 2; - req_access_txt = "9" - }, -/obj/structure/bed/roller, -/mob/living/carbon/monkey, -/turf/open/floor/plasteel/freezer, -/area/medical/genetics) -"cAe" = ( -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/bed/roller, -/mob/living/carbon/monkey, -/turf/open/floor/plasteel/freezer, -/area/medical/genetics) -"cAf" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -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/medical/genetics) -"cAg" = ( -/obj/structure/closet/secure_closet/personal/patient, -/obj/effect/turf_decal/tile/neutral{ - 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/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/plasteel/dark, -/area/medical/genetics) -"cAh" = ( -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -22 - }, -/obj/machinery/camera{ - c_tag = "Aft Primary Hallway - Middle"; - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cAi" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cAj" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cAk" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research{ - name = "Mech Bay"; - req_access_txt = "29" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"cAl" = ( -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"cAm" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"cAn" = ( -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"cAp" = ( -/obj/structure/rack, -/obj/item/target, -/obj/item/target, -/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/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/light_switch{ - pixel_x = -25 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/science/misc_lab/range) -"cAq" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/misc_lab/range) -"cAr" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/science/misc_lab/range) -"cAs" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research{ - name = "Research Testing Range"; - req_one_access_txt = "7;47;29" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/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, -/area/science/misc_lab/range) -"cAt" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"cAu" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"cAv" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/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/white, -/area/science/research) -"cAw" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/research{ - name = "Toxins Lab"; - req_access_txt = "8" - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "toxins_blastdoor"; - name = "biohazard containment shutters" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/mixing) -"cAx" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"cAy" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"cAz" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"cAA" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"cAB" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"cAC" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"cAD" = ( -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"cAE" = ( -/obj/machinery/holopad, -/obj/effect/landmark/start/scientist, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"cAF" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"cAG" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, -/obj/machinery/camera{ - c_tag = "Toxins - Mixing Area"; - dir = 8; - network = list("ss13","rd") - }, -/obj/machinery/portable_atmospherics/scrubber, -/turf/open/floor/plasteel, -/area/science/mixing) -"cAH" = ( -/obj/structure/sign/warning/biohazard, -/turf/closed/wall/r_wall, -/area/science/mixing) -"cAI" = ( -/obj/effect/landmark/blobstart, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/structure/chair/comfy{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/misc_lab) -"cAJ" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"cAK" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/misc_lab) -"cAL" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/sign/warning/biohazard, -/turf/closed/wall, -/area/science/mixing) -"cAM" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/machinery/door/airlock/research{ - id_tag = "ResearchExt"; - name = "Research Division"; - req_one_access_txt = "47" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/research) -"cAN" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"cAO" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"cAP" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/science/mixing) -"cAQ" = ( -/obj/structure/window/reinforced, -/obj/item/target, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/science/test_area) -"cAS" = ( -/obj/structure/chair/stool, -/obj/item/radio/intercom{ - broadcasting = 1; - frequency = 1485; - listening = 0; - name = "Station Intercom (Medbay)"; - pixel_x = -30 - }, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/medical/medbay/aft) -"cAT" = ( -/obj/structure/chair/stool, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/medical/medbay/aft) -"cAU" = ( -/obj/item/cigbutt, -/obj/machinery/holopad, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/medical/medbay/aft) -"cAV" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/medical/medbay/aft) -"cAW" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/medical/medbay/aft) -"cAX" = ( -/obj/effect/spawner/structure/window/reinforced/tinted, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/medical/medbay/aft) -"cAY" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/aft) -"cAZ" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/aft) -"cBa" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment, -/obj/item/radio/intercom{ - broadcasting = 1; - frequency = 1485; - listening = 0; - name = "Station Intercom (Medbay)"; - pixel_x = 30 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/aft) -"cBb" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/medical/genetics/cloning) -"cBc" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/grunge{ - name = "Genetics"; - req_access_txt = "9" - }, -/turf/open/floor/plasteel/dark, -/area/medical/genetics) -"cBd" = ( -/obj/structure/sign/directions/evac, -/turf/closed/wall, -/area/hallway/primary/aft) -"cBe" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cBf" = ( -/obj/structure/sign/directions/evac, -/turf/closed/wall, -/area/science/robotics/mechbay) -"cBg" = ( -/obj/machinery/recharge_station, -/obj/effect/turf_decal/delivery, -/obj/effect/landmark/start/cyborg, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"cBh" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"cBi" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 28 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"cBj" = ( -/obj/structure/table, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -25 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/obj/item/clothing/glasses/science, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/science/misc_lab/range) -"cBk" = ( -/obj/structure/table, -/obj/machinery/recharger{ - pixel_y = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/button/door{ - id = "researchrangeshutters"; - name = "Blast Door Control"; - pixel_y = -24 - }, -/obj/machinery/light, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/science/misc_lab/range) -"cBl" = ( -/obj/item/gun/energy/laser/practice, -/obj/machinery/power/apc{ - areastring = "/area/science/misc_lab/range"; - name = "Research Firing Range APC"; - pixel_y = -28 - }, -/obj/structure/table, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/science/misc_lab/range) -"cBm" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "researchrangeshutters" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/science/misc_lab/range) -"cBn" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"cBo" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"cBp" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"cBq" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "toxins_blastdoor"; - name = "biohazard containment door" - }, -/turf/open/floor/plating, -/area/science/mixing) -"cBr" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cBs" = ( -/turf/open/floor/plasteel/white, -/area/science/mixing) -"cBt" = ( -/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, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"cBu" = ( -/obj/structure/chair/stool, -/obj/effect/landmark/start/scientist, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"cBv" = ( -/obj/structure/table/reinforced, -/obj/item/wrench, -/obj/item/screwdriver{ - pixel_y = 10 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/item/analyzer, -/turf/open/floor/plasteel, -/area/science/mixing) -"cBw" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"cBx" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"cBy" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"cBz" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"cBA" = ( -/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"cBB" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/mixing) -"cBC" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/door/airlock/research{ - name = "Toxins Launch Room Access"; - req_access_txt = "8" - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "toxins_blastdoor"; - name = "biohazard containment shutters" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/mixing) -"cBD" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/misc_lab) -"cBE" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/misc_lab) -"cBF" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/sign/poster/official/random{ - pixel_x = 32 - }, -/turf/open/floor/plasteel, -/area/science/misc_lab) -"cBG" = ( -/obj/machinery/door/airlock/research{ - name = "Toxins Launch Room"; - req_access_txt = "8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/mixing) -"cBH" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"cBI" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/science/mixing) -"cBJ" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/science/mixing) -"cBK" = ( -/obj/machinery/light/small, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/science/mixing) -"cBL" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/machinery/button/massdriver{ - id = "toxinsdriver"; - pixel_x = 24; - pixel_y = -24 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"cBM" = ( -/obj/structure/sign/warning/securearea{ - desc = "A warning sign which reads 'BOMB RANGE"; - name = "BOMB RANGE" - }, -/turf/closed/wall, -/area/science/test_area) -"cBN" = ( -/obj/structure/chair, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plating/airless, -/area/science/test_area) -"cBO" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating/airless, -/area/science/test_area) -"cBP" = ( -/obj/structure/chair, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plating/airless, -/area/science/test_area) -"cBR" = ( -/turf/closed/wall/r_wall, -/area/medical/virology) -"cBS" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/medical/virology) -"cBT" = ( -/obj/item/cigbutt, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cBU" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/newscaster{ - pixel_y = -30 - }, -/obj/item/storage/box/donkpockets{ - pixel_x = 3; - pixel_y = 5 - }, -/obj/structure/table/glass, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/medical/medbay/aft) -"cBV" = ( -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_y = -30 - }, -/obj/item/reagent_containers/spray/cleaner, -/obj/structure/table/glass, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/medical/medbay/aft) -"cBW" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/light/small, -/obj/structure/extinguisher_cabinet{ - pixel_y = -29 - }, -/obj/machinery/camera{ - c_tag = "Medbay Break Room"; - dir = 1; - network = list("ss13","medbay") - }, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/medical/medbay/aft) -"cBX" = ( -/obj/machinery/microwave{ - pixel_x = -3; - pixel_y = 6 - }, -/obj/structure/table/glass, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/medical/medbay/aft) -"cBY" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/white, -/area/medical/medbay/aft) -"cBZ" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/white, -/area/medical/medbay/aft) -"cCa" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/white/side{ - dir = 9 - }, -/area/medical/medbay/aft) -"cCb" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -24 - }, -/obj/structure/closet/secure_closet/personal/patient, -/turf/open/floor/plasteel/white/corner, -/area/medical/medbay/aft) -"cCc" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/closet/secure_closet/personal/patient, -/turf/open/floor/plasteel/white/side, -/area/medical/medbay/aft) -"cCd" = ( -/obj/structure/closet/secure_closet/personal/patient, -/turf/open/floor/plasteel/white/corner{ - dir = 8 - }, -/area/medical/medbay/aft) -"cCe" = ( -/turf/closed/wall, -/area/medical/morgue) -"cCf" = ( -/obj/structure/bodycontainer/morgue, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"cCg" = ( -/obj/effect/landmark/blobstart, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"cCi" = ( -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"cCj" = ( -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"cCk" = ( -/obj/machinery/airalarm{ - pixel_y = 32 - }, -/obj/structure/table, -/obj/item/paper_bin{ - pixel_x = 6; - pixel_y = 4 - }, -/obj/item/paper/guides/jobs/medical/morgue{ - pixel_x = -4 - }, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"cCl" = ( -/obj/machinery/vending/cigarette, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/aft) -"cCm" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_x = 29 - }, -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cCn" = ( -/turf/closed/wall/r_wall, -/area/science/robotics/mechbay) -"cCo" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "robotics_shutters"; - name = "robotics shutters" - }, -/turf/open/floor/plating, -/area/science/robotics/mechbay) -"cCp" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research/glass{ - name = "Robotics Lab"; - req_access_txt = "29" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"cCq" = ( -/turf/closed/wall/r_wall, -/area/science/robotics/lab) -"cCr" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/white, -/area/science/research) -"cCs" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/white, -/area/science/research) -"cCt" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/portable_atmospherics/canister, -/turf/open/floor/plasteel, -/area/science/mixing) -"cCu" = ( -/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/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"cCv" = ( -/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/machinery/requests_console{ - department = "Science"; - departmentType = 2; - name = "Science Requests Console"; - pixel_y = -30; - receive_ore_updates = 1 - }, -/obj/structure/table/reinforced, -/obj/machinery/light, -/turf/open/floor/plasteel, -/area/science/mixing) -"cCw" = ( -/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/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"cCx" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -28 - }, -/obj/structure/tank_dispenser, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"cCy" = ( -/obj/machinery/disposal/bin{ - pixel_x = -2; - pixel_y = -2 - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"cCz" = ( -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"cCA" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"cCB" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"cCD" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"cCE" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"cCF" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/science/mixing) -"cCG" = ( -/obj/machinery/door/window/southleft{ - name = "Mass Driver Door"; - req_access_txt = "7" - }, -/obj/effect/turf_decal/loading_area, -/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 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"cCH" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plating/airless, -/area/science/test_area) -"cCI" = ( -/turf/open/floor/plating/airless, -/area/science/test_area) -"cCJ" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plating/airless, -/area/science/test_area) -"cCK" = ( -/mob/living/carbon/monkey, -/turf/open/floor/plasteel/freezer, -/area/medical/virology) -"cCL" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/plasteel/freezer, -/area/medical/virology) -"cCM" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plasteel/freezer, -/area/medical/virology) -"cCN" = ( -/obj/machinery/camera{ - c_tag = "Medbay Hallway Aft"; - dir = 4; - network = list("ss13","medbay") - }, -/turf/open/floor/plasteel/white/side{ - dir = 5 - }, -/area/medical/medbay/aft) -"cCO" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/aft) -"cCP" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/white/side{ - dir = 8 - }, -/area/medical/medbay/aft) -"cCQ" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/medical/medbay/aft) -"cCR" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white/side{ - dir = 4 - }, -/area/medical/medbay/aft) -"cCS" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plasteel/white, -/area/medical/medbay/aft) -"cCT" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel/white/side{ - dir = 8 - }, -/area/medical/medbay/aft) -"cCU" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/bodycontainer/morgue, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"cCV" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"cCW" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"cCX" = ( -/obj/effect/landmark/start/medical_doctor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"cCY" = ( -/obj/structure/table, -/obj/item/storage/box/bodybags, -/obj/item/pen, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_x = 29 - }, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"cCZ" = ( -/obj/machinery/vending/cola/random, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/aft) -"cDa" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "robotics_shutters"; - name = "robotics shutters" - }, -/turf/open/floor/plating, -/area/science/robotics/lab) -"cDb" = ( -/obj/structure/filingcabinet/chestdrawer{ - pixel_x = -2; - pixel_y = 2 - }, -/obj/machinery/button/door{ - id = "robotics_shutters"; - name = "robotics shutters control"; - pixel_x = -26; - pixel_y = 26; - req_access_txt = "29" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cDc" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cDd" = ( -/obj/machinery/mecha_part_fabricator, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = 20 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cDe" = ( -/obj/structure/sign/warning/nosmoking{ - pixel_y = 32 - }, -/obj/structure/rack, -/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/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cDf" = ( -/obj/machinery/mecha_part_fabricator, -/obj/machinery/camera{ - c_tag = "Robotics - Fore"; - network = list("ss13","rd") - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cDh" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/machinery/door/airlock/research{ - id_tag = "ResearchExt"; - name = "Research Division"; - req_one_access_txt = "47" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/research) -"cDi" = ( -/turf/closed/wall, -/area/science/robotics/lab) -"cDj" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"cDk" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall/r_wall, -/area/science/mixing) -"cDl" = ( -/obj/structure/sign/warning/securearea, -/turf/closed/wall/r_wall, -/area/science/mixing) -"cDm" = ( -/obj/machinery/shower{ - dir = 4; - name = "emergency shower" - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"cDn" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"cDo" = ( -/obj/structure/table, -/obj/item/crowbar, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/item/wrench, -/obj/item/clothing/mask/gas, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"cDp" = ( -/obj/structure/table, -/obj/item/clothing/glasses/science, -/obj/item/clothing/glasses/science, -/obj/item/multitool{ - pixel_x = 3 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"cDq" = ( -/obj/machinery/mass_driver{ - dir = 4; - id = "toxinsdriver" - }, -/turf/open/floor/plating, -/area/science/mixing) -"cDr" = ( -/obj/structure/sign/warning/vacuum/external{ - pixel_y = -32 - }, -/obj/machinery/light/small, -/turf/open/floor/plating, -/area/science/mixing) -"cDs" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/science/mixing) -"cDt" = ( -/obj/machinery/door/poddoor{ - id = "toxinsdriver"; - name = "Toxins Launcher Bay Door" - }, -/obj/structure/fans/tiny, -/turf/open/floor/plating, -/area/science/mixing) -"cDu" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"cDv" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating/airless, -/area/science/test_area) -"cDw" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating/airless, -/area/science/test_area) -"cDx" = ( -/obj/item/beacon, -/turf/open/floor/plating/airless, -/area/science/test_area) -"cDy" = ( -/obj/item/target/alien/anchored, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/camera/preset/toxins{ - dir = 8 - }, -/turf/open/floor/plating/airless{ - luminosity = 2 - }, -/area/science/test_area) -"cDz" = ( -/turf/closed/indestructible{ - desc = "A wall impregnated with Fixium, able to withstand massive explosions with ease"; - icon_state = "riveted"; - name = "hyper-reinforced wall" - }, -/area/science/test_area) -"cDA" = ( -/obj/structure/bed/roller, -/turf/open/floor/plasteel/freezer, -/area/medical/virology) -"cDB" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/mob/living/carbon/monkey, -/turf/open/floor/plasteel/freezer, -/area/medical/virology) -"cDC" = ( -/obj/effect/landmark/blobstart, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/freezer, -/area/medical/virology) -"cDD" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/mob/living/carbon/monkey, -/turf/open/floor/plasteel/freezer, -/area/medical/virology) -"cDE" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/turf/open/floor/plating, -/area/medical/virology) -"cDG" = ( -/obj/item/book/manual/wiki/infections{ - pixel_y = 7 - }, -/obj/item/reagent_containers/syringe/antiviral, -/obj/item/reagent_containers/dropper, -/obj/item/reagent_containers/spray/cleaner, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/structure/table/glass, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/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) -"cDH" = ( -/obj/machinery/smartfridge/chemistry/virology/preloaded, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/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/white, -/area/medical/virology) -"cDI" = ( -/obj/machinery/reagentgrinder{ - pixel_y = 8 - }, -/obj/structure/table/glass, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/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) -"cDJ" = ( -/obj/item/clothing/gloves/color/latex, -/obj/item/healthanalyzer, -/obj/item/clothing/glasses/hud/health, -/obj/structure/reagent_dispensers/virusfood{ - pixel_y = 30 - }, -/obj/structure/table/glass, -/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) -"cDK" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cDL" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cDM" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/port/aft) -"cDN" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cDO" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cDP" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance{ - name = "Medbay Maintenance"; - req_access_txt = "5" - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cDQ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white/side{ - dir = 4 - }, -/area/medical/medbay/aft) -"cDR" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/aft) -"cDS" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/white/side{ - dir = 8 - }, -/area/medical/medbay/aft) -"cDT" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/medical/medbay/aft) -"cDU" = ( -/obj/structure/disposalpipe/junction{ - dir = 4 - }, -/turf/open/floor/plasteel/white/side{ - dir = 4 - }, -/area/medical/medbay/aft) -"cDV" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/landmark/start/medical_doctor, -/turf/open/floor/plasteel/white, -/area/medical/medbay/aft) -"cDW" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel/white/side{ - dir = 8 - }, -/area/medical/medbay/aft) -"cDX" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock/grunge{ - name = "Morgue"; - req_access_txt = "5" - }, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"cDY" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"cDZ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"cEa" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"cEb" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"cEc" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"cEe" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark/side{ - dir = 1 - }, -/area/medical/surgery) -"cEf" = ( -/turf/closed/wall, -/area/hallway/primary/aft) -"cEg" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -24 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cEh" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cEi" = ( -/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, -/area/science/robotics/lab) -"cEj" = ( -/obj/structure/table/reinforced, -/obj/item/pen, -/obj/machinery/door/window/eastright{ - name = "Robotics Desk"; - req_access_txt = "29" - }, -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "robotics_shutters"; - name = "robotics shutters" - }, -/turf/open/floor/plating, -/area/science/robotics/lab) -"cEk" = ( -/obj/effect/landmark/start/roboticist, -/obj/structure/chair/office/light{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cEl" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cEm" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cEn" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cEo" = ( -/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/status_display/ai{ - pixel_x = 32 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cEp" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, -/turf/open/floor/plasteel/white/side{ - dir = 9 - }, -/area/science/research) -"cEq" = ( -/obj/structure/lattice, -/turf/open/space, -/area/science/mixing) -"cEr" = ( -/obj/machinery/door/poddoor/incinerator_toxmix, -/turf/open/floor/engine/vacuum, -/area/science/mixing) -"cEs" = ( -/obj/structure/sign/warning/vacuum/external{ - pixel_y = 32 - }, -/turf/open/floor/engine/vacuum, -/area/science/mixing) -"cEt" = ( -/obj/machinery/sparker/toxmix{ - pixel_x = 25 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/toxins_mixing_output{ - dir = 4 - }, -/turf/open/floor/engine/vacuum, -/area/science/mixing) -"cEu" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/science/mixing) -"cEv" = ( -/obj/machinery/airlock_sensor/incinerator_toxmix{ - pixel_y = 24 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 4 - }, -/turf/open/floor/engine, -/area/science/mixing) -"cEw" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 4 - }, -/obj/machinery/meter, -/obj/machinery/embedded_controller/radio/airlock_controller/incinerator_toxmix{ - pixel_x = -24 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"cEx" = ( -/obj/machinery/atmospherics/components/binary/valve{ - dir = 4; - name = "manual outlet valve" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"cEy" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 2 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/science/mixing) -"cEz" = ( -/obj/machinery/portable_atmospherics/scrubber, -/obj/item/storage/firstaid/toxin, -/turf/open/floor/plasteel, -/area/science/mixing) -"cEA" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/space/nearstation) -"cEB" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plating/airless, -/area/science/test_area) -"cEC" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plating/airless, -/area/science/test_area) -"cEE" = ( -/turf/closed/wall, -/area/medical/virology) -"cEF" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/turf/open/floor/plating, -/area/medical/virology) -"cEG" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/virology/glass{ - name = "Test Subject Cell"; - req_access_txt = "39" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel/freezer, -/area/medical/virology) -"cEH" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/medical/virology) -"cEI" = ( -/obj/item/paper_bin{ - pixel_x = -2; - pixel_y = 9 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/table/glass, -/obj/structure/sign/warning/deathsposal{ - pixel_x = -30 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"cEJ" = ( -/obj/structure/chair/office/light{ - dir = 1; - pixel_y = 3 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"cEK" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"cEL" = ( -/obj/structure/chair/office/light{ - dir = 4 - }, -/obj/effect/landmark/start/virologist, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"cEM" = ( -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/item/pen/red, -/obj/machinery/requests_console{ - department = "Virology"; - name = "Virology Requests Console"; - pixel_x = 29; - receive_ore_updates = 1 - }, -/obj/item/stack/sheet/mineral/plasma, -/obj/item/stack/sheet/mineral/plasma, -/obj/item/stack/sheet/mineral/plasma, -/obj/structure/table/glass, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"cEN" = ( -/obj/machinery/door/airlock/maintenance{ - req_one_access_txt = "12;5;39;6" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cEO" = ( -/turf/open/floor/plasteel/white/side{ - dir = 6 - }, -/area/medical/medbay/aft) -"cEP" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/white, -/area/medical/medbay/aft) -"cEQ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel/white/side{ - dir = 10 - }, -/area/medical/medbay/aft) -"cER" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/plasteel/white/corner{ - dir = 4 - }, -/area/medical/medbay/aft) -"cES" = ( -/obj/item/healthanalyzer{ - pixel_x = 1; - pixel_y = 4 - }, -/obj/structure/sign/warning/nosmoking{ - pixel_y = -30 - }, -/obj/structure/table/glass, -/turf/open/floor/plasteel/white/side{ - dir = 1 - }, -/area/medical/medbay/aft) -"cET" = ( -/obj/machinery/vending/medical, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/medical/medbay/aft) -"cEU" = ( -/obj/machinery/light_switch{ - pixel_x = -23 - }, -/obj/structure/bodycontainer/morgue, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"cEV" = ( -/obj/structure/disposalpipe/junction/flip{ - dir = 2 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"cEW" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"cEX" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"cEY" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/grunge{ - name = "Morgue"; - req_access_txt = "6" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"cEZ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/aft) -"cFa" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cFb" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cFc" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/sign/departments/science{ - name = "\improper ROBOTICS!"; - pixel_x = 32 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cFd" = ( -/obj/structure/noticeboard{ - dir = 4; - pixel_x = -27 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/aug_manipulator, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cFe" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cFf" = ( -/obj/effect/turf_decal/bot, -/obj/effect/landmark/start/cyborg, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cFg" = ( -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cFh" = ( -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cFi" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cFj" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 28; - pixel_y = 5 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/table, -/obj/item/wrench, -/obj/item/screwdriver{ - pixel_y = 10 - }, -/obj/item/multitool{ - pixel_x = 3 - }, -/obj/item/stack/cable_coil, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cFk" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Research Division Hallway - Robotics"; - dir = 4; - network = list("ss13","rd") - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"cFl" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"cFm" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/white/side{ - dir = 8 - }, -/area/science/research) -"cFn" = ( -/turf/open/floor/engine/vacuum, -/area/science/mixing) -"cFo" = ( -/obj/machinery/door/airlock/research/glass/incinerator/toxmix_exterior, -/turf/open/floor/engine, -/area/science/mixing) -"cFp" = ( -/obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume/incinerator_toxmix, -/obj/effect/landmark/blobstart, -/turf/open/floor/engine, -/area/science/mixing) -"cFq" = ( -/obj/machinery/door/airlock/research/glass/incinerator/toxmix_interior, -/turf/open/floor/engine, -/area/science/mixing) -"cFr" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"cFs" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/science/mixing) -"cFu" = ( -/obj/structure/closet, -/obj/item/assembly/prox_sensor{ - pixel_x = 2; - pixel_y = -2 - }, -/obj/item/assembly/signaler{ - pixel_x = -2; - pixel_y = 5 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cFv" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plating/airless, -/area/science/test_area) -"cFw" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating/airless, -/area/science/test_area) -"cFx" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plating/airless, -/area/science/test_area) -"cFy" = ( -/obj/item/radio/intercom{ - pixel_x = -28 - }, -/obj/structure/table/glass, -/obj/item/hand_labeler, -/obj/item/radio/headset/headset_med, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/obj/machinery/camera{ - c_tag = "Virology - Cells"; - dir = 4; - network = list("ss13","medbay") - }, -/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) -"cFz" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/iv_drip, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"cFA" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"cFB" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"cFC" = ( -/obj/structure/rack, -/obj/item/crowbar/red, -/obj/machinery/light_switch{ - pixel_y = 26 - }, -/obj/item/wrench, -/obj/item/restraints/handcuffs, -/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/white, -/area/medical/virology) -"cFD" = ( -/obj/effect/spawner/structure/window, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/medical/virology) -"cFE" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/obj/machinery/atmospherics/pipe/simple/supply/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) -"cFF" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"cFG" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"cFH" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"cFI" = ( -/obj/machinery/computer/pandemic{ - layer = 2.5; - pixel_x = -4 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/item/radio/intercom{ - pixel_x = 28 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"cFJ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/medical/virology) -"cFK" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/medical/virology) -"cFL" = ( -/obj/structure/sign/warning/biohazard{ - pixel_y = 32 - }, -/obj/machinery/shower{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"cFM" = ( -/obj/structure/sink{ - pixel_y = 28 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"cFN" = ( -/obj/structure/sign/warning/securearea{ - pixel_y = 32 - }, -/obj/machinery/shower{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"cFO" = ( -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/obj/machinery/iv_drip, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/aft) -"cFP" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_x = 29 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/aft) -"cFQ" = ( -/obj/item/kirbyplants{ - icon_state = "plant-21"; - pixel_x = -3; - pixel_y = 3 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/aft) -"cFR" = ( -/turf/open/floor/plasteel/white, -/area/medical/medbay/aft) -"cFS" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/white, -/area/medical/medbay/aft) -"cFT" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, -/turf/open/floor/plasteel/white/side{ - dir = 9 - }, -/area/medical/medbay/aft) -"cFU" = ( -/obj/machinery/light/small, -/obj/structure/bodycontainer/morgue{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"cFV" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"cFW" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"cFX" = ( -/obj/machinery/disposal/bin, -/obj/machinery/light_switch{ - pixel_x = 23 - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"cFY" = ( -/obj/structure/closet, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/aft) -"cFZ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cGa" = ( -/obj/machinery/computer/rdconsole/robotics{ - dir = 4 - }, -/obj/machinery/requests_console{ - department = "Robotics"; - departmentType = 2; - name = "Robotics RC"; - pixel_x = -31; - receive_ore_updates = 1 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cGb" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cGc" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cGd" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cGe" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cGf" = ( -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/machinery/disposal/bin, -/obj/machinery/light_switch{ - pixel_x = 27 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cGg" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"cGh" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"cGi" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 24 - }, -/turf/open/floor/plasteel/white/side{ - dir = 10 - }, -/area/science/research) -"cGj" = ( -/obj/machinery/sparker/toxmix{ - pixel_x = 25 - }, -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/toxins_mixing_input{ - dir = 4 - }, -/turf/open/floor/engine/vacuum, -/area/science/mixing) -"cGk" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/sign/warning/fire{ - pixel_y = -32 - }, -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 8 - }, -/turf/open/floor/engine, -/area/science/mixing) -"cGl" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 4 - }, -/obj/machinery/meter, -/obj/machinery/button/door/incinerator_vent_toxmix{ - pixel_x = -25; - pixel_y = 5 - }, -/obj/machinery/button/ignition/incinerator/toxmix{ - pixel_x = -25; - pixel_y = -5 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/machinery/airalarm/unlocked{ - dir = 1; - pixel_y = -22 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"cGm" = ( -/obj/machinery/atmospherics/components/binary/valve{ - dir = 4; - name = "manual inlet valve" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"cGn" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/portable_atmospherics/pump, -/turf/open/floor/plasteel, -/area/science/mixing) -"cGo" = ( -/obj/structure/closet/crate, -/obj/item/clothing/mask/gas, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cGp" = ( -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/obj/item/target, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/science/test_area) -"cGq" = ( -/obj/structure/table/glass, -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/item/pen/red, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"cGr" = ( -/obj/structure/chair/office/light{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"cGs" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"cGt" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"cGu" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/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/white, -/area/medical/virology) -"cGv" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/virology/glass{ - name = "Containment Cells"; - req_access_txt = "39" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/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/white, -/area/medical/virology) -"cGw" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"cGx" = ( -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"cGy" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/machinery/holopad, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"cGz" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"cGA" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"cGB" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/virology{ - name = "Virology Access"; - req_access_txt = "39" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - 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/white, -/area/medical/virology) -"cGC" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"cGD" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"cGE" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/doorButtons/airlock_controller{ - idExterior = "virology_airlock_exterior"; - idInterior = "virology_airlock_interior"; - idSelf = "virology_airlock_control"; - name = "Virology Access Console"; - pixel_x = 26; - pixel_y = 26; - req_access_txt = "39" - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"cGF" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/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/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/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/white, -/area/medical/virology) -"cGG" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/doorButtons/access_button{ - idDoor = "virology_airlock_interior"; - idSelf = "virology_airlock_control"; - name = "Virology Access Button"; - pixel_x = -26; - pixel_y = 28; - req_access_txt = "39" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"cGH" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"cGI" = ( -/obj/machinery/doorButtons/access_button{ - idDoor = "virology_airlock_exterior"; - idSelf = "virology_airlock_control"; - name = "Virology Access Button"; - pixel_y = 24; - req_access_txt = "39" - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/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/effect/mapping_helpers/airlock/cyclelink_helper{ - 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/white, -/area/medical/virology) -"cGJ" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/aft) -"cGK" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment, -/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/white, -/area/medical/medbay/aft) -"cGL" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/virology{ - name = "Virology Access"; - req_access_txt = "39" - }, -/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/white, -/area/medical/medbay/aft) -"cGM" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/aft) -"cGN" = ( -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/aft) -"cGO" = ( -/turf/open/floor/plasteel/white/side{ - dir = 8 - }, -/area/medical/medbay/aft) -"cGP" = ( -/obj/machinery/door/airlock/abandoned{ - name = "Medical Surplus Storeroom"; - req_access_txt = "5" - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cGQ" = ( -/turf/open/floor/plasteel, -/area/maintenance/aft) -"cGR" = ( -/obj/structure/table, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/item/storage/backpack/duffelbag/med, -/obj/item/flashlight/pen{ - pixel_x = 4; - pixel_y = 3 - }, -/turf/open/floor/plasteel, -/area/maintenance/aft) -"cGS" = ( -/obj/structure/table, -/obj/item/retractor, -/obj/item/hemostat, -/obj/item/healthanalyzer, -/obj/item/clothing/glasses/eyepatch, -/obj/item/reagent_containers/food/drinks/bottle/vodka{ - pixel_x = 3; - pixel_y = 2 - }, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/turf/open/floor/plasteel, -/area/maintenance/aft) -"cGT" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/airlock/maintenance{ - name = "Morgue Maintenance"; - req_access_txt = "6" - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cGU" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/extinguisher_cabinet{ - pixel_x = -27 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cGV" = ( -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -22 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/rnd/production/circuit_imprinter, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cGW" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/bot, -/obj/effect/landmark/start/cyborg, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cGX" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cGY" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/rack, -/obj/item/storage/firstaid/regular{ - empty = 1; - name = "First-Aid (empty)" - }, -/obj/item/storage/firstaid/regular{ - empty = 1; - name = "First-Aid (empty)" - }, -/obj/item/storage/firstaid/regular{ - empty = 1; - name = "First-Aid (empty)" - }, -/obj/item/healthanalyzer{ - pixel_x = 4; - pixel_y = -4 - }, -/obj/item/healthanalyzer{ - pixel_x = 4; - pixel_y = -4 - }, -/obj/item/healthanalyzer{ - pixel_x = 4; - pixel_y = -4 - }, -/obj/item/radio/headset/headset_sci{ - pixel_x = -3 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cGZ" = ( -/obj/effect/spawner/structure/window, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/science/robotics/lab) -"cHa" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"cHb" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"cHc" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel/white, -/area/science/research) -"cHd" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/sign/warning/securearea{ - desc = "A warning sign which reads 'SERVER ROOM'."; - name = "SERVER ROOM" - }, -/turf/closed/wall/r_wall, -/area/science/server) -"cHe" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/science/server) -"cHf" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/science/server) -"cHg" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/science/mixing) -"cHh" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Toxins Lab Maintenance"; - req_access_txt = "8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "toxins_blastdoor"; - name = "biohazard containment shutters" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cHi" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/closed/wall/r_wall, -/area/science/mixing) -"cHl" = ( -/obj/structure/table/glass, -/obj/item/paper_bin{ - pixel_x = -2; - pixel_y = 9 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -25 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/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/white, -/area/medical/virology) -"cHm" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/obj/structure/cable/yellow{ - 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/virology) -"cHn" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/machinery/light, -/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/white, -/area/medical/virology) -"cHo" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/obj/structure/cable/yellow{ - 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/virology) -"cHp" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/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) -"cHq" = ( -/obj/effect/spawner/structure/window, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/turf/open/floor/plating, -/area/medical/virology) -"cHr" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/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/white, -/area/medical/virology) -"cHs" = ( -/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/white, -/area/medical/virology) -"cHt" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - 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/virology) -"cHu" = ( -/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/white, -/area/medical/virology) -"cHv" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/obj/machinery/camera{ - c_tag = "Virology - Lab"; - dir = 8; - network = list("ss13","medbay") - }, -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/machinery/light_switch{ - pixel_x = 26 - }, -/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) -"cHw" = ( -/obj/structure/closet/emcloset, -/obj/item/radio/intercom{ - pixel_x = -28 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"cHx" = ( -/obj/machinery/camera{ - c_tag = "Virology - Airlock"; - dir = 1; - network = list("ss13","medbay") - }, -/obj/machinery/light, -/obj/structure/closet/l3closet, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"cHy" = ( -/obj/structure/closet/l3closet, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"cHz" = ( -/obj/structure/sign/warning/biohazard{ - pixel_x = -32 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/aft) -"cHA" = ( -/obj/machinery/camera{ - c_tag = "Virology - Entrance"; - dir = 8; - network = list("ss13","medbay") - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/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/white, -/area/medical/medbay/aft) -"cHB" = ( -/obj/structure/sign/warning/biohazard{ - pixel_x = -32 - }, -/obj/item/storage/box/gloves{ - pixel_x = 3; - pixel_y = 4 - }, -/obj/item/storage/box/masks, -/obj/structure/table/glass, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/aft) -"cHC" = ( -/obj/structure/sign/warning/nosmoking{ - pixel_y = -30 - }, -/obj/item/storage/box/beakers{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/storage/box/bodybags, -/obj/structure/table/glass, -/turf/open/floor/plasteel/white, -/area/medical/medbay/aft) -"cHD" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/machinery/light, -/obj/item/hand_labeler, -/obj/item/pen, -/obj/item/pen, -/obj/structure/table/glass, -/turf/open/floor/plasteel/white, -/area/medical/medbay/aft) -"cHE" = ( -/obj/item/paper_bin{ - pixel_x = -2; - pixel_y = 8 - }, -/obj/structure/table/glass, -/turf/open/floor/plasteel/white/side{ - dir = 10 - }, -/area/medical/medbay/aft) -"cHF" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/turf/open/floor/plasteel, -/area/maintenance/aft) -"cHG" = ( -/obj/effect/decal/cleanable/oil, -/turf/open/floor/plasteel, -/area/maintenance/aft) -"cHH" = ( -/obj/structure/table, -/obj/item/reagent_containers/glass/beaker{ - pixel_x = 8; - pixel_y = 2 - }, -/obj/item/reagent_containers/blood, -/obj/item/reagent_containers/blood, -/obj/item/reagent_containers/syringe, -/obj/item/reagent_containers/dropper, -/obj/structure/sign/warning/biohazard{ - pixel_x = 32 - }, -/turf/open/floor/plasteel, -/area/maintenance/aft) -"cHI" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cHJ" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/aft) -"cHK" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating, -/area/maintenance/aft) -"cHL" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cHM" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance{ - req_one_access_txt = "12;5;39;6" - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cHN" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cHO" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cHP" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/bodycontainer/morgue, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cHQ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cHR" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cHS" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cHT" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cHU" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cHV" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research{ - name = "Robotics Lab"; - req_access_txt = "29" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/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, -/area/science/robotics/lab) -"cHW" = ( -/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/science/research) -"cHX" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/white, -/area/science/research) -"cHY" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/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/white, -/area/science/research) -"cHZ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "Research Division Server Room"; - req_access_txt = "30" - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/dark, -/area/science/server) -"cIa" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/light_switch{ - pixel_y = 28 - }, -/turf/open/floor/plasteel/dark, -/area/science/server) -"cIc" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/freezer/on, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/turf/open/floor/plasteel/dark, -/area/science/server) -"cId" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/warning/securearea{ - desc = "A warning sign which reads 'SERVER ROOM'."; - name = "SERVER ROOM"; - pixel_y = 32 - }, -/turf/open/floor/plating, -/area/science/server) -"cIe" = ( -/obj/machinery/rnd/server, -/turf/open/floor/circuit/telecomms/server, -/area/science/server) -"cIf" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - external_pressure_bound = 140; - name = "server vent"; - pressure_checks = 0 - }, -/turf/open/floor/circuit/telecomms/server, -/area/science/server) -"cIg" = ( -/turf/closed/wall/r_wall, -/area/science/server) -"cIh" = ( -/obj/structure/closet, -/obj/item/storage/box/lights/mixed, -/obj/item/flashlight, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cIi" = ( -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cIj" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/sign/warning/biohazard{ - pixel_y = 32 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cIk" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cIl" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/landmark/event_spawn, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cIm" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research{ - name = "Research and Development Lab"; - req_one_access_txt = "7;29" - }, -/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/white, -/area/science/lab) -"cIn" = ( -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cIp" = ( -/obj/effect/spawner/structure/window, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/turf/open/floor/plating, -/area/medical/virology) -"cIq" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/virology/glass{ - name = "Isolation B"; - req_access_txt = "39" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel/freezer, -/area/medical/virology) -"cIr" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/virology/glass{ - name = "Isolation A"; - req_access_txt = "39" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel/freezer, -/area/medical/virology) -"cIs" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/closed/wall, -/area/medical/virology) -"cIt" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -26 - }, -/obj/machinery/vending/wardrobe/viro_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/medical/virology) -"cIu" = ( -/obj/structure/closet/crate/freezer, -/obj/item/reagent_containers/blood, -/obj/item/reagent_containers/blood{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/reagent_containers/blood/AMinus, -/obj/item/reagent_containers/blood/BMinus{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/reagent_containers/blood/BPlus{ - pixel_x = 1; - pixel_y = 2 - }, -/obj/item/reagent_containers/blood/OMinus, -/obj/item/reagent_containers/blood/OPlus{ - pixel_x = -2; - pixel_y = -1 - }, -/obj/item/reagent_containers/blood/random, -/obj/item/reagent_containers/blood/random, -/obj/item/reagent_containers/blood/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/medical/virology) -"cIv" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - 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/medical/virology) -"cIw" = ( -/obj/structure/closet/secure_closet/medical1, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/medical/virology) -"cIx" = ( -/obj/structure/closet/l3closet/virology, -/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/medical/virology) -"cIy" = ( -/obj/structure/sign/warning/biohazard{ - pixel_x = -32 - }, -/turf/open/space, -/area/space) -"cIz" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock/maintenance{ - req_one_access_txt = "12;5;39;6" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cIA" = ( -/obj/structure/bed/roller, -/obj/structure/bed/roller, -/obj/machinery/iv_drip, -/obj/machinery/iv_drip, -/turf/open/floor/plasteel, -/area/maintenance/aft) -"cIB" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plating, -/area/maintenance/aft) -"cIC" = ( -/obj/item/clothing/gloves/color/latex/nitrile, -/obj/structure/rack, -/obj/item/clothing/suit/toggle/labcoat, -/obj/item/clothing/suit/apron/surgical, -/obj/item/clothing/mask/surgical, -/obj/item/clothing/mask/breath/medical, -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, -/area/maintenance/aft) -"cID" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/aft) -"cIE" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/white/corner, -/area/hallway/primary/aft) -"cIF" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/white/corner, -/area/hallway/primary/aft) -"cIG" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/camera{ - c_tag = "Aft Primary Hallway - Aft"; - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/white/corner, -/area/hallway/primary/aft) -"cIH" = ( -/obj/structure/sign/directions/evac, -/turf/closed/wall/r_wall, -/area/hallway/primary/aft) -"cII" = ( -/obj/structure/table, -/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 - }, -/turf/open/floor/plasteel/white/side{ - dir = 4 - }, -/area/science/robotics/lab) -"cIJ" = ( -/obj/effect/landmark/start/roboticist, -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/turf/open/floor/plasteel/white, -/area/science/robotics/lab) -"cIK" = ( -/obj/machinery/holopad, -/turf/open/floor/plasteel/white, -/area/science/robotics/lab) -"cIL" = ( -/obj/structure/table, -/obj/item/clothing/gloves/color/latex, -/obj/item/surgical_drapes, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/turf/open/floor/plasteel/white/side{ - dir = 8 - }, -/area/science/robotics/lab) -"cIM" = ( -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cIN" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/table, -/obj/item/storage/box/bodybags{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/borg/upgrade/rename, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cIO" = ( -/obj/structure/rack, -/obj/item/storage/toolbox/electrical{ - pixel_x = -1; - pixel_y = 4 - }, -/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/item/multitool{ - pixel_x = 3 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cIP" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/science/robotics/lab) -"cIQ" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"cIR" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/white, -/area/science/research) -"cIS" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_x = 29 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"cIT" = ( -/turf/closed/wall, -/area/science/server) -"cIU" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/server) -"cIV" = ( -/obj/structure/chair/office/light, -/turf/open/floor/plasteel/dark, -/area/science/server) -"cIW" = ( -/obj/machinery/atmospherics/pipe/simple{ - dir = 5 - }, -/turf/open/floor/plasteel/dark, -/area/science/server) -"cIX" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command/glass{ - name = "Server Access"; - req_access_txt = "30" - }, -/obj/machinery/atmospherics/pipe/simple{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/server) -"cIY" = ( -/obj/machinery/atmospherics/pipe/simple{ - dir = 4 - }, -/turf/open/floor/plasteel/dark/telecomms, -/area/science/server) -"cIZ" = ( -/obj/effect/landmark/blobstart, -/obj/machinery/atmospherics/pipe/manifold{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/airalarm/server{ - dir = 8; - pixel_x = 22 - }, -/turf/open/floor/plasteel/dark/telecomms, -/area/science/server) -"cJa" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cJb" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cJc" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/starboard/aft) -"cJd" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cJe" = ( -/obj/structure/sign/warning/vacuum/external{ - pixel_y = -32 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cJf" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/external{ - req_access_txt = "13" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cJg" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/item/bedsheet/medical, -/obj/structure/bed, -/turf/open/floor/plasteel/freezer, -/area/medical/virology) -"cJh" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/freezer, -/area/medical/virology) -"cJi" = ( -/obj/structure/bed, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/item/bedsheet/medical, -/turf/open/floor/plasteel/freezer, -/area/medical/virology) -"cJj" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment, -/turf/closed/wall, -/area/medical/virology) -"cJk" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/airlock/virology{ - name = "Break Room"; - req_access_txt = "39" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/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/white, -/area/medical/virology) -"cJl" = ( -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/aft) -"cJm" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock/maintenance{ - name = "Research Lab Maintenance"; - req_one_access_txt = "7;29" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cJn" = ( -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cJo" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cJq" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/space_heater, -/turf/open/floor/plating, -/area/maintenance/aft) -"cJr" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/closet/crate, -/obj/item/clothing/gloves/color/fyellow, -/obj/item/wrench, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cJs" = ( -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/structure/closet/firecloset, -/turf/open/floor/plating, -/area/maintenance/aft) -"cJt" = ( -/obj/structure/rack, -/obj/item/screwdriver{ - pixel_y = 6 - }, -/obj/item/crowbar, -/obj/item/storage/pill_bottle, -/turf/open/floor/plating, -/area/maintenance/aft) -"cJu" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/item/cigbutt, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/aft) -"cJv" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/decal/cleanable/generic, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cJw" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance/abandoned{ - name = "Medical Surplus Storeroom"; - req_access_txt = "12" - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cJx" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cJy" = ( -/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) -"cJz" = ( -/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) -"cJA" = ( -/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) -"cJB" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/obj/machinery/newscaster{ - 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/hallway/secondary/exit/departure_lounge) -"cJC" = ( -/obj/machinery/vending/coffee, -/obj/structure/sign/map/left{ - desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; - icon_state = "map-left-MS"; - 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/hallway/secondary/exit/departure_lounge) -"cJD" = ( -/obj/machinery/vending/snack/random, -/obj/structure/sign/map/right{ - desc = "A framed picture of the station. Clockwise from security in red at the top, you see engineering in yellow, science in purple, escape in checkered red-and-white, medbay in green, arrivals in checkered red-and-blue, and then cargo in brown."; - icon_state = "map-right-MS"; - 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/hallway/secondary/exit/departure_lounge) -"cJE" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Departure Lounge" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cJF" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Departure Lounge" - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cJG" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Departure Lounge" - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cJH" = ( -/obj/structure/table, -/obj/item/retractor, -/obj/item/hemostat, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_x = -29 - }, -/turf/open/floor/plasteel/white/corner{ - dir = 4 - }, -/area/science/robotics/lab) -"cJJ" = ( -/obj/machinery/computer/operating{ - dir = 1; - name = "Robotics Operating Computer" - }, -/turf/open/floor/plasteel/white/side{ - dir = 1 - }, -/area/science/robotics/lab) -"cJK" = ( -/obj/structure/table, -/obj/item/mmi, -/obj/item/mmi, -/obj/item/mmi, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/science/robotics/lab) -"cJL" = ( -/obj/machinery/door/window/eastleft{ - dir = 1; - name = "Robotics Deliveries"; - req_access_txt = "29" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cJM" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/vending/wardrobe/robo_wardrobe, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cJN" = ( -/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/item/stock_parts/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/obj/item/crowbar, -/obj/item/assembly/prox_sensor{ - pixel_x = -8; - pixel_y = 4 - }, -/obj/item/assembly/prox_sensor{ - pixel_x = -8; - pixel_y = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cJO" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/plasteel/white, -/area/science/research) -"cJP" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/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/research) -"cJQ" = ( -/obj/item/kirbyplants{ - icon_state = "plant-10" - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"cJR" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/structure/filingcabinet/chestdrawer, -/turf/open/floor/plasteel/dark, -/area/science/server) -"cJS" = ( -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -28 - }, -/obj/machinery/computer/rdservercontrol{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/science/server) -"cJT" = ( -/obj/structure/table, -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/item/pen, -/turf/open/floor/plasteel/dark, -/area/science/server) -"cJU" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/science/server) -"cJW" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{ - dir = 1; - external_pressure_bound = 120; - name = "server vent" - }, -/turf/open/floor/circuit/telecomms/server, -/area/science/server) -"cJX" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/aft) -"cJY" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/costume, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cJZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/reagent_dispensers/watertank, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cKa" = ( -/obj/structure/closet, -/obj/item/clothing/glasses/science, -/obj/effect/spawner/lootdrop/maintenance, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cKb" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cKc" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cKe" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel/freezer, -/area/medical/virology) -"cKf" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/freezer, -/area/medical/virology) -"cKg" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/freezer, -/area/medical/virology) -"cKh" = ( -/obj/effect/landmark/xeno_spawn, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel/freezer, -/area/medical/virology) -"cKi" = ( -/obj/structure/table/glass, -/obj/machinery/newscaster{ - pixel_x = -30 - }, -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/item/paper, -/obj/item/pen/red, -/obj/structure/extinguisher_cabinet{ - pixel_y = 30 - }, -/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) -"cKj" = ( -/obj/structure/chair/office/light{ - dir = 8 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_y = 29 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"cKk" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"cKl" = ( -/obj/structure/table/glass, -/obj/item/storage/box/donkpockets{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/machinery/light_switch{ - pixel_y = 26 - }, -/obj/machinery/camera{ - c_tag = "Virology - Break Room"; - network = list("ss13","medbay") - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"cKm" = ( -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_x = 29 - }, -/obj/structure/table/glass, -/obj/machinery/microwave{ - pixel_x = -3; - pixel_y = 6 - }, -/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) -"cKn" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/maintenance/aft) -"cKo" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/aft) -"cKp" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating, -/area/maintenance/aft) -"cKq" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cKr" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 8; - sortType = 17 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/maintenance/aft) -"cKs" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cKu" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cKv" = ( -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cKw" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cKx" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cKz" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cKA" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cKB" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cKC" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/item/radio/intercom{ - pixel_y = 25 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cKD" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cKE" = ( -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cKF" = ( -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 24 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cKG" = ( -/obj/structure/plasticflaps/opaque, -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=1"; - dir = 1; - freq = 1400; - location = "Robotics" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cKH" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Robotics Maintenance"; - req_access_txt = "29" - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cKI" = ( -/obj/structure/sign/warning/securearea, -/turf/closed/wall/r_wall, -/area/science/research) -"cKJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/aft) -"cKK" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cKL" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance/abandoned{ - name = "Storage Room"; - req_one_access_txt = "12;47" - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cKM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cKN" = ( -/obj/item/storage/box/lights/mixed, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cKO" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/starboard/aft) -"cKP" = ( -/turf/closed/wall/r_wall, -/area/maintenance/solars/starboard/aft) -"cKQ" = ( -/obj/machinery/door/airlock/engineering{ - name = "Starboard Quarter Solar Access"; - req_access_txt = "10" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/aft) -"cKR" = ( -/obj/structure/sign/warning/electricshock, -/turf/closed/wall/r_wall, -/area/maintenance/solars/starboard/aft) -"cKS" = ( -/obj/structure/table/glass, -/obj/item/reagent_containers/dropper, -/obj/item/reagent_containers/syringe, -/obj/item/reagent_containers/glass/beaker, -/turf/open/floor/plasteel/freezer, -/area/medical/virology) -"cKT" = ( -/obj/structure/table/glass, -/obj/item/folder/white{ - pixel_y = 4 - }, -/obj/item/pen/red, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/freezer, -/area/medical/virology) -"cKU" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/turf/closed/wall, -/area/medical/virology) -"cKV" = ( -/obj/structure/table/glass, -/obj/item/paper_bin{ - pixel_x = -2; - pixel_y = 9 - }, -/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) -"cKW" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"cKX" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"cKY" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"cKZ" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"cLb" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/airlock/maintenance{ - name = "Crematorium Maintenance"; - req_one_access_txt = "27" - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cLc" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock/maintenance{ - name = "Chapel Office Maintenance"; - req_one_access_txt = "22" - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cLd" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cLe" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cLf" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cLg" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/junction/flip{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/maintenance/aft) -"cLh" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cLi" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, -/area/maintenance/aft) -"cLj" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cLk" = ( -/obj/machinery/door/airlock/maintenance{ - req_one_access_txt = "12;5;39;6" - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cLl" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cLm" = ( -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cLn" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=10-Aft-To-Central"; - location = "9.4-Escape-4" - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cLo" = ( -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cLp" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cLq" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cLr" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cLs" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cLt" = ( -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cLu" = ( -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cLv" = ( -/obj/machinery/door/airlock/maintenance{ - req_one_access_txt = "12;47" - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cLw" = ( -/obj/structure/cable/yellow{ - 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/aft) -"cLx" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/aft) -"cLy" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cLz" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/landmark/blobstart, -/turf/open/floor/plating, -/area/maintenance/aft) -"cLA" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/maintenance{ - req_one_access_txt = "12;47" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cLB" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/spawner/lootdrop/maintenance, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cLC" = ( -/obj/machinery/button/ignition/incinerator/atmos{ - pixel_x = 8; - pixel_y = -36 - }, -/obj/machinery/computer/security/telescreen{ - desc = "Used for watching the turbine vent."; - dir = 8; - name = "turbine vent monitor"; - network = list("turbine"); - pixel_x = 29 - }, -/obj/machinery/button/door/incinerator_vent_atmos_main{ - pixel_x = -8; - pixel_y = -36 - }, -/obj/machinery/atmospherics/pipe/simple/general/visible, -/obj/machinery/button/door/incinerator_vent_atmos_aux{ - pixel_x = -8; - pixel_y = -24 - }, -/obj/machinery/computer/turbine_computer{ - dir = 1; - id = "incineratorturbine" - }, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"cLD" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/aft) -"cLE" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/freezer/on{ - dir = 1; - name = "euthanization chamber freezer" - }, -/turf/open/floor/plating, -/area/science/xenobiology) -"cLF" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, -/area/maintenance/starboard/aft) -"cLH" = ( -/obj/machinery/space_heater, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cLJ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/closet, -/obj/item/storage/box/lights/mixed, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cLK" = ( -/obj/machinery/power/smes, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/aft) -"cLL" = ( -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/aft) -"cLN" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment, -/turf/closed/wall/r_wall, -/area/medical/virology) -"cLO" = ( -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/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/white, -/area/medical/virology) -"cLP" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"cLQ" = ( -/obj/structure/chair/stool, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/structure/cable/yellow{ - 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/virology) -"cLR" = ( -/obj/structure/chair/stool, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"cLS" = ( -/obj/structure/chair/stool, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 24 - }, -/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) -"cLU" = ( -/obj/effect/landmark/blobstart, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/engine, -/area/science/explab) -"cMb" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Chapel Maintenance"; - req_one_access_txt = "12;22" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/aft) -"cMd" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cMe" = ( -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cMf" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cMg" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cMh" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cMi" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=9.2-Escape-2"; - location = "9.1-Escape-1" - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cMj" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Departure Lounge - Starboard Fore"; - dir = 8 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, -/obj/item/kirbyplants{ - icon_state = "plant-14" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cMk" = ( -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/turf/open/space, -/area/space) -"cMl" = ( -/obj/structure/table, -/obj/item/stack/sheet/glass/fifty{ - pixel_x = 3; - pixel_y = -4 - }, -/obj/item/stack/sheet/metal/fifty, -/turf/open/floor/plating, -/area/maintenance/aft) -"cMm" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cMn" = ( -/obj/structure/plasticflaps, -/obj/machinery/conveyor{ - dir = 4; - id = "QMLoad2" - }, -/turf/open/floor/plating, -/area/cargo/storage) -"cMp" = ( -/obj/structure/chair, -/obj/item/cigbutt, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cMq" = ( -/obj/machinery/power/terminal{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/machinery/camera{ - c_tag = "Aft Starboard Solar Maintenance"; - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/aft) -"cMr" = ( -/obj/effect/landmark/xeno_spawn, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/solars/starboard/aft) -"cMs" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/aft) -"cMt" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"cMu" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"cMv" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plating/airless, -/area/medical/virology) -"cMw" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/turf/open/floor/plating, -/area/medical/virology) -"cMx" = ( -/obj/machinery/atmospherics/components/unary/tank/air{ - dir = 1 - }, -/obj/structure/cable/yellow{ - 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/medical/virology) -"cMy" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1; - name = "virology air connector port" - }, -/obj/machinery/portable_atmospherics/canister/air, -/obj/structure/cable/yellow{ - 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/medical/virology) -"cMz" = ( -/obj/item/trash/popcorn, -/obj/structure/table/glass, -/obj/structure/cable/yellow{ - icon_state = "1-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/medical/virology) -"cMA" = ( -/obj/item/reagent_containers/food/snacks/sosjerky, -/obj/structure/table/glass, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/medical/virology) -"cMB" = ( -/obj/item/trash/cheesie{ - pixel_y = 4 - }, -/obj/structure/table/glass, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/medical/virology) -"cMQ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/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/hallway/primary/central) -"cMR" = ( -/obj/structure/table, -/obj/item/candle, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cMS" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/landmark/start/assistant, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cMT" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cMU" = ( -/obj/machinery/status_display/evac{ - layer = 4 - }, -/turf/closed/wall, -/area/hallway/secondary/exit/departure_lounge) -"cMV" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cMW" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cMX" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cMY" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cMZ" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/westleft{ - base_state = "right"; - icon_state = "right"; - name = "Outer Window" - }, -/obj/machinery/door/window/brigdoor{ - dir = 4; - name = "Security Desk"; - req_access_txt = "1" - }, -/obj/item/folder/red, -/obj/item/pen, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cNa" = ( -/obj/structure/chair/office/dark{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/computer/security/telescreen{ - desc = "Used for watching output from station security cameras."; - name = "Security Camera Monitor"; - pixel_y = 30 - }, -/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/hallway/secondary/exit/departure_lounge) -"cNb" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/obj/structure/reagent_dispensers/peppertank{ - pixel_y = 28 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cNc" = ( -/obj/structure/chair, -/obj/structure/sign/map/left{ - desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; - icon_state = "map-left-MS"; - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cNd" = ( -/obj/structure/table, -/obj/machinery/recharger{ - pixel_y = 4 - }, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/obj/structure/sign/map/right{ - desc = "A framed picture of the station. Clockwise from security in red at the top, you see engineering in yellow, science in purple, escape in checkered red-and-white, medbay in green, arrivals in checkered red-and-blue, and then cargo in brown."; - icon_state = "map-right-MS"; - 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/hallway/secondary/exit/departure_lounge) -"cNe" = ( -/turf/open/floor/plating, -/area/maintenance/aft) -"cNf" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cNg" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/item/cigbutt, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cNh" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/aft) -"cNi" = ( -/obj/machinery/biogenerator, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cNj" = ( -/obj/item/reagent_containers/food/snacks/grown/banana, -/obj/item/reagent_containers/food/snacks/grown/banana, -/obj/item/reagent_containers/food/snacks/grown/wheat, -/obj/item/reagent_containers/food/snacks/grown/watermelon, -/obj/item/reagent_containers/food/snacks/grown/watermelon, -/obj/item/reagent_containers/food/snacks/grown/watermelon, -/obj/item/reagent_containers/food/snacks/grown/citrus/orange, -/obj/item/reagent_containers/food/snacks/grown/grapes, -/obj/item/reagent_containers/food/snacks/grown/cocoapod, -/obj/structure/rack, -/obj/item/seeds/wheat, -/obj/item/seeds/watermelon, -/obj/item/seeds/watermelon, -/obj/item/seeds/grape, -/obj/item/seeds/glowshroom, -/obj/effect/turf_decal/stripes/line, -/obj/item/seeds/cannabis/rainbow, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cNk" = ( -/obj/item/storage/bag/plants/portaseeder, -/obj/item/storage/bag/plants/portaseeder, -/obj/item/plant_analyzer, -/obj/item/cultivator, -/obj/item/reagent_containers/glass/bucket, -/obj/structure/rack, -/obj/item/seeds/corn, -/obj/item/seeds/cabbage, -/obj/item/seeds/ambrosia, -/obj/item/seeds/grass, -/obj/item/reagent_containers/food/snacks/grown/mushroom/glowshroom, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cNl" = ( -/obj/machinery/hydroponics/soil{ - pixel_y = 8 - }, -/obj/item/seeds/carrot, -/obj/effect/turf_decal/stripes/line, -/obj/item/seeds/cannabis/white, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cNm" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cNn" = ( -/obj/machinery/hydroponics/soil{ - pixel_y = 8 - }, -/obj/item/plant_analyzer, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cNo" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/aft) -"cNp" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/chair/stool, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/aft) -"cNq" = ( -/obj/machinery/power/solar_control{ - dir = 8; - id = "aftstarboard"; - name = "Starboard Quarter Solar Control" - }, -/obj/structure/cable, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/structure/sign/warning/vacuum/external{ - pixel_y = -32 - }, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/aft) -"cNr" = ( -/obj/structure/disposaloutlet, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"cNs" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/on{ - dir = 1 - }, -/turf/open/floor/plating/airless, -/area/medical/virology) -"cNw" = ( -/obj/structure/cable, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/machinery/power/compressor{ - comp_id = "incineratorturbine"; - dir = 1; - luminosity = 2 - }, -/turf/open/floor/engine/vacuum, -/area/maintenance/disposal/incinerator) -"cNI" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cNJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cNK" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cNL" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cNN" = ( -/obj/structure/flora/ausbushes/fernybush, -/obj/structure/flora/ausbushes/fullgrass, -/obj/structure/flora/ausbushes/ppflowers, -/obj/structure/flora/ausbushes/palebush, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/grass, -/area/hallway/secondary/exit/departure_lounge) -"cNO" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cNP" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/turf/open/floor/plating, -/area/hallway/secondary/exit/departure_lounge) -"cNQ" = ( -/obj/machinery/computer/secure_data{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cNR" = ( -/obj/structure/chair/office/dark{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cNS" = ( -/obj/structure/table, -/obj/item/folder/red{ - pixel_x = 3 - }, -/obj/item/folder/white{ - pixel_x = -4; - pixel_y = 2 - }, -/obj/item/restraints/handcuffs, -/obj/machinery/light{ - dir = 4 - }, -/obj/item/radio/off, -/obj/machinery/requests_console{ - department = "Security"; - departmentType = 5; - pixel_x = 30 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cNT" = ( -/obj/structure/sign/warning/vacuum{ - pixel_x = 32 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/maintenance/aft) -"cNU" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cNW" = ( -/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/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/starboard/aft) -"cNX" = ( -/obj/item/seeds/watermelon, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cNY" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/grille, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cNZ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/structure/chair, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cOa" = ( -/obj/structure/cable, -/obj/machinery/power/turbine{ - luminosity = 2 - }, -/turf/open/floor/engine/vacuum, -/area/maintenance/disposal/incinerator) -"cOo" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cOp" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cOq" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cOr" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cOs" = ( -/obj/machinery/status_display/ai, -/turf/closed/wall, -/area/hallway/secondary/exit/departure_lounge) -"cOt" = ( -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cOu" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cOv" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Departure Lounge Security Post"; - req_access_txt = "63" - }, -/obj/structure/cable/yellow{ - 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/hallway/secondary/exit/departure_lounge) -"cOw" = ( -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/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/hallway/secondary/exit/departure_lounge) -"cOx" = ( -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cOy" = ( -/obj/structure/table, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/pen, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cOz" = ( -/obj/structure/table, -/obj/machinery/newscaster/security_unit{ - pixel_x = 29; - pixel_y = 1 - }, -/obj/machinery/camera{ - c_tag = "Departure Lounge - Security Post"; - dir = 1 - }, -/obj/item/book/manual/wiki/security_space_law{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/taperecorder{ - pixel_x = 4 - }, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -32 - }, -/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/hallway/secondary/exit/departure_lounge) -"cOA" = ( -/obj/structure/rack, -/obj/item/clothing/mask/gas, -/obj/item/clothing/glasses/sunglasses, -/obj/effect/spawner/lootdrop/maintenance, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cOB" = ( -/obj/item/seeds/sunflower/moonflower, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cOC" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cOD" = ( -/obj/item/seeds/berry, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cOE" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/item/reagent_containers/glass/bucket, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cOT" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cOU" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cOV" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cOW" = ( -/obj/structure/flora/ausbushes/fernybush, -/obj/structure/flora/ausbushes/fullgrass, -/obj/structure/flora/ausbushes/brflowers, -/obj/structure/flora/ausbushes/sunnybush, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/grass, -/area/hallway/secondary/exit/departure_lounge) -"cOX" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cOY" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cOZ" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cPa" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/structure/sign/warning/electricshock{ - pixel_x = 32 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cPb" = ( -/turf/closed/wall, -/area/hallway/secondary/exit/departure_lounge) -"cPc" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/turf/open/floor/plating, -/area/hallway/secondary/exit/departure_lounge) -"cPd" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/hallway/secondary/exit/departure_lounge) -"cPe" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cPf" = ( -/obj/machinery/hydroponics/soil{ - pixel_y = 8 - }, -/obj/item/seeds/glowshroom, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/item/seeds/cannabis/ultimate, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cPg" = ( -/obj/machinery/hydroponics/soil{ - pixel_y = 8 - }, -/obj/item/cultivator, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cPh" = ( -/obj/machinery/hydroponics/soil{ - pixel_y = 8 - }, -/obj/item/seeds/ambrosia, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cPi" = ( -/obj/machinery/hydroponics/soil{ - pixel_y = 8 - }, -/obj/item/seeds/watermelon, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/item/seeds/cannabis, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cPj" = ( -/obj/machinery/hydroponics/soil{ - pixel_y = 8 - }, -/obj/item/seeds/berry, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cPs" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cPt" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cPu" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/landmark/start/assistant, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cPv" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/hallway/secondary/exit/departure_lounge) -"cPx" = ( -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cPz" = ( -/obj/structure/closet, -/obj/item/flashlight, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 3; - name = "3maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cPO" = ( -/obj/machinery/camera{ - c_tag = "Departure Lounge - Port Aft"; - dir = 4 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -27 - }, -/obj/item/kirbyplants{ - icon_state = "plant-04" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cPP" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cPQ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cPR" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cPS" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/item/beacon, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cPT" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cPU" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cPV" = ( -/obj/machinery/camera{ - c_tag = "Departure Lounge - Starboard Aft"; - dir = 8 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_x = 29 - }, -/obj/item/kirbyplants{ - icon_state = "plant-16" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cPW" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/grille, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/aft) -"cPX" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research{ - name = "Xenobiology Lab"; - req_access_txt = "47" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/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/white, -/area/science/research) -"cPY" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/aft) -"cQm" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cQo" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=9.4-Escape-4"; - location = "9.3-Escape-3" - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cQp" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=9.3-Escape-3"; - location = "9.2-Escape-2" - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cQq" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cQr" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Research Division Hallway - Xenobiology Lab Access"; - network = list("ss13","rd") - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cQs" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/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/white, -/area/science/xenobiology) -"cQt" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/effect/landmark/blobstart, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cQv" = ( -/obj/machinery/camera{ - c_tag = "Toxins - Launch Area"; - network = list("ss13","rd") - }, -/obj/machinery/suit_storage_unit/rd, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/turf/open/floor/plasteel{ - dir = 1 - }, -/area/science/mixing) -"cQB" = ( -/obj/machinery/doppler_array/research/science{ - dir = 4 - }, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = 22 - }, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/turf/open/floor/plasteel{ - dir = 1 - }, -/area/science/mixing) -"cQC" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/light_switch{ - pixel_y = 25 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"cQD" = ( -/obj/structure/table, -/obj/item/stack/sheet/glass{ - amount = 40; - 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 - }, -/obj/item/stack/packageWrap, -/obj/item/stack/packageWrap, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cQJ" = ( -/obj/structure/sign/warning/vacuum{ - pixel_x = -32 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cQK" = ( -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cQL" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cQM" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cQN" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cQO" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cQP" = ( -/obj/structure/sign/warning/vacuum{ - pixel_x = 32 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cQR" = ( -/obj/machinery/door/poddoor/preopen{ - id = "xeno_blastdoor"; - name = "biohazard containment door" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cQS" = ( -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_x = 29 - }, -/obj/machinery/door/poddoor/preopen{ - id = "xeno_blastdoor"; - name = "biohazard containment door" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cQY" = ( -/obj/machinery/door/airlock/external{ - name = "Departure Lounge Airlock" - }, -/obj/effect/turf_decal/delivery, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cQZ" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/door/poddoor/preopen{ - id = "xeno_blastdoor"; - name = "biohazard containment door" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cRa" = ( -/obj/structure/sign/warning/biohazard, -/turf/closed/wall, -/area/science/xenobiology) -"cRb" = ( -/obj/structure/sign/warning/securearea, -/turf/closed/wall, -/area/science/xenobiology) -"cRc" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research{ - name = "Xenobiology Lab"; - req_access_txt = "47" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/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/white, -/area/science/xenobiology) -"cRe" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/science/xenobiology) -"cRf" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cRg" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cRh" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/machinery/light_switch{ - pixel_x = -23 - }, -/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) -"cRi" = ( -/turf/closed/wall/r_wall, -/area/science/xenobiology) -"cRk" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cRs" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cRt" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cRu" = ( -/obj/structure/sign/warning/biohazard, -/turf/closed/wall/r_wall, -/area/science/xenobiology) -"cRv" = ( -/obj/machinery/doorButtons/access_button{ - idDoor = "xeno_airlock_exterior"; - idSelf = "xeno_airlock_control"; - name = "Access Button"; - pixel_x = -24 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/locked, -/obj/machinery/door/airlock/research{ - autoclose = 0; - frequency = 1449; - id_tag = "xeno_airlock_exterior"; - name = "Xenobiology Lab External Airlock"; - req_access_txt = "55" - }, -/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/white, -/area/science/xenobiology) -"cRw" = ( -/obj/structure/sign/warning/securearea, -/turf/closed/wall/r_wall, -/area/science/xenobiology) -"cRx" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/science/xenobiology) -"cRy" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cRz" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cRA" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cRB" = ( -/obj/machinery/atmospherics/pipe/simple/supply/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/white, -/area/science/xenobiology) -"cRC" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cRD" = ( -/obj/machinery/atmospherics/components/unary/tank/air{ - dir = 4 - }, -/turf/open/floor/plating, -/area/science/xenobiology) -"cRM" = ( -/obj/machinery/processor/slime, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cRN" = ( -/obj/machinery/monkey_recycler, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cRR" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cRS" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cRU" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio3"; - name = "containment blast door" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/science/xenobiology) -"cRV" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cRW" = ( -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio8"; - name = "containment blast door" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/science/xenobiology) -"cRX" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cRY" = ( -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/machinery/door/poddoor/preopen{ - id = "Xenolab"; - name = "test chamber blast door" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/science/xenobiology) -"cRZ" = ( -/obj/structure/cable/yellow, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio3"; - name = "containment blast door" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/science/xenobiology) -"cSa" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cSb" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cSc" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/structure/cable/yellow, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio8"; - name = "containment blast door" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/science/xenobiology) -"cSd" = ( -/turf/closed/wall, -/area/science/xenobiology) -"cSe" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cSf" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cSg" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"cSh" = ( -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/structure/disposaloutlet, -/turf/open/floor/engine, -/area/science/xenobiology) -"cSi" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cSj" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cSk" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cSl" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cSm" = ( -/obj/structure/window/reinforced, -/obj/structure/table/reinforced, -/obj/machinery/button/door{ - id = "xenobio8"; - name = "Containment Blast Doors"; - pixel_y = 4; - req_access_txt = "55" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cSn" = ( -/turf/open/floor/engine, -/area/science/xenobiology) -"cSp" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Xenobiology Lab - Pen #1"; - dir = 4; - network = list("ss13","rd","xeno") - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"cSq" = ( -/obj/machinery/door/window/northleft{ - base_state = "right"; - dir = 8; - icon_state = "right"; - name = "Containment Pen #1"; - req_access_txt = "55" - }, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio3"; - name = "containment blast door" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"cSr" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cSs" = ( -/obj/machinery/door/window/northleft{ - dir = 4; - name = "Containment Pen #1"; - req_access_txt = "55" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cSt" = ( -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cSv" = ( -/obj/machinery/door/window/northleft{ - dir = 4; - name = "Containment Pen #2"; - req_access_txt = "55" - }, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio8"; - name = "containment blast door" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"cSw" = ( -/obj/machinery/door/window/northleft{ - base_state = "right"; - dir = 8; - icon_state = "right"; - name = "Containment Pen #2"; - req_access_txt = "55" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cSx" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Xenobiology Lab - Pen #2"; - dir = 8; - network = list("ss13","rd","xeno") - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"cSy" = ( -/mob/living/simple_animal/slime, -/turf/open/floor/engine, -/area/science/xenobiology) -"cSA" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cSB" = ( -/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 = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cSD" = ( -/obj/structure/cable/yellow, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio2"; - name = "containment blast door" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/science/xenobiology) -"cSE" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cSF" = ( -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/structure/disposaloutlet{ - dir = 1 - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"cSG" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cSI" = ( -/obj/structure/sign/warning/electricshock, -/turf/closed/wall, -/area/science/xenobiology) -"cSJ" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cSK" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cSL" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 4 - }, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cSM" = ( -/obj/structure/window/reinforced, -/obj/structure/table/reinforced, -/obj/machinery/button/door{ - id = "xenobio7"; - name = "Containment Blast Doors"; - pixel_y = 4; - req_access_txt = "55" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cSN" = ( -/obj/machinery/door/window/northleft{ - base_state = "right"; - dir = 8; - icon_state = "right"; - name = "Containment Pen #3"; - req_access_txt = "55" - }, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio2"; - name = "containment blast door" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"cSO" = ( -/obj/machinery/door/window/northleft{ - dir = 4; - name = "Containment Pen #3"; - req_access_txt = "55" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cSP" = ( -/obj/docking_port/stationary/random{ - id = "pod_lavaland1"; - name = "lavaland" - }, -/turf/open/space, -/area/space/nearstation) -"cSQ" = ( -/obj/machinery/door/window/northleft{ - dir = 4; - name = "Containment Pen #4"; - req_access_txt = "55" - }, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio7"; - name = "containment blast door" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"cSR" = ( -/obj/machinery/door/window/northleft{ - base_state = "right"; - dir = 8; - icon_state = "right"; - name = "Containment Pen #4"; - req_access_txt = "55" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cSS" = ( -/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 = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cST" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/table/reinforced, -/obj/machinery/button/door{ - id = "xenobio1"; - name = "Containment Blast Doors"; - pixel_y = 4; - req_access_txt = "55" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cSV" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cSW" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cSX" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cSZ" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8 - }, -/obj/machinery/firealarm{ - pixel_y = 26 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cTa" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cTb" = ( -/obj/machinery/door/window/northleft{ - dir = 4; - name = "Containment Pen #5"; - req_access_txt = "55" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cTc" = ( -/obj/machinery/door/window/northleft{ - base_state = "right"; - dir = 8; - icon_state = "right"; - name = "Containment Pen #5"; - req_access_txt = "55" - }, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio1"; - name = "containment blast door" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"cTe" = ( -/obj/machinery/door/window/northleft{ - base_state = "right"; - dir = 8; - icon_state = "right"; - name = "Containment Pen #6"; - req_access_txt = "55" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cTg" = ( -/obj/machinery/door/window/northleft{ - dir = 4; - name = "Containment Pen #6"; - req_access_txt = "55" - }, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio6"; - name = "containment blast door" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"cTj" = ( -/obj/item/crowbar/red, -/obj/item/wrench, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cTk" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/button/ignition{ - id = "Xenobio"; - pixel_x = -6; - pixel_y = -3 - }, -/obj/machinery/button/door{ - id = "Xenolab"; - name = "Test Chamber Blast Doors"; - pixel_x = 4; - pixel_y = -3; - req_access_txt = "55" - }, -/obj/structure/table/reinforced, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cTm" = ( -/obj/structure/cable/yellow, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/machinery/atmospherics/pipe/simple/general/visible, -/obj/machinery/door/poddoor/preopen{ - id = "Xenolab"; - name = "test chamber blast door" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/science/xenobiology) -"cTn" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/department/science/xenobiology) -"cTp" = ( -/obj/structure/closet, -/turf/open/floor/plating, -/area/maintenance/department/science/xenobiology) -"cTq" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock/hatch{ - name = "Test Chamber Maintenance"; - req_access_txt = "47" - }, -/turf/open/floor/plating, -/area/science/xenobiology) -"cTr" = ( -/obj/machinery/computer/security/telescreen{ - dir = 1; - name = "Test Chamber Monitor"; - network = list("xeno"); - pixel_y = 2 - }, -/obj/structure/table/reinforced, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cTs" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 2 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cTt" = ( -/obj/machinery/door/window/southleft{ - dir = 1; - name = "Maximum Security Test Chamber"; - req_access_txt = "55" - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cTv" = ( -/obj/machinery/field/generator, -/turf/open/floor/plating, -/area/engineering/main) -"cTw" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/obj/item/storage/box/lights/mixed, -/turf/open/floor/plating, -/area/maintenance/starboard) -"cTz" = ( -/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, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cTA" = ( -/turf/open/floor/plating, -/area/maintenance/department/science/xenobiology) -"cTB" = ( -/obj/machinery/space_heater, -/turf/open/floor/plating, -/area/maintenance/department/science/xenobiology) -"cTC" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/department/science/xenobiology) -"cTD" = ( -/obj/structure/cable/yellow, -/obj/machinery/shieldwallgen/xenobiologyaccess, -/turf/open/floor/plating, -/area/science/xenobiology) -"cTE" = ( -/obj/structure/chair/wood/wings{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/service/theater) -"cTT" = ( -/obj/structure/disposalpipe/segment, -/turf/closed/wall/r_wall, -/area/science/xenobiology) -"cUm" = ( -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/turf/open/floor/wood{ - icon_state = "wood-broken6" - }, -/area/command/corporate_showroom) -"cUH" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark/side{ - dir = 1 - }, -/area/medical/surgery) -"cUL" = ( -/obj/docking_port/stationary/random{ - dir = 4; - id = "pod_lavaland4"; - name = "lavaland" - }, -/turf/open/space, -/area/space/nearstation) -"cUM" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/holopad, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cUN" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/effect/landmark/start/scientist, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cUZ" = ( -/obj/docking_port/stationary{ - dir = 8; - dwidth = 5; - height = 7; - id = "supply_home"; - name = "Cargo Bay"; - width = 12 - }, -/turf/open/space/basic, -/area/space) -"cVa" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cVd" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/item/radio/intercom{ - freerange = 1; - name = "Station Intercom (General)"; - pixel_x = -30 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"cVg" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/commons/locker) -"cVh" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/central) -"cVp" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/requests_console{ - department = "Atmospherics"; - departmentType = 4; - name = "Atmos RC"; - pixel_x = 30 - }, -/obj/machinery/vending/wardrobe/atmos_wardrobe, -/turf/open/floor/plasteel/dark/corner, -/area/engineering/atmos) -"cVx" = ( -/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) -"cVA" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/obj/effect/landmark/secequipment, -/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/security/office) -"cVF" = ( -/obj/machinery/holopad/secure{ - pixel_x = 15; - pixel_y = -15 - }, -/turf/open/floor/carpet, -/area/command/heads_quarters/captain/private) -"cVH" = ( -/obj/structure/table, -/obj/item/assembly/signaler, -/obj/item/assembly/signaler, -/obj/item/multitool, -/obj/item/multitool{ - pixel_x = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/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/commons/storage/primary) -"cVP" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/door/window{ - name = "MiniSat Walkway Access" - }, -/obj/machinery/camera{ - c_tag = "MiniSat Exterior - Aft Port"; - dir = 8; - network = list("minisat") - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/aisat/exterior) -"cWc" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/carpet, -/area/service/theater) -"cWn" = ( -/obj/machinery/door/airlock/atmos/glass{ - name = "Atmospherics Monitoring"; - req_access_txt = "24" - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"cWA" = ( -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"cWK" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/construction/mining/aux_base) -"cWM" = ( -/obj/machinery/door/airlock/external{ - name = "Construction Zone" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/turf/open/floor/plating, -/area/construction/mining/aux_base) -"cXc" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/easel, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"cXA" = ( -/turf/closed/wall/r_wall, -/area/security/checkpoint/engineering) -"cXE" = ( -/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/construction/mining/aux_base) -"cXI" = ( -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/starboard) -"cXR" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/construction/mining/aux_base) -"cXZ" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/starboard) -"cYc" = ( -/obj/structure/table/optable{ - name = "Robotics Operating Table" - }, -/obj/structure/extinguisher_cabinet{ - pixel_y = -30 - }, -/obj/machinery/camera{ - c_tag = "Robotics - Aft"; - dir = 1; - network = list("ss13","rd") - }, -/turf/open/floor/plasteel/white/side{ - dir = 1 - }, -/area/science/robotics/lab) -"cYg" = ( -/obj/structure/closet/crate{ - icon_state = "crateopen" - }, -/obj/item/stack/sheet/rglass{ - amount = 50 - }, -/obj/item/stack/sheet/metal/fifty, -/obj/item/stack/rods/fifty, -/obj/item/storage/toolbox/emergency, -/obj/item/flashlight, -/obj/machinery/power/apc/highcap/five_k{ - areastring = "/area/command/gateway"; - dir = 4; - name = "Gateway APC"; - pixel_x = 24 - }, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/turf/open/floor/plasteel{ - dir = 1 - }, -/area/command/gateway) -"cYj" = ( -/obj/structure/closet/firecloset, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/starboard) -"cYE" = ( -/obj/structure/closet/toolcloset, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/construction/mining/aux_base) -"cYG" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/construction/mining/aux_base) -"cYI" = ( -/obj/machinery/camera{ - c_tag = "Research Division Circuitry Lab"; - dir = 1; - network = list("ss13","rd") - }, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"cYJ" = ( -/obj/docking_port/stationary{ - dir = 2; - dwidth = 9; - height = 25; - id = "emergency_home"; - name = "MetaStation emergency evac bay"; - width = 29 - }, -/turf/open/space/basic, -/area/space) -"cYK" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/computer/security/telescreen{ - desc = "Used for the Auxillary Mining Base."; - dir = 1; - name = "Auxillary Base Monitor"; - network = list("auxbase"); - pixel_y = -28 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/construction/mining/aux_base) -"cYL" = ( -/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) -"cYP" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/machinery/door/airlock/engineering{ - name = "Auxillary Base Construction"; - req_one_access_txt = "32;47;48" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/construction/mining/aux_base) -"cYQ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall, -/area/construction/mining/aux_base) -"cYT" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cZa" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cZf" = ( -/obj/structure/chair, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"cZh" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"cZq" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"cZv" = ( -/turf/open/floor/circuit/telecomms, -/area/science/xenobiology) -"cZA" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/command/storage/eva) -"cZH" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 4 - }, -/turf/open/floor/plasteel/dark/corner{ - dir = 1 - }, -/area/engineering/atmos) -"cZN" = ( -/obj/structure/table, -/obj/machinery/cell_charger, -/obj/item/stock_parts/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/obj/machinery/light_switch{ - pixel_y = 28 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/storage/primary) -"cZV" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/green/visible, -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engineering/atmos) -"dal" = ( -/obj/machinery/status_display/evac{ - pixel_y = 32 - }, -/obj/item/folder/yellow{ - pixel_y = 4 - }, -/obj/machinery/camera{ - c_tag = "Bridge - Central" - }, -/obj/structure/table/glass, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/command/bridge) -"daA" = ( -/obj/machinery/door/window/southleft{ - name = "Maximum Security Test Chamber"; - req_access_txt = "55" - }, -/obj/machinery/door/poddoor/preopen{ - id = "Xenolab"; - name = "test chamber blast door" - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"daB" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible, -/turf/open/floor/engine, -/area/science/xenobiology) -"daC" = ( -/obj/structure/sign/warning/electricshock, -/turf/closed/wall/r_wall, -/area/science/xenobiology) -"daD" = ( -/obj/structure/disposaloutlet, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"daE" = ( -/obj/structure/table, -/obj/item/stack/sheet/metal{ - amount = 10 - }, -/obj/item/electropack, -/turf/open/floor/engine, -/area/science/xenobiology) -"daF" = ( -/obj/machinery/sparker{ - id = "Xenobio"; - pixel_x = -25 - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"daG" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/on{ - dir = 1 - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"daH" = ( -/obj/item/beacon, -/turf/open/floor/engine, -/area/science/xenobiology) -"daI" = ( -/obj/structure/table, -/obj/machinery/cell_charger{ - pixel_y = 5 - }, -/obj/item/stack/cable_coil, -/obj/item/multitool, -/obj/item/stock_parts/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"daJ" = ( -/obj/effect/spawner/lootdrop/two_percent_xeno_egg_spawner, -/turf/open/floor/engine, -/area/science/xenobiology) -"daK" = ( -/obj/machinery/camera{ - c_tag = "Xenobiology Lab - Test Chamber"; - dir = 1; - network = list("ss13","rd","xeno") - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"daL" = ( -/obj/machinery/light/small, -/turf/open/floor/engine, -/area/science/xenobiology) -"daM" = ( -/obj/structure/table, -/obj/item/assembly/igniter{ - pixel_x = -5; - pixel_y = 3 - }, -/obj/item/assembly/igniter{ - pixel_x = 5; - pixel_y = -4 - }, -/obj/item/assembly/igniter{ - pixel_x = 2; - pixel_y = 6 - }, -/obj/item/assembly/igniter{ - pixel_x = 2; - pixel_y = -1 - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"daN" = ( -/obj/item/radio/intercom{ - pixel_y = -25 - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"daO" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/department/science/xenobiology) -"daP" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 6 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/department/science/xenobiology) -"daQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"daR" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1; - external_pressure_bound = 140; - name = "server vent"; - pressure_checks = 0 - }, -/turf/open/floor/circuit/telecomms, -/area/science/xenobiology) -"daS" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/circuit/telecomms, -/area/science/xenobiology) -"daX" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, -/area/maintenance/port/fore) -"dbj" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"dbl" = ( -/obj/structure/easel, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"dbo" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Xenobiology Lab - Pen #3"; - dir = 4; - network = list("ss13","rd","xeno") - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"dbp" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Xenobiology Lab - Pen #4"; - dir = 8; - network = list("ss13","rd","xeno") - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"dbq" = ( -/mob/living/simple_animal/hostile/retaliate/goose, -/turf/open/floor/wood{ - icon_state = "wood-broken6" - }, -/area/maintenance/port/aft) -"dbr" = ( -/obj/machinery/camera{ - c_tag = "Morgue"; - network = list("ss13","medbay") - }, -/obj/structure/bodycontainer/morgue{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"dbs" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Xenobiology Lab - Pen #5"; - dir = 4; - network = list("ss13","rd","xeno") - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"dbt" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Xenobiology Lab - Pen #6"; - dir = 8; - network = list("ss13","rd","xeno") - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"dbv" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/light/small, -/turf/open/floor/circuit/telecomms, -/area/science/xenobiology) -"dbw" = ( -/obj/machinery/camera{ - c_tag = "Xenobiology Lab - Kill Chamber"; - dir = 1; - network = list("ss13","rd","xeno"); - start_active = 1 - }, -/turf/open/floor/circuit/telecomms, -/area/science/xenobiology) -"dbG" = ( -/obj/machinery/power/apc{ - areastring = "/area/science/circuit"; - dir = 1; - name = "Circuitry Lab APC"; - pixel_y = 23 - }, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/structure/table/reinforced, -/obj/item/multitool, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"dbH" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/machinery/door/airlock/research{ - id_tag = "ResearchInt"; - name = "Research Division"; - req_one_access_txt = "47" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/research) -"dbI" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/machinery/door/airlock/research{ - id_tag = "ResearchInt"; - name = "Research Division"; - req_one_access_txt = "47" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/research) -"dbN" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/aft) -"dbP" = ( -/obj/machinery/door/airlock/external{ - name = "Solar Maintenance"; - req_access_txt = "10; 13" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/aft) -"dbQ" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/aft) -"dbX" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"dbY" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"dbZ" = ( -/obj/machinery/doorButtons/access_button{ - idDoor = "xeno_airlock_interior"; - idSelf = "xeno_airlock_control"; - name = "Access Button"; - pixel_x = 29; - pixel_y = -8 - }, -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"dca" = ( -/obj/machinery/firealarm{ - pixel_y = 26 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"dcb" = ( -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/machinery/camera{ - c_tag = "Xenobiology Lab - Fore"; - network = list("ss13","rd") - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"dcd" = ( -/obj/structure/table/glass, -/obj/item/paper_bin{ - pixel_y = 4 - }, -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/pen{ - pixel_x = -4 - }, -/obj/machinery/requests_console{ - department = "Science"; - departmentType = 2; - name = "Science Requests Console"; - pixel_y = 30; - receive_ore_updates = 1 - }, -/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) -"dce" = ( -/obj/structure/table/glass, -/obj/item/storage/box/monkeycubes{ - pixel_x = 2; - pixel_y = -2 - }, -/obj/item/storage/box/monkeycubes, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"dcf" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/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) -"dcg" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/shower{ - dir = 4 - }, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_x = -29 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"dch" = ( -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"dci" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"dcj" = ( -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/locked, -/obj/machinery/door/airlock/research{ - autoclose = 0; - frequency = 1449; - id_tag = "xeno_airlock_interior"; - name = "Xenobiology Lab Internal Airlock"; - req_access_txt = "55" - }, -/obj/structure/cable/yellow{ - 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, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"dck" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/doorButtons/airlock_controller{ - idExterior = "xeno_airlock_exterior"; - idInterior = "xeno_airlock_interior"; - idSelf = "xeno_airlock_control"; - name = "Access Console"; - pixel_x = -25; - pixel_y = -25 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"dcl" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"dcm" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/computer/camera_advanced/xenobio, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"dcn" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/machinery/smartfridge/extract/preloaded, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"dco" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/obj/machinery/computer/camera_advanced/xenobio, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"dcp" = ( -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"dcq" = ( -/obj/structure/chair/office/light{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"dcr" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"dcs" = ( -/obj/structure/closet/emcloset, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/machinery/camera{ - c_tag = "Xenobiology Lab - Airlock"; - dir = 4; - network = list("ss13","rd") - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"dct" = ( -/obj/structure/closet/l3closet/scientist, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"dcu" = ( -/obj/structure/closet/l3closet/scientist, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"dcv" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/structure/chair/comfy/black{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"dcw" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"dcx" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/chair/comfy/black{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"dcy" = ( -/obj/machinery/holopad, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"dcz" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/science/xenobiology) -"dcA" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"dcB" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"dcC" = ( -/obj/structure/chair/office/light, -/obj/effect/landmark/start/scientist, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"dcD" = ( -/obj/machinery/reagentgrinder{ - pixel_x = -1; - pixel_y = 8 - }, -/obj/structure/table/glass, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"dcE" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/on{ - dir = 4 - }, -/turf/open/floor/plating/airless, -/area/science/xenobiology) -"dcG" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"dcH" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"dcI" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"dcJ" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/item/extinguisher{ - pixel_x = 4; - pixel_y = 3 - }, -/obj/item/extinguisher, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"dcK" = ( -/obj/machinery/disposal/bin, -/obj/structure/sign/warning/deathsposal{ - pixel_y = -32 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"dcL" = ( -/obj/machinery/light, -/obj/structure/table/glass, -/obj/item/storage/box/beakers{ - pixel_x = 2; - pixel_y = 7 - }, -/obj/item/storage/box/syringes{ - pixel_y = 5 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"dcM" = ( -/obj/machinery/chem_master, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -29 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"dcN" = ( -/obj/machinery/chem_heater, -/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/xenobiology) -"dcO" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/machinery/camera{ - c_tag = "Xenobiology Lab - Central"; - dir = 8; - network = list("ss13","rd") - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"dcP" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio2"; - name = "containment blast door" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/science/xenobiology) -"dcQ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"dcR" = ( -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio7"; - name = "containment blast door" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/science/xenobiology) -"dcS" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/structure/cable/yellow, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio7"; - name = "containment blast door" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/science/xenobiology) -"dcT" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"dcU" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio1"; - name = "containment blast door" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/science/xenobiology) -"dcV" = ( -/obj/structure/window/reinforced, -/obj/machinery/button/door{ - id = "xenobio6"; - name = "Containment Blast Doors"; - pixel_y = 4; - req_access_txt = "55" - }, -/obj/structure/table/reinforced, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"dcW" = ( -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio6"; - name = "containment blast door" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/science/xenobiology) -"dcX" = ( -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/structure/cable/yellow, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio1"; - name = "containment blast door" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/science/xenobiology) -"dcY" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"dcZ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"dda" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"ddb" = ( -/obj/structure/cable/yellow, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio6"; - name = "containment blast door" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/science/xenobiology) -"ddc" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"ddd" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"dde" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating, -/area/maintenance/department/science/xenobiology) -"ddf" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Xenobiology Lab - Aft-Port"; - dir = 4; - network = list("ss13","rd") - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/canister/bz, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"ddg" = ( -/obj/machinery/portable_atmospherics/canister, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Xenobiology Lab - Aft-Starboard"; - dir = 8; - network = list("ss13","rd") - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"ddh" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/department/science/xenobiology) -"ddi" = ( -/obj/structure/rack, -/turf/open/floor/plating, -/area/maintenance/department/science/xenobiology) -"ddj" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, -/area/maintenance/department/science/xenobiology) -"ddk" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"ddl" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/general/visible, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -29 - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"ddm" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"ddn" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"ddo" = ( -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"ddp" = ( -/obj/machinery/door/airlock/hatch{ - name = "Test Chamber Maintenance"; - req_access_txt = "47" - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/science/xenobiology) -"ddq" = ( -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/turf/open/floor/plating, -/area/maintenance/department/science/xenobiology) -"ddr" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating, -/area/maintenance/department/science/xenobiology) -"dds" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"ddt" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/department/science/xenobiology) -"ddu" = ( -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/machinery/door/poddoor/preopen{ - id = "Xenolab"; - name = "test chamber blast door" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/science/xenobiology) -"ddv" = ( -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/machinery/door/poddoor/preopen{ - id = "Xenolab"; - name = "test chamber blast door" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/science/xenobiology) -"ddx" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/chair, -/obj/item/cigbutt, -/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"ddy" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/department/science/xenobiology) -"ddz" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/cyan/visible, -/turf/open/floor/plating, -/area/science/xenobiology) -"ddA" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research{ - glass = 1; - name = "Slime Euthanization Chamber"; - opacity = 0; - req_access_txt = "55" - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"ddB" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{ - dir = 1; - external_pressure_bound = 120; - name = "server vent" - }, -/turf/open/floor/circuit/telecomms, -/area/science/xenobiology) -"ddC" = ( -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/structure/disposaloutlet, -/turf/open/floor/plating/airless, -/area/science/xenobiology) -"dfw" = ( -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=8"; - dir = 8; - freq = 1400; - location = "QM #2" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/cargo/storage) -"dgc" = ( -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"dgd" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple, -/turf/open/space, -/area/space/nearstation) -"dge" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/space/nearstation) -"dgf" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 6 - }, -/turf/open/space, -/area/space/nearstation) -"dgg" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 6 - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/space/nearstation) -"dgh" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 6 - }, -/obj/structure/lattice, -/turf/open/space, -/area/space/nearstation) -"dgi" = ( -/obj/machinery/atmospherics/pipe/simple/orange/visible, -/turf/open/floor/plating, -/area/maintenance/starboard) -"dgj" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 5 - }, -/obj/structure/lattice, -/turf/open/space, -/area/space/nearstation) -"dgk" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple, -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 4 - }, -/obj/structure/lattice, -/turf/open/space, -/area/space/nearstation) -"dgm" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/heat_exchanging/simple, -/obj/structure/lattice, -/turf/open/space, -/area/space/nearstation) -"dgo" = ( -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"dgp" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"dgr" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 10 - }, -/turf/open/space, -/area/space/nearstation) -"dgt" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple, -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 4 - }, -/turf/open/space, -/area/space/nearstation) -"dgu" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/heat_exchanging/simple, -/turf/open/space, -/area/space/nearstation) -"dgv" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 9 - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/space/nearstation) -"dgw" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/orange/visible, -/turf/open/space, -/area/space/nearstation) -"dgy" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/turf/open/floor/wood, -/area/service/lawoffice) -"dgA" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/simple/orange/visible, -/turf/open/space, -/area/space/nearstation) -"dgB" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 5 - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/space/nearstation) -"dgI" = ( -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 5 - }, -/turf/open/space, -/area/space/nearstation) -"dgJ" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 4 - }, -/turf/open/space, -/area/space/nearstation) -"dgK" = ( -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 4 - }, -/turf/open/space, -/area/space/nearstation) -"dgM" = ( -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 10 - }, -/turf/open/space, -/area/space/nearstation) -"dgN" = ( -/obj/structure/lattice, -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/orange/visible, -/turf/open/space, -/area/space/nearstation) -"dgO" = ( -/obj/machinery/atmospherics/pipe/simple/orange/visible, -/turf/open/space, -/area/space/nearstation) -"dgS" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/transit_tube/horizontal, -/obj/machinery/atmospherics/pipe/simple/orange/visible, -/turf/open/space, -/area/space/nearstation) -"dha" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/orange/visible, -/turf/open/space, -/area/space/nearstation) -"dhc" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/yellow/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/orange/visible, -/turf/open/space, -/area/space/nearstation) -"dhl" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 9 - }, -/turf/open/space, -/area/space/nearstation) -"dhm" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall, -/area/commons/fitness/recreation) -"dhn" = ( -/obj/structure/table, -/obj/item/poster/random_contraband, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/fore) -"dho" = ( -/obj/item/stack/sheet/cardboard, -/obj/structure/light_construct/small{ - dir = 1 - }, -/obj/structure/closet/crate, -/obj/item/coin/silver, -/obj/item/grenade/chem_grenade, -/obj/item/storage/box/lights/mixed, -/obj/item/watertank, -/obj/item/storage/box/donkpockets, -/obj/item/poster/random_contraband, -/obj/item/poster/random_contraband, -/obj/item/poster/random_contraband, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"dhq" = ( -/obj/structure/table/reinforced, -/obj/structure/light_construct/small{ - dir = 8 - }, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/structure/window/reinforced, -/obj/item/poster/random_official, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"dhr" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/poster/contraband/random{ - pixel_y = 32 - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"dht" = ( -/obj/item/cigbutt, -/obj/structure/sign/poster/contraband/random{ - pixel_x = -32 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"dhu" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/structure/sign/poster/contraband/random{ - pixel_y = 32 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"dhv" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/westleft{ - base_state = "right"; - dir = 4; - icon_state = "right"; - name = "Outer Window" - }, -/obj/machinery/door/window/brigdoor{ - dir = 8; - name = "Brig Control Desk"; - req_access_txt = "3" - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/item/folder/red, -/obj/item/folder/red, -/obj/item/poster/random_official, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"dhw" = ( -/obj/structure/closet, -/obj/item/poster/random_contraband, -/obj/item/poster/random_contraband, -/obj/item/poster/random_contraband, -/obj/item/poster/random_contraband, -/obj/item/poster/random_contraband, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"dhx" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/sign/poster/contraband/random{ - pixel_y = 32 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"dhz" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/poster/contraband/random{ - pixel_y = 32 - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"dhB" = ( -/obj/item/clothing/glasses/meson, -/obj/structure/closet/crate, -/obj/item/poster/random_contraband, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"dhE" = ( -/obj/structure/sign/poster/contraband/random{ - pixel_x = 32 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"dhH" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/spawner/lootdrop/maintenance, -/obj/structure/sign/poster/contraband/random{ - pixel_x = -32 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"dhK" = ( -/obj/structure/closet, -/obj/item/poster/random_contraband, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"dhM" = ( -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = 21 - }, -/obj/structure/sign/poster/official/random{ - pixel_x = 32 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/cafeteria, -/area/hallway/secondary/entry) -"dhN" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/sign/poster/contraband/random{ - pixel_y = 32 - }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/starboard/fore) -"dhO" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/sign/poster/contraband/random{ - pixel_x = -32 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"dhP" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/sign/poster/official/random{ - pixel_y = 32 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"dhQ" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/structure/sign/poster/contraband/random{ - pixel_x = 32 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"dhR" = ( -/obj/structure/closet, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/item/poster/random_contraband, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/port) -"dic" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/sign/poster/official/random{ - pixel_x = 32 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/white/corner, -/area/hallway/secondary/entry) -"dig" = ( -/obj/item/kirbyplants{ - icon_state = "plant-03" - }, -/turf/open/floor/plasteel/grimy, -/area/hallway/primary/port) -"dio" = ( -/obj/structure/closet/crate, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/item/poster/random_official, -/turf/open/floor/plating, -/area/maintenance/port) -"dit" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/sign/poster/contraband/random{ - pixel_y = 32 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating, -/area/maintenance/port) -"diu" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/item/storage/box/lights/mixed, -/obj/structure/sign/poster/contraband/random{ - pixel_y = 32 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"div" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/poster/contraband/random{ - pixel_y = 32 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating, -/area/maintenance/port) -"dix" = ( -/obj/structure/rack, -/obj/item/poster/random_contraband, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/port) -"diy" = ( -/obj/structure/closet/secure_closet/freezer/kitchen/maintenance, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"diA" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/sign/poster/contraband/random{ - pixel_x = 32 - }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/starboard/aft) -"diB" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/poster/contraband/random{ - pixel_y = 32 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"diC" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/sign/poster/contraband/random{ - pixel_y = 32 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"diD" = ( -/obj/machinery/vending/cigarette, -/obj/machinery/status_display/evac{ - pixel_y = 32 - }, -/obj/structure/sign/poster/official/random{ - pixel_x = 32 - }, -/turf/open/floor/plasteel/white/side{ - dir = 4 - }, -/area/science/research) -"diE" = ( -/obj/structure/rack, -/obj/item/reagent_containers/food/drinks/bottle/vodka{ - pixel_x = 3; - pixel_y = 2 - }, -/obj/item/reagent_containers/food/drinks/bottle/vermouth{ - pixel_x = -4; - pixel_y = 3 - }, -/obj/item/reagent_containers/food/drinks/bottle/whiskey, -/obj/structure/sign/poster/contraband/random{ - pixel_y = 32 - }, -/turf/open/floor/wood, -/area/maintenance/port/aft) -"diF" = ( -/obj/structure/chair/stool, -/obj/structure/sign/poster/contraband/random{ - pixel_y = 32 - }, -/turf/open/floor/wood, -/area/maintenance/port/aft) -"diG" = ( -/obj/structure/chair/stool, -/obj/structure/sign/poster/contraband/random{ - pixel_x = 32 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/port/aft) -"diH" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/obj/machinery/portable_atmospherics/canister/air, -/obj/structure/sign/poster/contraband/random{ - pixel_x = 32 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"diI" = ( -/obj/item/poster/random_contraband, -/obj/item/poster/random_contraband, -/obj/item/poster/random_contraband, -/obj/item/poster/random_contraband, -/obj/item/poster/random_contraband, -/obj/item/reagent_containers/food/drinks/beer{ - pixel_x = -3; - pixel_y = 2 - }, -/obj/item/reagent_containers/food/drinks/ale, -/obj/structure/table/wood, -/obj/item/instrument/eguitar, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/sign/poster/contraband/random{ - pixel_x = 32 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"diJ" = ( -/obj/structure/light_construct/small, -/obj/structure/table/wood/poker, -/obj/item/toy/cards/deck, -/obj/structure/sign/poster/contraband/random{ - pixel_y = -32 - }, -/turf/open/floor/wood, -/area/maintenance/port/aft) -"diK" = ( -/obj/item/dice/d20, -/obj/item/dice, -/obj/structure/table/wood, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/sign/poster/contraband/random{ - pixel_y = -32 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"diL" = ( -/obj/item/tank/internals/air, -/obj/item/tank/internals/air, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/machinery/space_heater, -/obj/effect/spawner/lootdrop/maintenance, -/obj/structure/sign/poster/contraband/random{ - pixel_x = 32 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"diM" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"diN" = ( -/obj/structure/chair/stool, -/obj/structure/sign/poster/official/random{ - pixel_y = -32 - }, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/medical/medbay/aft) -"diP" = ( -/obj/structure/sign/poster/contraband/random{ - pixel_y = -32 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"diQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/structure/sign/poster/contraband/random{ - pixel_y = 32 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, -/area/maintenance/aft) -"diR" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/item/stack/ore/slag, -/turf/open/floor/plating, -/area/maintenance/aft) -"diS" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/item/storage/box/lights/mixed, -/turf/open/floor/plating, -/area/maintenance/aft) -"diT" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/sign/poster/contraband/random{ - pixel_y = 32 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"diU" = ( -/obj/structure/closet/crate, -/obj/item/poster/random_official, -/obj/effect/spawner/lootdrop/maintenance, -/obj/effect/landmark/blobstart, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"diV" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Departure Lounge - Port Fore"; - dir = 4 - }, -/obj/item/kirbyplants{ - icon_state = "plant-24" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/sign/poster/official/random{ - pixel_x = -32 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"diW" = ( -/obj/machinery/hydroponics/soil{ - pixel_y = 8 - }, -/obj/item/seeds/glowshroom, -/obj/item/seeds/corn, -/obj/effect/turf_decal/stripes/line, -/obj/structure/sign/poster/contraband/random{ - pixel_y = 32 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"djg" = ( -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"djh" = ( -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"djs" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/science/xenobiology) -"djz" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/machinery/door/airlock/external{ - name = "Arrival Airlock" - }, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"djB" = ( -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/effect/landmark/observer_start, -/obj/effect/turf_decal/plaque{ - icon_state = "L8" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"djC" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/machinery/door/airlock/external{ - name = "Arrival Airlock" - }, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"djM" = ( -/obj/docking_port/stationary{ - dir = 8; - dwidth = 3; - height = 15; - id = "arrivals_stationary"; - name = "arrivals"; - roundstart_template = /datum/map_template/shuttle/arrival/box; - width = 7 - }, -/turf/open/space/basic, -/area/space) -"djS" = ( -/turf/closed/wall, -/area/service/hydroponics) -"djW" = ( -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plasteel, -/area/maintenance/port) -"dka" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 6 - }, -/turf/open/space, -/area/space/nearstation) -"dkh" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/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/commons/fitness/recreation) -"dkr" = ( -/obj/machinery/vending/cigarette, -/obj/structure/sign/poster/official/random{ - pixel_x = 32 - }, -/turf/open/floor/plating, -/area/commons/toilet/auxiliary) -"dkX" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/locker) -"dlf" = ( -/obj/effect/turf_decal/bot_white/left, -/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/command/nuke_storage) -"dlo" = ( -/obj/structure/cable/yellow{ - 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/engineering/storage/tech) -"dlA" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/service/janitor) -"dlD" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/open/space, -/area/solars/starboard/aft) -"dlF" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/engineering/atmos) -"dlG" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/poddoor/preopen{ - id = "hosprivacy"; - name = "privacy shutters" - }, -/turf/open/floor/plating, -/area/command/heads_quarters/hos) -"dlV" = ( -/turf/closed/wall/r_wall, -/area/maintenance/department/science/xenobiology) -"dmm" = ( -/obj/structure/table/reinforced, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/pen, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/command/heads_quarters/ce) -"dmq" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/obj/machinery/door/airlock/research{ - glass = 1; - name = "Slime Euthanization Chamber"; - opacity = 0; - req_access_txt = "55" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"dmr" = ( -/obj/machinery/door/airlock/research{ - glass = 1; - name = "Slime Euthanization Chamber"; - opacity = 0; - req_access_txt = "55" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"dmL" = ( -/obj/machinery/light/small, -/obj/item/toy/dummy, -/obj/item/toy/prize/honk{ - pixel_y = 12 - }, -/obj/structure/table/wood, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -29 - }, -/turf/open/floor/wood, -/area/service/theater) -"dmS" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/commons/locker) -"dna" = ( -/obj/structure/table/wood, -/obj/item/reagent_containers/food/snacks/grown/harebell, -/obj/item/reagent_containers/food/snacks/grown/harebell, -/obj/item/reagent_containers/food/snacks/grown/harebell, -/obj/item/reagent_containers/food/snacks/grown/harebell, -/obj/item/reagent_containers/food/snacks/grown/harebell, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/service/chapel/main) -"dnd" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"dne" = ( -/turf/closed/wall, -/area/maintenance/port/fore) -"dnh" = ( -/turf/closed/wall, -/area/maintenance/starboard/fore) -"dni" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"dnk" = ( -/obj/structure/grille, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"dnu" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"dnz" = ( -/obj/machinery/space_heater, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"dnF" = ( -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/port/fore) -"dnG" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"dnM" = ( -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"dnO" = ( -/obj/machinery/space_heater, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"dnP" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"dnR" = ( -/obj/structure/grille, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"dnS" = ( -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"dnZ" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/port/fore) -"dod" = ( -/obj/item/cigbutt, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"doe" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"doh" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, -/area/maintenance/starboard/fore) -"doj" = ( -/obj/structure/table/glass, -/obj/item/stack/sheet/mineral/plasma{ - pixel_y = 4 - }, -/obj/item/stack/sheet/mineral/plasma{ - pixel_y = 4 - }, -/obj/item/stack/sheet/mineral/plasma{ - pixel_y = 4 - }, -/obj/item/stack/sheet/mineral/plasma{ - pixel_y = 4 - }, -/obj/item/reagent_containers/glass/beaker{ - pixel_x = 8; - pixel_y = 2 - }, -/obj/item/reagent_containers/glass/beaker/large{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/reagent_containers/dropper, -/obj/machinery/power/apc/highcap/ten_k{ - areastring = "/area/science/xenobiology"; - dir = 1; - name = "Xenobiology APC"; - pixel_y = 23 - }, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"dou" = ( -/obj/machinery/space_heater, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"dox" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/engine/vacuum, -/area/engineering/atmos) -"doA" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"doJ" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"doX" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/landmark/start/cargo_technician, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/cargo/storage) -"dpk" = ( -/obj/item/cigbutt, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"dpm" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"dps" = ( -/obj/machinery/space_heater, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/starboard/fore) -"dpy" = ( -/obj/machinery/power/apc/highcap/five_k{ - areastring = "/area/security/prison"; - dir = 1; - name = "Prison Wing APC"; - pixel_x = 1; - pixel_y = 23 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/machinery/camera{ - c_tag = "Prison Hallway Starboard"; - network = list("ss13","prison") - }, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel, -/area/security/prison) -"dpF" = ( -/obj/machinery/power/apc/highcap/five_k{ - areastring = "/area/service/bar"; - dir = 1; - name = "Bar APC"; - pixel_y = 23 - }, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -27 - }, -/turf/open/floor/wood, -/area/service/bar) -"dpG" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"dpL" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/starboard/fore) -"dpM" = ( -/obj/machinery/door/morgue{ - name = "Private Study"; - req_access_txt = "37" - }, -/turf/open/floor/engine/cult, -/area/service/library) -"dqe" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"dqn" = ( -/obj/effect/landmark/barthpot, -/turf/open/floor/wood{ - icon_state = "wood-broken7" - }, -/area/service/library) -"dqo" = ( -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_x = 30 - }, -/obj/machinery/photocopier, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/wood, -/area/service/library) -"dqp" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/starboard/fore) -"dqu" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"dqy" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/construction/storage_wing) -"dqE" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/engine, -/area/engineering/main) -"dqT" = ( -/turf/closed/wall/r_wall, -/area/maintenance/starboard/fore) -"dqU" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/machinery/vending/coffee, -/turf/open/floor/plasteel, -/area/science/mixing) -"drM" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/construction/storage_wing) -"drQ" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, -/area/maintenance/port/fore) -"drT" = ( -/obj/structure/table/wood, -/obj/machinery/newscaster/security_unit{ - pixel_y = 32 - }, -/obj/item/folder/red, -/obj/item/folder/red, -/obj/machinery/keycard_auth{ - pixel_x = -26; - pixel_y = 23 - }, -/obj/machinery/button/door{ - id = "hosspace"; - name = "Space Shutters Control"; - pixel_x = -26; - pixel_y = 34 - }, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/hos) -"dsd" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/locker) -"dsg" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"dss" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"dst" = ( -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/structure/closet/emcloset, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"dsL" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/engineering/main) -"dti" = ( -/obj/item/beacon, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/dark, -/area/command/bridge) -"dtj" = ( -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/obj/machinery/holopad/secure, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/aisat/exterior) -"dtk" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/button/door{ - id = "atmos"; - name = "Atmospherics Lockdown"; - pixel_x = 26; - pixel_y = -26; - req_access_txt = "24" - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"dtl" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"dtw" = ( -/obj/structure/chair/comfy/black{ - dir = 4 - }, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/plasteel/chapel{ - dir = 1 - }, -/area/service/chapel/main) -"dtE" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"dtF" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/obj/structure/cable/yellow{ - 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/office) -"dtL" = ( -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"dtM" = ( -/obj/structure/closet/toolcloset, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/engineering/main) -"dtO" = ( -/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/command/bridge) -"dtP" = ( -/obj/structure/cable/yellow{ - 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 = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"dtR" = ( -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"dtS" = ( -/obj/item/cigbutt, -/obj/machinery/power/apc{ - areastring = "/area/maintenance/starboard/fore"; - name = "Starboard Bow Maintenance APC"; - pixel_y = -28 - }, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"duo" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"dur" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/sorting/mail{ - sortType = 5 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plasteel, -/area/engineering/main) -"dux" = ( -/turf/closed/wall, -/area/maintenance/port/aft) -"duF" = ( -/turf/open/floor/engine/o2, -/area/engineering/atmos) -"duH" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"duS" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/structure/mirror{ - pixel_x = 28 - }, -/turf/open/floor/plasteel/freezer, -/area/commons/toilet/restrooms) -"duX" = ( -/obj/machinery/door/airlock{ - id_tag = "FitnessShower"; - name = "Fitness Room Shower" - }, -/turf/open/floor/plasteel/freezer, -/area/commons/fitness/recreation) -"dvg" = ( -/obj/structure/chair/office/light{ - dir = 8 - }, -/obj/effect/landmark/start/research_director, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/command/heads_quarters/rd) -"dvk" = ( -/obj/machinery/recharge_station, -/obj/machinery/status_display/evac{ - pixel_y = 32 - }, -/obj/structure/cable/yellow{ - 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/ai_monitored/command/storage/satellite) -"dvq" = ( -/obj/machinery/space_heater, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"dvt" = ( -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/port/aft) -"dvw" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"dvD" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/service/bar) -"dvE" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"dvY" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"dwb" = ( -/obj/structure/cable/yellow{ - 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/port/aft) -"dwc" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/sign/poster/contraband/random{ - pixel_y = 32 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"dwe" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"dwi" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/power/apc{ - areastring = "/area/medical/surgery"; - name = "Surgery APC"; - pixel_y = -26 - }, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"dwj" = ( -/obj/structure/cable/yellow{ - 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/port/aft) -"dwv" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"dww" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"dwL" = ( -/turf/closed/wall/r_wall, -/area/maintenance/starboard/aft) -"dwQ" = ( -/obj/structure/chair/stool, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"dwW" = ( -/obj/machinery/atmospherics/pipe/manifold/purple/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"dwX" = ( -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/starboard/aft) -"dwY" = ( -/obj/effect/landmark/blobstart, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"dxa" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/door/window/eastright{ - dir = 1; - name = "Kitchen Delivery"; - req_access_txt = "28" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/service/kitchen) -"dxh" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"dxj" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/service/chapel/main) -"dxk" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"dxr" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"dxv" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/port/aft) -"dxQ" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"dyc" = ( -/obj/structure/grille, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"dyg" = ( -/obj/structure/cable/yellow{ - 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/port/aft) -"dyj" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/port/aft) -"dyl" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/commons/storage/primary) -"dyp" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/circuit) -"dyw" = ( -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"dzc" = ( -/obj/machinery/space_heater, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"dzl" = ( -/obj/machinery/light_switch{ - pixel_x = -23 - }, -/obj/machinery/computer/cargo{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/qm) -"dzx" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/wood, -/area/service/lawoffice) -"dzI" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"dzK" = ( -/turf/closed/wall/r_wall, -/area/maintenance/port/aft) -"dzN" = ( -/obj/structure/table/reinforced, -/obj/machinery/cell_charger, -/obj/item/stock_parts/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/obj/item/rcl/pre_loaded, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/command/heads_quarters/ce) -"dzO" = ( -/obj/structure/table, -/obj/item/reagent_containers/food/snacks/grown/wheat, -/obj/item/reagent_containers/food/snacks/grown/watermelon, -/obj/item/reagent_containers/food/snacks/grown/citrus/orange, -/obj/item/reagent_containers/food/snacks/grown/grapes, -/obj/item/reagent_containers/food/snacks/grown/cocoapod, -/obj/item/reagent_containers/food/snacks/grown/apple, -/obj/item/reagent_containers/food/snacks/grown/chili, -/obj/item/reagent_containers/food/snacks/grown/cherries, -/obj/item/reagent_containers/food/snacks/grown/soybeans, -/obj/item/reagent_containers/food/snacks/grown/citrus/lime, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics/garden) -"dzQ" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"dAc" = ( -/obj/structure/table, -/obj/machinery/cell_charger, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/obj/item/stock_parts/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/storage/tech) -"dAd" = ( -/obj/machinery/power/apc/highcap/five_k{ - areastring = "/area/maintenance/starboard/aft"; - name = "Starboard Quarter Maintenance APC"; - pixel_y = -24 - }, -/obj/structure/cable/yellow, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"dAh" = ( -/obj/item/storage/box, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"dAn" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/external{ - req_access_txt = "13" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"dAp" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/starboard/aft) -"dAw" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/maintenance{ - req_one_access_txt = "12;47" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"dAx" = ( -/obj/structure/cable/yellow{ - 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/starboard/aft) -"dAU" = ( -/turf/open/floor/plasteel/grimy, -/area/service/chapel/office) -"dAX" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"dAZ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"dBe" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/starboard/aft) -"dBf" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/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/white, -/area/medical/treatment_center) -"dBg" = ( -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/open/floor/carpet, -/area/service/theater) -"dBF" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/turf/open/floor/plating, -/area/security/brig) -"dBG" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/security/brig) -"dBH" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/turf/open/floor/plating, -/area/security/brig) -"dBN" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/turf/open/floor/plating, -/area/medical/virology) -"dBO" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/mob/living/carbon/monkey, -/turf/open/floor/plasteel/freezer, -/area/medical/virology) -"dBS" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"dBT" = ( -/obj/effect/spawner/structure/window, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/medical/virology) -"dBU" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/medical/virology) -"dBV" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow, -/turf/open/floor/plating, -/area/medical/virology) -"dBX" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"dBZ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/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/security/warden) -"dCa" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/security/warden) -"dCe" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating, -/area/maintenance/fore) -"dCf" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"dCg" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"dCh" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"dCi" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/starboard/fore) -"dCj" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/security/brig) -"dCl" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"dCo" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"dCp" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, -/area/maintenance/fore) -"dCq" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/security/courtroom) -"dCr" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"dCs" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"dCx" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/port/fore) -"dCz" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/dark, -/area/security/courtroom) -"dCC" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"dCD" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"dCE" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"dCH" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"dCI" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"dCJ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"dCM" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet{ - pixel_y = -30 - }, -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"dCN" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"dCT" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"dCV" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating, -/area/maintenance/starboard) -"dCW" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating, -/area/maintenance/port) -"dDa" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"dDd" = ( -/obj/structure/table, -/obj/item/reagent_containers/food/condiment/saltshaker{ - pixel_x = -3 - }, -/obj/item/reagent_containers/food/condiment/peppermill{ - pixel_x = 3 - }, -/obj/item/kitchen/rollingpin, -/obj/machinery/camera{ - c_tag = "Kitchen"; - dir = 1 - }, -/turf/open/floor/plasteel/cafeteria, -/area/service/kitchen) -"dDj" = ( -/obj/structure/cable, -/obj/machinery/power/solar{ - id = "foreport"; - name = "Fore-Port Solar Array" - }, -/turf/open/floor/plasteel/airless/solarpanel, -/area/solars/port/fore) -"dDo" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"dDp" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/white, -/area/science/research) -"dDq" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"dDr" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"dDs" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating, -/area/maintenance/starboard) -"dDu" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/landmark/event_spawn, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"dDv" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"dDw" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"dDy" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/white, -/area/science/research) -"dDz" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/circuit, -/area/science/robotics/mechbay) -"dDA" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/landmark/event_spawn, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"dDB" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"dDC" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"dDE" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"dDF" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"dDG" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"dDI" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"dDJ" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/construction/mining/aux_base) -"dDK" = ( -/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/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/construction/mining/aux_base) -"dDL" = ( -/obj/machinery/door/airlock/maintenance/abandoned{ - name = "Storage Room"; - req_access_txt = "12" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"dEQ" = ( -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"dFc" = ( -/obj/machinery/door/airlock{ - name = "Bar Storage"; - req_access_txt = "25" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/wood, -/area/service/bar) -"dFh" = ( -/obj/machinery/suit_storage_unit/cmo, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/cafeteria, -/area/command/heads_quarters/cmo) -"dFX" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/structure/sign/warning/vacuum/external{ - pixel_y = -32 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/break_room) -"dGD" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/junction, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/engineering/main) -"dGH" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"dGJ" = ( -/obj/machinery/status_display/ai{ - pixel_y = 32 - }, -/obj/machinery/computer/station_alert, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/ce) -"dHR" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"dHX" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 6 - }, -/turf/open/floor/plating, -/area/engineering/atmos) -"dIl" = ( -/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/structure/table, -/obj/item/storage/toolbox/mechanical{ - pixel_x = -2; - pixel_y = -1 - }, -/obj/item/storage/toolbox/mechanical{ - pixel_x = -2; - pixel_y = -1 - }, -/obj/machinery/power/apc{ - areastring = "/area/ai_monitored/command/storage/eva"; - dir = 8; - name = "E.V.A. Storage APC"; - pixel_x = -25 - }, -/obj/structure/cable/yellow{ - icon_state = "0-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/command/storage/eva) -"dIo" = ( -/obj/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/machinery/light/small, -/obj/machinery/camera{ - c_tag = "MiniSat Exterior Access"; - dir = 1; - network = list("minisat") - }, -/obj/machinery/power/apc{ - areastring = "/area/ai_monitored/aisat/exterior"; - name = "MiniSat Exterior APC"; - pixel_y = -24 - }, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/aisat/exterior) -"dIG" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/command/teleporter) -"dIY" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/ai_monitored/command/storage/eva) -"dJE" = ( -/obj/structure/table, -/obj/item/stack/sheet/metal/fifty, -/obj/item/stack/sheet/metal/fifty, -/obj/item/storage/box/lights/mixed, -/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/commons/storage/tools) -"dKg" = ( -/obj/machinery/photocopier, -/obj/machinery/camera{ - c_tag = "Law Office"; - dir = 8 - }, -/turf/open/floor/wood, -/area/service/lawoffice) -"dKy" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/commons/dorms) -"dKP" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/miningoffice) -"dKV" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"dLe" = ( -/obj/structure/table, -/obj/machinery/power/apc{ - areastring = "/area/medical/morgue"; - dir = 4; - name = "Morgue APC"; - pixel_x = 24 - }, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/item/clothing/gloves/color/latex, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"dLm" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/closed/wall/r_wall, -/area/engineering/gravity_generator) -"dLs" = ( -/obj/item/stack/cable_coil, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solars/port/aft) -"dLC" = ( -/obj/structure/closet/crate, -/obj/item/stack/sheet/rglass{ - amount = 50 - }, -/obj/item/stack/sheet/metal/fifty, -/obj/item/storage/toolbox/emergency, -/obj/item/flashlight, -/obj/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/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/command/teleporter) -"dLK" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"dMm" = ( -/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/cargo/storage) -"dNK" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/corner, -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 6 - }, -/turf/open/floor/engine, -/area/engineering/main) -"dOw" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/engine, -/area/engineering/main) -"dOA" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock/public/glass{ - name = "Chapel" - }, -/turf/open/floor/plasteel/dark, -/area/service/chapel/main) -"dOR" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/maintenance/starboard) -"dPl" = ( -/obj/structure/rack, -/obj/item/storage/briefcase{ - pixel_x = -3; - pixel_y = 2 - }, -/obj/item/storage/secure/briefcase{ - pixel_x = 2; - pixel_y = -2 - }, -/obj/item/clothing/glasses/sunglasses, -/turf/open/floor/wood, -/area/service/lawoffice) -"dPp" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/visible, -/turf/open/floor/engine, -/area/engineering/main) -"dPI" = ( -/obj/structure/grille, -/turf/closed/wall/r_wall, -/area/engineering/atmos) -"dPX" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Gateway Chamber" - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel, -/area/command/gateway) -"dQg" = ( -/obj/machinery/door/airlock/maintenance{ - req_one_access_txt = "12;27;37" - }, -/turf/open/floor/plating, -/area/maintenance/port) -"dRb" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/door/airlock/atmos/glass{ - name = "Atmospherics Monitoring"; - req_access_txt = "24" - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"dRx" = ( -/obj/structure/closet/crate{ - icon_state = "crateopen" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/cargo/storage) -"dRF" = ( -/obj/machinery/door/poddoor/shutters{ - id = "qm_warehouse"; - name = "Warehouse Shutters" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/cargo/warehouse) -"dRL" = ( -/obj/structure/sign/painting/library{ - pixel_y = -32 - }, -/turf/open/floor/wood, -/area/service/library) -"dSe" = ( -/obj/effect/landmark/xeno_spawn, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solars/port/fore) -"dSm" = ( -/obj/structure/table, -/obj/machinery/microwave{ - pixel_x = -3; - pixel_y = 6 - }, -/obj/machinery/button/door{ - id = "kitchenwindow"; - name = "Window Shutter Control"; - pixel_x = -26; - req_access_txt = "28" - }, -/turf/open/floor/plasteel/cafeteria, -/area/service/kitchen) -"dSu" = ( -/obj/machinery/computer/atmos_alert, -/obj/structure/sign/map/left{ - desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; - icon_state = "map-left-MS"; - pixel_y = 32 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -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/engineering/main) -"dSO" = ( -/mob/living/simple_animal/pet/dog/corgi/Ian, -/turf/open/floor/carpet, -/area/command/heads_quarters/hop) -"dSR" = ( -/obj/machinery/computer/card{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/requests_console{ - announcementConsole = 1; - department = "Captain's Desk"; - departmentType = 5; - name = "Captain RC"; - pixel_x = 32 - }, -/turf/open/floor/wood, -/area/command/heads_quarters/captain/private) -"dTa" = ( -/obj/machinery/computer/security/telescreen{ - desc = "Used for monitoring medbay to ensure patient safety."; - dir = 8; - name = "Medbay Monitor"; - network = list("medbay"); - pixel_x = 29 - }, -/obj/item/radio/intercom{ - dir = 1; - name = "Station Intercom (General)"; - pixel_y = -29 - }, -/obj/machinery/computer/card/minor/cmo{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/cafeteria, -/area/command/heads_quarters/cmo) -"dTj" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 4 - }, -/turf/open/floor/engine, -/area/engineering/main) -"dUL" = ( -/obj/machinery/conveyor_switch/oneway{ - id = "QMLoad2"; - pixel_x = 6 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"dVc" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/loading_area{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"dVE" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/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/office) -"dVP" = ( -/obj/structure/cable/white, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engineering/main) -"dVV" = ( -/obj/machinery/button/door{ - id = "QMLoaddoor"; - layer = 4; - name = "Loading Doors"; - pixel_x = -27; - pixel_y = -5 - }, -/obj/machinery/button/door{ - id = "QMLoaddoor2"; - layer = 4; - name = "Loading Doors"; - pixel_x = -27; - pixel_y = 5 - }, -/obj/machinery/computer/cargo{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/cargo/storage) -"dVX" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel/dark/corner{ - dir = 1 - }, -/area/engineering/atmos) -"dWm" = ( -/obj/machinery/computer/med_data, -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/sign/warning/nosmoking{ - 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/medical/treatment_center) -"dWR" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible{ - dir = 1 - }, -/obj/machinery/power/rad_collector/anchored, -/obj/structure/cable, -/obj/structure/window/plasma/reinforced, -/turf/open/floor/engine, -/area/engineering/supermatter) -"dXi" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/wood, -/area/service/library) -"dXn" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 4 - }, -/turf/open/floor/engine, -/area/engineering/main) -"dXM" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/service/bar) -"dYf" = ( -/turf/open/floor/plasteel/dark, -/area/commons/cryopod) -"dYt" = ( -/obj/item/storage/box/syringes, -/obj/item/storage/box/beakers{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/structure/table/glass, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"dYu" = ( -/obj/machinery/door/airlock/external{ - name = "Auxiliary Airlock" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"dYw" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "kitchen"; - name = "Serving Hatch" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/item/reagent_containers/food/snacks/pie/cream, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/service/kitchen) -"dYF" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"dYX" = ( -/obj/effect/spawner/structure/window/plasma/reinforced, -/turf/open/floor/plating, -/area/engineering/atmos) -"dZs" = ( -/turf/closed/wall/r_wall, -/area/ai_monitored/command/storage/satellite) -"dZC" = ( -/obj/machinery/status_display/evac, -/turf/closed/wall/r_wall, -/area/engineering/supermatter) -"dZJ" = ( -/obj/machinery/button/door{ - id = "qm_warehouse"; - name = "Warehouse Door Control"; - pixel_y = 24; - req_access_txt = "50" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"dZP" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/engineering/main) -"eai" = ( -/obj/structure/sign/plaques/kiddie/badger{ - pixel_y = 32 - }, -/obj/item/reagent_containers/food/snacks/grown/poppy{ - pixel_y = 2 - }, -/obj/item/reagent_containers/food/snacks/grown/poppy{ - pixel_y = 2 - }, -/obj/item/reagent_containers/food/snacks/grown/poppy{ - pixel_y = 2 - }, -/obj/item/reagent_containers/food/snacks/grown/poppy{ - pixel_y = 2 - }, -/obj/item/reagent_containers/food/snacks/grown/poppy{ - pixel_y = 2 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/table/wood, -/turf/open/floor/carpet, -/area/service/chapel/main) -"eaK" = ( -/obj/structure/chair/office/dark, -/turf/open/floor/wood, -/area/service/library) -"eaP" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/machinery/door/poddoor/preopen{ - id = "hosprivacy"; - name = "privacy shutters" - }, -/turf/open/floor/plating, -/area/command/heads_quarters/hos) -"eaW" = ( -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=8"; - dir = 8; - freq = 1400; - location = "QM #3" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/delivery, -/mob/living/simple_animal/bot/mulebot{ - home_destination = "QM #3"; - suffix = "#3" - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"ebf" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/command/storage/satellite) -"ebr" = ( -/obj/structure/table, -/obj/item/reagent_containers/food/snacks/mint, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/obj/machinery/power/apc{ - areastring = "/area/service/kitchen"; - name = "Kitchen APC"; - pixel_y = -24 - }, -/obj/structure/cable/yellow, -/turf/open/floor/plasteel/cafeteria, -/area/service/kitchen) -"ecl" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/turf/open/floor/plating, -/area/construction/storage_wing) -"edG" = ( -/turf/closed/wall, -/area/commons/cryopod) -"edM" = ( -/obj/structure/light_construct{ - dir = 4 - }, -/turf/open/floor/wood, -/area/commons/vacant_room/office) -"eeb" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/construction/storage_wing) -"efp" = ( -/obj/structure/chair/office/dark, -/turf/open/floor/wood, -/area/commons/vacant_room/office) -"efB" = ( -/obj/machinery/shieldwallgen, -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 2 - }, -/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/command/teleporter) -"efP" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"egt" = ( -/obj/machinery/camera/autoname, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/machinery/power/apc{ - areastring = "/area/cargo/qm"; - dir = 1; - name = "Quartermaster's Office APC"; - pixel_y = 23 - }, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/obj/structure/filingcabinet/chestdrawer, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/qm) -"egv" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/fitness/pool) -"egx" = ( -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=4"; - dir = 4; - freq = 1400; - location = "Engineering" - }, -/obj/structure/plasticflaps/opaque, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engineering/main) -"egK" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=2.2-Leaving-Storage"; - location = "2.1-Storage" - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/construction/storage_wing) -"egX" = ( -/obj/structure/bookcase/random/fiction, -/turf/open/floor/wood, -/area/service/library) -"ehp" = ( -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/machinery/power/solar{ - id = "aftport"; - name = "Aft-Port Solar Array" - }, -/turf/open/floor/plasteel/airless/solarpanel, -/area/solars/port/aft) -"ehF" = ( -/obj/structure/closet/toolcloset, -/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/commons/storage/tools) -"ehN" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 5 - }, -/turf/open/floor/engine, -/area/engineering/main) -"eil" = ( -/turf/open/floor/carpet, -/area/command/bridge) -"eiS" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Port Primary Hallway - True Port"; - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/port) -"ejd" = ( -/obj/structure/bookcase{ - name = "Holy Bookcase" - }, -/turf/open/floor/plasteel/chapel{ - dir = 4 - }, -/area/service/chapel/main) -"ejj" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering/glass{ - name = "Engineering Foyer"; - req_one_access_txt = "32;19" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"ejy" = ( -/obj/machinery/status_display/supply, -/turf/closed/wall, -/area/cargo/sorting) -"ejP" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/machinery/door/poddoor/preopen{ - id = "cmoprivacy"; - name = "privacy shutter" - }, -/turf/open/floor/plating, -/area/command/heads_quarters/cmo) -"ejY" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/office) -"ekk" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"ekt" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/table/wood, -/obj/structure/extinguisher_cabinet{ - pixel_x = -27 - }, -/obj/item/folder/blue, -/obj/item/clothing/head/collectable/HoP{ - name = "novelty HoP hat" - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/command/corporate_showroom) -"ekw" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/cargo/warehouse) -"ekH" = ( -/obj/machinery/gravity_generator/main/station, -/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/engineering/gravity_generator) -"eln" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"elo" = ( -/obj/structure/sign/plaques/deempisi{ - pixel_y = 28 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/machinery/disposal/bin, -/obj/machinery/light_switch{ - pixel_x = 25 - }, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/service/bar) -"ely" = ( -/obj/machinery/computer/card/minor/rd{ - dir = 4 - }, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/command/heads_quarters/rd) -"elC" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"elE" = ( -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 1; - name = "O2 to Airmix" - }, -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"emj" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"emB" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/service/bar) -"emC" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/window/eastleft{ - name = "Mail"; - req_access_txt = "50" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/cargo/sorting) -"emH" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/cargo/sorting) -"eof" = ( -/turf/closed/wall, -/area/commons/toilet/restrooms) -"eoK" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"eoN" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/techstorage/AI, -/turf/open/floor/plasteel/dark, -/area/engineering/storage/tech) -"eqq" = ( -/obj/item/screwdriver, -/obj/structure/table/reinforced, -/obj/structure/sign/poster/official/random{ - pixel_y = 32 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/item/stack/sheet/metal/ten, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"eqG" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/circuit) -"eqJ" = ( -/obj/structure/reflector/double/anchored{ - dir = 5 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"erz" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"erD" = ( -/obj/machinery/reagentgrinder, -/obj/structure/table/glass, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"erE" = ( -/obj/machinery/camera{ - c_tag = "Atmospherics Tank - Toxins"; - dir = 8 - }, -/turf/open/floor/engine/plasma, -/area/engineering/atmos) -"esj" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/locker) -"esv" = ( -/obj/machinery/door/airlock{ - id_tag = "Toilet4"; - name = "Unit 4" - }, -/turf/open/floor/plasteel/freezer, -/area/commons/toilet/restrooms) -"esC" = ( -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/machinery/power/smes/engineering, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"esP" = ( -/obj/structure/window/reinforced, -/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 - }, -/obj/structure/reagent_dispensers/watertank/high, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"esR" = ( -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 8; - name = "Mix to Filter" - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"etb" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 9 - }, -/obj/structure/lattice, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"etg" = ( -/obj/structure/disposalpipe/segment, -/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/office) -"etj" = ( -/obj/structure/sign/directions/science{ - pixel_y = -8 - }, -/obj/structure/sign/directions/medical{ - pixel_y = 8 - }, -/obj/structure/sign/directions/evac, -/turf/closed/wall/r_wall, -/area/ai_monitored/command/storage/eva) -"etM" = ( -/obj/structure/toilet/secret/low_loot{ - pixel_y = 8 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/button/door{ - id = "AuxToilet3"; - name = "Lock Control"; - normaldoorcontrol = 1; - pixel_x = 25; - specialfunctions = 4 - }, -/obj/machinery/newscaster{ - pixel_y = -32 - }, -/obj/effect/landmark/blobstart, -/turf/open/floor/plating, -/area/commons/toilet/auxiliary) -"euh" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/engine, -/area/engineering/supermatter) -"evV" = ( -/obj/structure/chair/wood/wings, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/landmark/start/mime, -/turf/open/floor/carpet, -/area/service/theater) -"ewx" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/engine, -/area/engineering/main) -"ewK" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/plating, -/area/engineering/atmos) -"ewT" = ( -/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{ - charge = 100; - maxcharge = 15000 - }, -/obj/item/stack/sheet/mineral/plasma{ - amount = 30 - }, -/obj/item/gps, -/turf/open/floor/plating, -/area/engineering/main) -"ewZ" = ( -/obj/machinery/conveyor/inverted{ - dir = 6; - id = "QMLoad" - }, -/turf/open/floor/plating, -/area/cargo/storage) -"exg" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1 - }, -/turf/closed/wall/r_wall, -/area/engineering/atmos) -"exJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/engineering/gravity_generator) -"exO" = ( -/obj/structure/table/wood, -/obj/item/flashlight/lamp/green{ - pixel_x = 1; - pixel_y = 5 - }, -/turf/open/floor/wood, -/area/service/library) -"eyO" = ( -/obj/structure/closet/secure_closet/hos, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -22 - }, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_x = -29; - pixel_y = 23 - }, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/hos) -"eyR" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/commons/dorms) -"eyU" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 10 - }, -/obj/machinery/meter, -/turf/closed/wall/r_wall, -/area/engineering/supermatter) -"ezp" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "council blast"; - name = "Council Blast Doors" - }, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/command/bridge) -"ezr" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ - dir = 8 - }, -/turf/open/floor/engine, -/area/engineering/main) -"ezu" = ( -/obj/machinery/holopad, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/engineering/main) -"ezN" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"eAd" = ( -/obj/machinery/door/airlock/highsecurity{ - name = "Secure Tech Storage"; - req_access_txt = "19;23" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/storage/tech) -"eAe" = ( -/obj/machinery/sleeper{ - dir = 8 - }, -/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 - }, -/turf/open/floor/plasteel/white, -/area/medical/treatment_center) -"eAy" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"eAH" = ( -/obj/structure/table, -/obj/item/hand_labeler, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/storage/art) -"eAK" = ( -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -22 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Cargo - Office"; - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/office) -"eAW" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/wood, -/area/command/heads_quarters/captain/private) -"eBe" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/manifold/purple/visible{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"eBq" = ( -/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/engineering/atmos) -"eBu" = ( -/obj/machinery/door/airlock/grunge, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/commons/vacant_room/office) -"eBD" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/high_volume/siphon/atmos/air_output{ - dir = 1 - }, -/turf/open/floor/engine/air, -/area/engineering/atmos) -"eBL" = ( -/obj/structure/table, -/obj/item/stock_parts/subspace/ansible, -/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/item/stock_parts/subspace/crystal, -/turf/open/floor/plasteel/dark, -/area/engineering/storage/tcomms) -"eCa" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/machinery/vending/coffee{ - pixel_x = -3 - }, -/obj/machinery/button/door{ - id = "council blast"; - name = "Council Chamber Blast Door Control"; - pixel_x = -28; - req_access_txt = "19" - }, -/turf/open/floor/plasteel/dark, -/area/command/bridge) -"eCc" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/carpet, -/area/command/heads_quarters/captain/private) -"eCf" = ( -/obj/structure/reagent_dispensers/beerkeg, -/turf/open/floor/wood, -/area/service/bar) -"eCq" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/window/northleft{ - name = "Inner Pipe Access"; - req_access_txt = "24" - }, -/obj/machinery/atmospherics/pipe/simple/yellow/visible, -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"eCz" = ( -/obj/machinery/mass_driver{ - id = "chapelgun" - }, -/obj/structure/sign/warning/vacuum/external{ - pixel_y = 32 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/item/gps, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/service/chapel/main) -"eCM" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/simple/yellow/visible{ - dir = 4 - }, -/obj/structure/grille, -/turf/closed/wall/r_wall, -/area/engineering/atmos) -"eCS" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/engineering/gravity_generator) -"eCZ" = ( -/obj/machinery/atmospherics/pipe/simple/dark/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"eDc" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"eDr" = ( -/obj/machinery/washing_machine, -/obj/structure/sign/poster/official/random{ - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/cafeteria, -/area/commons/dorms) -"eDG" = ( -/obj/machinery/door/poddoor{ - id = "QMLoaddoor"; - name = "Supply Dock Loading Door" - }, -/obj/machinery/conveyor{ - dir = 8; - id = "QMLoad" - }, -/turf/open/floor/plating, -/area/cargo/storage) -"eDP" = ( -/obj/machinery/newscaster{ - pixel_y = -32 - }, -/obj/item/storage/box/donkpockets, -/obj/structure/table/glass, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/engineering/break_room) -"eDX" = ( -/turf/closed/wall, -/area/engineering/main) -"eDZ" = ( -/obj/structure/sign/warning/securearea, -/turf/closed/wall/r_wall, -/area/command/gateway) -"eEe" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"eFn" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/machinery/atmospherics/miner/oxygen, -/turf/open/floor/engine/o2, -/area/engineering/atmos) -"eFQ" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/obj/machinery/portable_atmospherics/scrubber, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = 26 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/commons/locker) -"eGc" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/commons/dorms) -"eGO" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/qm) -"eGP" = ( -/turf/closed/wall, -/area/command/gateway) -"eHa" = ( -/obj/structure/table/wood, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/item/storage/fancy/donut_box, -/turf/open/floor/carpet, -/area/command/heads_quarters/captain/private) -"eHv" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/cargo/miningoffice) -"eHw" = ( -/obj/structure/noticeboard{ - desc = "A memorial wall for pinning up momentos"; - name = "memorial board"; - pixel_y = 32 - }, -/obj/item/storage/fancy/candle_box, -/obj/item/storage/fancy/candle_box{ - pixel_x = -2; - pixel_y = 2 - }, -/obj/effect/decal/cleanable/cobweb, -/obj/structure/table/wood, -/turf/open/floor/carpet, -/area/service/chapel/main) -"eHP" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/door/airlock/engineering/glass{ - name = "Supermatter Engine"; - req_access_txt = "10" - }, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"eHR" = ( -/obj/structure/sign/poster/ripped{ - pixel_y = 32 - }, -/obj/structure/table, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/obj/item/light/tube, -/obj/machinery/power/apc{ - areastring = "/area/commons/fitness/pool"; - dir = 4; - name = "Pool APC"; - pixel_x = 24 - }, -/turf/open/floor/plasteel, -/area/commons/fitness/pool) -"eHT" = ( -/obj/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel/dark, -/area/commons/fitness/recreation) -"eJd" = ( -/obj/structure/closet/secure_closet/RD, -/obj/machinery/keycard_auth{ - pixel_y = -24 - }, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/command/heads_quarters/rd) -"eJg" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"eKo" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/door/window{ - base_state = "right"; - icon_state = "right"; - name = "MiniSat Walkway Access" - }, -/obj/machinery/camera{ - c_tag = "MiniSat Exterior - Aft Starboard"; - dir = 4; - network = list("minisat") - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/aisat/exterior) -"eKD" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/machinery/power/terminal, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/engineering/gravity_generator) -"eKY" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Crew Quarters Access" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/commons/locker) -"eLt" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -24 - }, -/obj/machinery/light_switch{ - pixel_x = -38 - }, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/turf/open/floor/plasteel{ - dir = 1 - }, -/area/engineering/main) -"eMh" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/obj/machinery/power/apc/highcap/ten_k{ - areastring = "/area/hallway/primary/central"; - dir = 1; - name = "Central Primary Hallway APC"; - pixel_y = 23 - }, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"eMV" = ( -/obj/structure/table/wood, -/obj/item/flashlight/lamp/green{ - pixel_x = 1; - pixel_y = 5 - }, -/turf/open/floor/plasteel/dark, -/area/command/bridge) -"eNK" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/spawner/structure/window/plasma/reinforced, -/turf/open/floor/plating, -/area/engineering/main) -"eNY" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/service/theater) -"eOa" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/construction/storage_wing) -"eOd" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"eOf" = ( -/obj/structure/table, -/obj/effect/turf_decal/delivery, -/obj/item/clothing/glasses/meson/engine, -/obj/item/clothing/glasses/meson/engine, -/obj/item/clothing/glasses/meson/engine, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/item/pipe_dispenser, -/obj/item/pipe_dispenser, -/obj/item/pipe_dispenser, -/turf/open/floor/plasteel, -/area/engineering/main) -"eOC" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ - dir = 8 - }, -/turf/open/floor/engine, -/area/engineering/main) -"ePg" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - name = "Auxiliary Bathrooms" - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/commons/toilet/auxiliary) -"ePh" = ( -/obj/machinery/keycard_auth{ - pixel_x = 26 - }, -/turf/open/floor/carpet, -/area/command/heads_quarters/hop) -"ePj" = ( -/obj/machinery/vending/wardrobe/chef_wardrobe, -/turf/open/floor/plasteel/showroomfloor, -/area/service/kitchen) -"ePw" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/carpet, -/area/service/library) -"ePx" = ( -/obj/structure/table/wood, -/obj/item/folder/red, -/obj/item/pen/red, -/turf/open/floor/wood, -/area/commons/vacant_room/office) -"ePC" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/carpet, -/area/service/chapel/main) -"ePL" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/engineering/main) -"eQs" = ( -/obj/structure/lattice, -/turf/closed/wall, -/area/commons/cryopod) -"eQM" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/command/teleporter) -"eQY" = ( -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/carpet, -/area/command/heads_quarters/hos) -"eQZ" = ( -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel/dark, -/area/service/chapel/main) -"eRk" = ( -/turf/open/floor/plasteel/chapel{ - dir = 4 - }, -/area/service/chapel/main) -"eRy" = ( -/obj/effect/landmark/start/station_engineer, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"eRD" = ( -/obj/machinery/vending/coffee, -/turf/open/floor/wood, -/area/service/library) -"eSp" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/hydroponics/constructable, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/service/hydroponics/garden) -"eSC" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/commons/fitness/pool) -"eSK" = ( -/obj/machinery/suit_storage_unit/standard_unit, -/obj/machinery/firealarm{ - dir = 8; - 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/ai_monitored/command/storage/eva) -"eSQ" = ( -/obj/machinery/light_switch{ - pixel_y = -28 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/obj/machinery/light, -/turf/open/floor/carpet, -/area/service/theater) -"eTe" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/commons/storage/tools) -"eTx" = ( -/obj/structure/destructible/cult/tome, -/obj/machinery/newscaster{ - pixel_x = -30 - }, -/obj/item/clothing/under/suit/red, -/obj/effect/decal/cleanable/cobweb, -/obj/item/book/codex_gigas, -/turf/open/floor/engine/cult, -/area/service/library) -"eTD" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/engineering/break_room) -"eTE" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/item/clothing/mask/horsehead, -/obj/structure/table/wood, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/obj/structure/sign/poster/contraband/random{ - pixel_x = -32 - }, -/obj/item/clothing/mask/cigarette/pipe, -/obj/item/clothing/mask/fakemoustache, -/turf/open/floor/wood, -/area/service/theater) -"eTH" = ( -/obj/machinery/status_display/evac{ - pixel_y = 32 - }, -/obj/structure/bed/dogbed/ian, -/turf/open/floor/wood, -/area/command/heads_quarters/hop) -"eTP" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/machinery/power/apc/highcap/five_k{ - areastring = "/area/security/warden"; - dir = 8; - name = "Brig Control APC"; - pixel_x = -25 - }, -/obj/structure/cable/yellow, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"eTY" = ( -/obj/machinery/button/door{ - id = "xeno_blastdoor"; - name = "Secure Lab Shutter Control"; - pixel_x = -5; - pixel_y = -5; - req_access_txt = "47" - }, -/obj/structure/table/reinforced, -/obj/machinery/button/door{ - id = "rdprivacy"; - name = "Privacy Shutters Control"; - pixel_x = 5; - pixel_y = 5 - }, -/obj/machinery/button/door{ - id = "Biohazard"; - name = "Entrance Shutter Control"; - pixel_x = -5; - pixel_y = 5; - req_access_txt = "47" - }, -/obj/machinery/button/door{ - id = "toxins_blastdoor"; - name = "Toxins Shutter Control"; - pixel_x = 5; - pixel_y = -5; - req_access_txt = "47" - }, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/command/heads_quarters/rd) -"eUh" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/cargo/storage) -"eVu" = ( -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"eVz" = ( -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/item/storage/box/matches{ - pixel_x = -2; - pixel_y = 3 - }, -/obj/item/clothing/mask/cigarette/cigar{ - pixel_x = 4; - pixel_y = 1 - }, -/obj/item/clothing/mask/cigarette/cigar{ - pixel_x = -4; - pixel_y = 1 - }, -/obj/item/clothing/mask/cigarette/cigar/cohiba, -/obj/structure/table/wood, -/turf/open/floor/carpet, -/area/command/corporate_showroom) -"eVB" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/freezer, -/area/commons/toilet/restrooms) -"eVL" = ( -/obj/item/seeds/apple, -/obj/item/seeds/banana, -/obj/item/seeds/cocoapod, -/obj/item/seeds/grape, -/obj/item/seeds/orange, -/obj/item/seeds/sugarcane, -/obj/item/seeds/wheat, -/obj/item/seeds/watermelon, -/obj/structure/table, -/obj/item/seeds/tower, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/service/hydroponics/garden) -"eWf" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/service/chapel/main) -"eWn" = ( -/obj/structure/closet/toolcloset, -/obj/effect/turf_decal/delivery, -/obj/item/clothing/glasses/meson/engine, -/turf/open/floor/plasteel, -/area/engineering/main) -"eWr" = ( -/obj/machinery/atmospherics/components/binary/valve/digital{ - name = "Waste Release" - }, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"eWU" = ( -/obj/structure/table, -/obj/item/storage/belt/utility, -/obj/item/storage/belt/utility, -/obj/item/radio/off, -/obj/item/radio/off, -/obj/item/radio/off, -/obj/item/radio/off, -/obj/item/multitool, -/turf/open/floor/plasteel, -/area/ai_monitored/command/storage/eva) -"eWY" = ( -/obj/effect/landmark/start/atmospheric_technician, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"eXd" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = 21 - }, -/turf/open/floor/engine, -/area/engineering/main) -"eXu" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/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/modular_computer/console/preset/research{ - dir = 8 - }, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/command/heads_quarters/rd) -"eXC" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/obj/machinery/holopad, -/turf/open/floor/plasteel/white, -/area/medical/treatment_center) -"eXH" = ( -/obj/machinery/status_display/evac{ - pixel_y = 32 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/table/wood, -/obj/item/pinpointer/nuke, -/obj/item/disk/nuclear, -/turf/open/floor/carpet, -/area/command/heads_quarters/captain/private) -"eXX" = ( -/obj/structure/table/reinforced, -/obj/item/storage/box/matches{ - pixel_y = 5 - }, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/service/bar) -"eYD" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/engine, -/area/engineering/main) -"eYH" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/engine, -/area/engineering/main) -"eZc" = ( -/obj/machinery/power/apc{ - areastring = "/area/medical/medbay/central"; - dir = 1; - name = "Medbay Central APC"; - pixel_y = 23 - }, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Medbay Hallway Fore"; - network = list("ss13","medbay") - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"eZe" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"eZS" = ( -/obj/machinery/door/poddoor/preopen{ - id = "transittube"; - name = "Transit Tube Blast Door" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"faG" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 10 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"faU" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/heat_exchanging/simple, -/turf/open/space/basic, -/area/space/nearstation) -"fbn" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"fbw" = ( -/obj/machinery/door/airlock{ - id_tag = "Cabin3"; - name = "Cabin 6" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/wood, -/area/commons/dorms) -"fbJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/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/service/hydroponics) -"fbZ" = ( -/obj/machinery/shieldgen, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/camera{ - c_tag = "Engineering - Secure Storage" - }, -/turf/open/floor/plating, -/area/engineering/main) -"fcg" = ( -/obj/effect/landmark/start/captain, -/obj/structure/chair/comfy/brown, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/wood, -/area/command/heads_quarters/captain/private) -"fcl" = ( -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"fco" = ( -/obj/structure/table, -/obj/item/assembly/igniter{ - pixel_x = -5; - pixel_y = 3 - }, -/obj/item/assembly/igniter{ - pixel_x = 5; - pixel_y = -4 - }, -/obj/item/assembly/igniter{ - pixel_x = 2; - pixel_y = 6 - }, -/obj/item/assembly/igniter{ - pixel_x = 2; - pixel_y = -1 - }, -/obj/machinery/power/apc{ - areastring = "/area/science/mixing"; - dir = 4; - name = "Toxins Lab APC"; - pixel_x = 24 - }, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"fcU" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"fdk" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/holopad/secure, -/turf/open/floor/plasteel/cafeteria, -/area/command/heads_quarters/cmo) -"fdE" = ( -/obj/structure/chair/wood/wings{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/landmark/start/clown, -/turf/open/floor/carpet, -/area/service/theater) -"fem" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/portable_atmospherics/canister/water_vapor, -/mob/living/simple_animal/hostile/lizard{ - name = "Wags-His-Tail"; - real_name = "Wags-His-Tail" - }, -/turf/open/floor/plasteel, -/area/service/janitor) -"feJ" = ( -/obj/machinery/disposal/bin{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/wood, -/area/service/bar) -"feU" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"fft" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/ai_monitored/command/storage/eva) -"ffx" = ( -/obj/machinery/airalarm{ - pixel_y = 26 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - name = "Auxiliary MiniSat Distribution Port" - }, -/obj/machinery/portable_atmospherics/canister/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/ai_monitored/command/storage/satellite) -"ffN" = ( -/obj/structure/chair/comfy/brown{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/command/heads_quarters/captain/private) -"ffS" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/service/bar) -"fgj" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -24 - }, -/obj/machinery/camera{ - c_tag = "Restrooms"; - dir = 4 - }, -/turf/open/floor/plasteel/freezer, -/area/commons/toilet/restrooms) -"fgv" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/medical/treatment_center) -"fgA" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/aisat/exterior) -"fgK" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"fgO" = ( -/obj/structure/bed, -/obj/item/bedsheet/captain, -/obj/effect/landmark/start/captain, -/obj/machinery/camera{ - c_tag = "Captain's Quarters"; - dir = 8 - }, -/turf/open/floor/wood, -/area/command/heads_quarters/captain/private) -"fgU" = ( -/obj/machinery/hydroponics/soil{ - pixel_y = 8 - }, -/obj/item/reagent_containers/food/snacks/grown/harebell, -/obj/item/reagent_containers/food/snacks/grown/harebell, -/obj/item/reagent_containers/food/snacks/grown/harebell, -/obj/item/reagent_containers/food/snacks/grown/harebell, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plasteel/cult, -/area/service/chapel/main) -"fht" = ( -/obj/structure/table/reinforced, -/obj/item/flashlight/lamp, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/command/heads_quarters/ce) -"fhB" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible, -/turf/closed/wall/r_wall, -/area/engineering/atmos) -"fhO" = ( -/obj/structure/closet/secure_closet/personal, -/obj/item/clothing/under/misc/assistantformal, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/obj/item/clothing/suit/hooded/wintercoat, -/obj/item/clothing/shoes/winterboots, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/commons/dorms) -"fkj" = ( -/obj/item/folder/blue, -/obj/structure/table/glass, -/obj/item/stamp/cmo, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/cafeteria, -/area/command/heads_quarters/cmo) -"fkx" = ( -/obj/structure/table/wood, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/item/clothing/head/sombrero, -/obj/structure/sign/poster/random{ - pixel_x = 32 - }, -/turf/open/floor/wood, -/area/service/theater) -"fkF" = ( -/obj/structure/window/reinforced, -/obj/machinery/door/window/eastright{ - base_state = "left"; - dir = 8; - icon_state = "left"; - name = "Fitness Ring" - }, -/turf/open/floor/plasteel/dark, -/area/commons/fitness/recreation) -"flE" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/engineering/atmos) -"flY" = ( -/turf/open/pool, -/area/commons/fitness/pool) -"fmJ" = ( -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/turf/open/floor/wood, -/area/commons/vacant_room/office) -"fmO" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/closed/wall, -/area/commons/fitness/recreation) -"fmY" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/machinery/door/poddoor/preopen{ - id = "hosspace"; - name = "space shutters" - }, -/turf/open/floor/plating, -/area/command/heads_quarters/hos) -"fnl" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/dark, -/area/command/bridge) -"fnn" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/item/paper_bin{ - pixel_x = -2; - pixel_y = 8 - }, -/obj/structure/table/glass, -/turf/open/floor/plasteel/dark, -/area/command/bridge) -"fnI" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel/white, -/area/medical/treatment_center) -"foj" = ( -/obj/machinery/power/smes{ - charge = 5e+006 - }, -/obj/structure/cable/yellow{ - icon_state = "0-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/command/storage/satellite) -"fox" = ( -/obj/structure/chair/stool, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/command/gateway) -"fpa" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = -30 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"fpg" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/pipedispenser/disposal, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"fpr" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/newscaster{ - pixel_x = 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/command/heads_quarters/ce) -"fpF" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/chair/stool, -/turf/open/floor/plasteel/chapel{ - dir = 4 - }, -/area/service/chapel/main) -"fqD" = ( -/obj/structure/window/reinforced, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 10 - }, -/obj/machinery/portable_atmospherics/canister, -/turf/open/floor/plasteel/cafeteria, -/area/engineering/atmos) -"frn" = ( -/obj/structure/table, -/obj/item/folder/red, -/obj/item/restraints/handcuffs, -/turf/open/floor/plasteel, -/area/security/office) -"frr" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/table/wood/poker, -/obj/item/clothing/head/fedora, -/turf/open/floor/wood, -/area/service/bar) -"frS" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/command/storage/eva) -"fse" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/smartfridge/disks{ - pixel_y = 2 - }, -/obj/structure/table, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"fsi" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/commons/fitness/recreation) -"fsX" = ( -/obj/structure/table/wood, -/obj/item/book/manual/wiki/security_space_law, -/obj/machinery/power/apc{ - areastring = "/area/command/heads_quarters/captain/private"; - dir = 8; - name = "Captain's Quarters APC"; - pixel_x = -25 - }, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/item/paper/fluff/gateway, -/obj/item/coin/plasma, -/obj/item/melee/chainofcommand, -/turf/open/floor/wood, -/area/command/heads_quarters/captain/private) -"fti" = ( -/obj/structure/table, -/obj/item/stack/rods/fifty, -/obj/item/wrench, -/obj/item/storage/box/lights/mixed, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/turf/open/floor/plasteel{ - dir = 1 - }, -/area/engineering/main) -"ful" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/airlock/highsecurity{ - name = "Gravity Generator Foyer"; - req_access_txt = "10" - }, -/obj/effect/turf_decal/delivery, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engineering/gravity_generator) -"fuH" = ( -/obj/structure/sign/warning/securearea{ - pixel_y = 32 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"fvo" = ( -/turf/closed/wall, -/area/service/chapel/main) -"fwb" = ( -/obj/item/soap/nanotrasen, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/table/wood, -/obj/structure/sign/poster/random{ - pixel_x = 32 - }, -/turf/open/floor/wood, -/area/service/theater) -"fwd" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/machinery/door/poddoor/preopen{ - id = "cmoprivacy"; - name = "privacy shutter" - }, -/turf/open/floor/plating, -/area/command/heads_quarters/cmo) -"fwt" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-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/command/heads_quarters/hos) -"fwB" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/chapel{ - dir = 8 - }, -/area/service/chapel/main) -"fwH" = ( -/obj/machinery/air_sensor/atmos/nitrogen_tank, -/turf/open/floor/engine/n2, -/area/engineering/atmos) -"fxb" = ( -/obj/machinery/vending/engivend, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/engineering/main) -"fxf" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel/dark, -/area/commons/cryopod) -"fxX" = ( -/obj/machinery/vending/kink, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/commons/locker) -"fxY" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment{ - 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/office) -"fyO" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/table/glass, -/obj/item/folder/blue, -/obj/item/folder/blue, -/obj/item/pen, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/cafeteria, -/area/command/heads_quarters/cmo) -"fyZ" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/obj/machinery/firealarm{ - pixel_y = 29 - }, -/obj/structure/sign/poster/official/random{ - pixel_x = 32 - }, -/obj/structure/closet/crate/hydroponics, -/obj/item/shovel/spade, -/obj/item/wrench, -/obj/item/reagent_containers/glass/bucket, -/obj/item/cultivator, -/obj/item/wirecutters, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"fzt" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/door/airlock{ - name = "Locker Room" - }, -/turf/open/floor/plasteel, -/area/commons/locker) -"fzU" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/techstorage/RnD_secure, -/turf/open/floor/plasteel/dark, -/area/engineering/storage/tech) -"fzZ" = ( -/obj/structure/table/wood, -/obj/item/storage/photo_album{ - pixel_y = -4 - }, -/obj/item/camera{ - pixel_y = 4 - }, -/obj/item/radio/intercom{ - dir = 8; - freerange = 1; - name = "Station Intercom (Captain)"; - pixel_x = -28 - }, -/turf/open/floor/carpet, -/area/command/heads_quarters/captain/private) -"fAA" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/locker) -"fCh" = ( -/obj/structure/disposaloutlet{ - dir = 4 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/plating, -/area/cargo/sorting) -"fCx" = ( -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"fCZ" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/visible{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel/dark/corner{ - dir = 1 - }, -/area/engineering/atmos) -"fDh" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/engine, -/area/engineering/main) -"fDD" = ( -/obj/machinery/light_switch{ - pixel_y = -25 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"fEb" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/service/library) -"fEl" = ( -/obj/structure/bed, -/obj/machinery/button/door{ - id = "Cabin5"; - name = "Dorm Bolt Control"; - normaldoorcontrol = 1; - pixel_x = -25; - specialfunctions = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/obj/effect/spawner/lootdrop/bedsheet, -/turf/open/floor/wood, -/area/commons/dorms) -"fEm" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -26 - }, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/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/command/heads_quarters/ce) -"fEX" = ( -/turf/open/floor/wood, -/area/service/library) -"fFa" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/service/kitchen) -"fFq" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -24 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/computer/shuttle/mining{ - dir = 4; - req_access = null - }, -/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/cargo/miningoffice) -"fFM" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"fFR" = ( -/obj/structure/closet/crate, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/camera{ - c_tag = "Atmospherics - Entrance" - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"fFY" = ( -/obj/structure/cable, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solars/port/aft) -"fGc" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plating, -/area/engineering/atmos) -"fGl" = ( -/obj/structure/chair, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/aisat/exterior) -"fGC" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"fGG" = ( -/obj/machinery/vr_sleeper, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"fHg" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"fHh" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/break_room) -"fHu" = ( -/obj/item/stack/sheet/cardboard, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/warehouse) -"fHz" = ( -/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/command/bridge) -"fHG" = ( -/obj/item/radio/intercom{ - pixel_y = 25 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -26 - }, -/obj/structure/table/wood, -/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/item/clothing/under/misc/burial, -/obj/item/clothing/under/misc/burial, -/turf/open/floor/plasteel/grimy, -/area/service/chapel/office) -"fIC" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/construction/storage_wing) -"fJE" = ( -/obj/machinery/power/apc{ - areastring = "/area/maintenance/disposal/incinerator"; - dir = 8; - name = "Incinerator APC"; - pixel_x = -25 - }, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"fJU" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"fKu" = ( -/obj/structure/chair/comfy/black{ - dir = 8 - }, -/turf/open/floor/plasteel/chapel{ - dir = 4 - }, -/area/service/chapel/main) -"fKG" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/cargo/miningoffice) -"fKM" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/closed/wall/r_wall, -/area/engineering/main) -"fLh" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/commons/fitness/recreation) -"fLm" = ( -/obj/structure/table/wood, -/obj/machinery/light, -/turf/open/floor/wood, -/area/service/library) -"fLq" = ( -/obj/effect/landmark/event_spawn, -/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/office) -"fLL" = ( -/obj/structure/lattice, -/turf/open/space, -/area/ai_monitored/aisat/exterior) -"fLM" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/service/kitchen) -"fLW" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/machinery/door/poddoor/preopen{ - id = "bridge blast"; - name = "bridge blast door" - }, -/turf/open/floor/plating, -/area/command/bridge) -"fMm" = ( -/obj/machinery/light/small, -/obj/machinery/camera{ - c_tag = "MiniSat Exterior - Space Access"; - dir = 1; - network = list("minisat") - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/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/aisat/exterior) -"fMM" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"fMW" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/command/heads_quarters/ce) -"fNf" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/machinery/light/small, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"fNh" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"fNk" = ( -/obj/machinery/vending/wardrobe/hydro_wardrobe, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"fNy" = ( -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "MiniSat Exterior - Starboard Aft"; - dir = 4; - network = list("minisat") - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/aisat/exterior) -"fOS" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/wood, -/area/command/corporate_showroom) -"fPJ" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/carpet, -/area/command/heads_quarters/hop) -"fPT" = ( -/obj/structure/table, -/obj/item/taperecorder{ - pixel_x = -3 - }, -/obj/item/paicard{ - pixel_x = 4 - }, -/obj/item/storage/secure/briefcase, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 24 - }, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/command/heads_quarters/rd) -"fQn" = ( -/obj/machinery/light_switch{ - pixel_x = -38 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -24 - }, -/obj/effect/turf_decal/loading_area{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"fQx" = ( -/obj/structure/reflector/box/anchored{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"fQZ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/spawner/structure/window/plasma/reinforced, -/turf/open/floor/plating, -/area/engineering/main) -"fRo" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/commons/fitness/recreation) -"fSe" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "Corporate Showroom"; - req_access_txt = "19" - }, -/turf/open/floor/wood, -/area/command/corporate_showroom) -"fSx" = ( -/obj/structure/chair/office/dark, -/obj/effect/landmark/start/head_of_personnel, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/light_switch{ - pixel_x = 38; - pixel_y = -35 - }, -/obj/machinery/button/door{ - id = "hopqueue"; - name = "Queue Shutters Control"; - pixel_x = 25; - pixel_y = -36; - req_access_txt = "28" - }, -/obj/machinery/button/door{ - id = "hop"; - name = "Privacy Shutters Control"; - pixel_x = 25; - pixel_y = -26; - req_access_txt = "28" - }, -/obj/machinery/button/flasher{ - id = "hopflash"; - pixel_x = 38; - pixel_y = -25 - }, -/turf/open/floor/wood, -/area/command/heads_quarters/hop) -"fTb" = ( -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/fitness/pool) -"fTZ" = ( -/obj/machinery/conveyor/inverted{ - dir = 10; - id = "QMLoad2" - }, -/turf/open/floor/plating, -/area/cargo/storage) -"fUl" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engineering/gravity_generator) -"fVa" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/cargo/miningoffice) -"fVg" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible, -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 4; - name = "Unfiltered & Air to Mix" - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"fVD" = ( -/obj/machinery/pool/drain, -/turf/open/pool, -/area/commons/fitness/pool) -"fVX" = ( -/obj/item/storage/secure/safe{ - pixel_x = 32 - }, -/obj/machinery/status_display/ai{ - pixel_y = 32 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/command/heads_quarters/rd) -"fWb" = ( -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command/bridge) -"fWm" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/command/nuke_storage) -"fWs" = ( -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/disposal/deliveryChute{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/cargo/sorting) -"fWy" = ( -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/camera{ - c_tag = "MiniSat Exterior - Aft"; - network = list("minisat") - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/aisat/exterior) -"fWz" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/landmark/start/mime, -/turf/open/floor/wood, -/area/service/theater) -"fWJ" = ( -/obj/machinery/biogenerator, -/obj/machinery/firealarm{ - pixel_y = 27 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/service/hydroponics/garden) -"fWS" = ( -/obj/structure/sign/poster/official/random, -/turf/closed/wall, -/area/service/hydroponics) -"fXa" = ( -/obj/structure/dresser, -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/turf/open/floor/wood, -/area/service/theater) -"fXs" = ( -/obj/machinery/light/small, -/turf/open/floor/engine/n2, -/area/engineering/atmos) -"fXZ" = ( -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solars/port/aft) -"fYa" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/chair/office/dark{ - dir = 8 - }, -/obj/effect/landmark/start/botanist, -/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/service/hydroponics) -"fZR" = ( -/obj/machinery/seed_extractor, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"gaa" = ( -/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/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/command/heads_quarters/ce) -"gad" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/airlock/public/glass{ - name = "Chapel Office"; - req_access_txt = "22" - }, -/turf/open/floor/plasteel/dark, -/area/service/chapel/office) -"gaV" = ( -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/pipedispenser, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/camera{ - c_tag = "Atmospherics - Entrance"; - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"gbt" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"gbw" = ( -/obj/machinery/camera/autoname{ - dir = 4 - }, -/obj/structure/rack, -/obj/item/storage/toolbox/electrical{ - pixel_x = 1; - pixel_y = -1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/storage/primary) -"gbJ" = ( -/turf/open/floor/plasteel/dark, -/area/service/chapel/main) -"gcz" = ( -/obj/structure/displaycase/labcage, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/sign/warning/biohazard{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/white, -/area/command/heads_quarters/rd) -"gcE" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"gcI" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/door/airlock/public/glass{ - name = "Chapel" - }, -/turf/open/floor/plasteel/dark, -/area/service/chapel/main) -"gcZ" = ( -/obj/structure/table/wood, -/obj/item/folder/red, -/turf/open/floor/carpet, -/area/command/bridge) -"gdi" = ( -/obj/structure/chair/stool, -/turf/open/floor/plasteel/chapel{ - dir = 8 - }, -/area/service/chapel/main) -"gdF" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/item/storage/secure/briefcase, -/obj/structure/table/wood, -/obj/item/folder/blue, -/obj/item/storage/secure/briefcase, -/obj/item/assembly/flash/handheld, -/obj/machinery/computer/security/telescreen/vault{ - pixel_y = 30 - }, -/turf/open/floor/wood, -/area/command/heads_quarters/hop) -"gdH" = ( -/obj/item/toy/cards/deck, -/obj/structure/table/wood, -/turf/open/floor/wood, -/area/commons/vacant_room/office) -"gdJ" = ( -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_y = -30 - }, -/obj/machinery/vending/cigarette, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/engineering/break_room) -"gdM" = ( -/obj/machinery/camera{ - c_tag = "Atmospherics Tank - Mix"; - dir = 8 - }, -/turf/open/floor/engine/vacuum, -/area/engineering/atmos) -"gdT" = ( -/obj/structure/showcase/mecha/marauder, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/carpet, -/area/command/corporate_showroom) -"geK" = ( -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/commons/locker) -"geY" = ( -/obj/machinery/vending/cigarette, -/turf/open/floor/wood, -/area/command/heads_quarters/captain/private) -"geZ" = ( -/obj/machinery/status_display/supply, -/turf/closed/wall, -/area/cargo/storage) -"gfr" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/commons/storage/primary) -"gfR" = ( -/obj/item/reagent_containers/spray/plantbgone, -/obj/item/reagent_containers/spray/pestspray{ - pixel_x = 3; - pixel_y = 4 - }, -/obj/item/reagent_containers/glass/bottle/nutrient/ez, -/obj/item/reagent_containers/glass/bottle/nutrient/rh{ - pixel_x = 2; - pixel_y = 1 - }, -/obj/structure/table, -/obj/structure/extinguisher_cabinet{ - pixel_x = -27 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/service/hydroponics/garden) -"ggj" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/locker) -"ggA" = ( -/obj/structure/table/wood, -/obj/item/lipstick{ - pixel_y = 5 - }, -/obj/machinery/camera{ - c_tag = "Theatre - Stage"; - dir = 8 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/item/instrument/guitar, -/obj/structure/sign/poster/random{ - pixel_x = 32 - }, -/turf/open/floor/wood, -/area/service/theater) -"ghb" = ( -/turf/open/floor/plating, -/area/engineering/main) -"ghl" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"ghn" = ( -/obj/machinery/computer/card{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/wood, -/area/command/heads_quarters/hop) -"ghG" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/commons/fitness/recreation) -"ghM" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/port) -"ghS" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/components/trinary/filter/flipped/critical, -/turf/open/floor/engine, -/area/engineering/main) -"gin" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/turf/open/floor/wood, -/area/service/bar) -"giv" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/holopad, -/turf/open/floor/plasteel, -/area/commons/dorms) -"giS" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/wood, -/area/service/bar) -"gjo" = ( -/obj/machinery/door/airlock{ - name = "Unisex Showers" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/freezer, -/area/commons/toilet/restrooms) -"gjp" = ( -/obj/machinery/power/apc{ - areastring = "/area/maintenance/port/aft"; - dir = 1; - name = "Port Quarter Maintenance APC"; - pixel_y = 23 - }, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"gjr" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"gjy" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/command/storage/satellite) -"gjz" = ( -/obj/structure/closet/crate, -/obj/structure/disposalpipe/segment, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 3; - name = "3maintenance loot spawner" - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/cargo/storage) -"gkj" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"glc" = ( -/turf/closed/wall, -/area/service/library) -"gli" = ( -/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 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/command/storage/eva) -"glp" = ( -/obj/structure/closet/secure_closet/miner, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/miningoffice) -"glJ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"glN" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - 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 = 8 - }, -/turf/open/floor/plasteel, -/area/security/office) -"gmc" = ( -/turf/closed/wall, -/area/command/heads_quarters/cmo) -"gmh" = ( -/obj/structure/table/wood, -/turf/open/floor/plasteel/dark, -/area/service/chapel/main) -"gmo" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel/chapel{ - dir = 8 - }, -/area/service/chapel/main) -"gmD" = ( -/obj/machinery/portable_atmospherics/canister/nitrogen, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"gnZ" = ( -/obj/item/radio/intercom{ - pixel_y = -30 - }, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"goF" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, -/turf/open/floor/carpet, -/area/command/heads_quarters/captain/private) -"goY" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/grass, -/area/service/hydroponics/garden) -"gpb" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/vending/wardrobe/engi_wardrobe, -/turf/open/floor/plasteel, -/area/engineering/main) -"gpH" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/chair/stool{ - pixel_y = 8 - }, -/turf/open/floor/wood, -/area/service/bar) -"gqh" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/machinery/camera/autoname{ - dir = 1 - }, -/obj/structure/table/wood, -/turf/open/floor/wood, -/area/service/library) -"gqA" = ( -/obj/machinery/button/door{ - id = "abandoned_kitchen"; - name = "Shutters Control"; - pixel_x = 26; - pixel_y = 6; - req_one_access_txt = null - }, -/obj/effect/decal/cleanable/blood/old, -/obj/item/clothing/suit/apron/chef, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"gqN" = ( -/obj/structure/chair/office/dark{ - dir = 8 - }, -/obj/effect/landmark/start/shaft_miner, -/turf/open/floor/plasteel, -/area/cargo/miningoffice) -"gra" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"grC" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solars/port/fore) -"grX" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 6 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"gsp" = ( -/turf/open/floor/carpet, -/area/commons/dorms) -"gst" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"gsy" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"gsT" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/computer/card, -/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/command/bridge) -"gtm" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/machinery/door/poddoor/preopen{ - id = "hosspace"; - name = "space shutters" - }, -/turf/open/floor/plating, -/area/command/heads_quarters/hos) -"gtn" = ( -/obj/effect/turf_decal/tile/neutral{ - 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/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/structure/sign/warning/nosmoking{ - pixel_x = 28 - }, -/turf/open/floor/plasteel/dark, -/area/medical/genetics) -"gtO" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 2 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"gua" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"gub" = ( -/obj/machinery/door/window/eastleft{ - base_state = "right"; - icon_state = "right"; - name = "Deliveries"; - req_access_txt = "50" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/cargo/sorting) -"guM" = ( -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/obj/structure/showcase/cyborg/old{ - dir = 8; - pixel_x = 9; - pixel_y = 2 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/aisat/exterior) -"guR" = ( -/obj/structure/window/reinforced, -/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/atmospherics/components/trinary/mixer/airmix{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"guZ" = ( -/obj/machinery/holopad/secure, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai_upload) -"gvJ" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/aisat/exterior) -"gvV" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow, -/turf/open/floor/plating, -/area/engineering/break_room) -"gvY" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/techstorage/engineering, -/turf/open/floor/plasteel/dark, -/area/engineering/storage/tech) -"gwR" = ( -/obj/machinery/camera{ - c_tag = "Teleporter Room"; - dir = 8 - }, -/obj/structure/rack, -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/obj/item/clothing/suit/hazardvest, -/obj/item/clothing/suit/hazardvest, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command/teleporter) -"gwW" = ( -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"gwZ" = ( -/obj/structure/table/wood, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/pen, -/obj/machinery/light_switch{ - pixel_x = 28 - }, -/turf/open/floor/plasteel/dark, -/area/command/bridge) -"gxe" = ( -/obj/structure/closet/crate{ - icon_state = "crateopen" - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/commons/storage/primary) -"gxl" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 9 - }, -/turf/open/floor/plasteel/dark/corner{ - dir = 1 - }, -/area/engineering/atmos) -"gxO" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "Gas to Filter" - }, -/turf/open/floor/engine, -/area/engineering/supermatter) -"gxW" = ( -/obj/machinery/computer/cargo, -/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/cargo/office) -"gyh" = ( -/turf/closed/wall, -/area/cargo/warehouse) -"gyN" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 0; - name = "Mix to Engine" - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"gyP" = ( -/obj/structure/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/office) -"gyR" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"gzm" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Security Office"; - req_one_access_txt = "1;4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/security/office) -"gzG" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/machinery/door/poddoor/preopen{ - id = "ceprivacy"; - name = "privacy shutter" - }, -/turf/open/floor/plating, -/area/command/heads_quarters/ce) -"gzN" = ( -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel, -/area/commons/locker) -"gzP" = ( -/obj/structure/closet/crate/coffin, -/obj/machinery/door/window/eastleft{ - name = "Coffin Storage"; - req_access_txt = "22" - }, -/turf/open/floor/plating, -/area/service/chapel/main) -"gzX" = ( -/obj/effect/spawner/structure/window, -/obj/machinery/door/poddoor/preopen{ - id = "kitchenwindow"; - name = "kitchen shutters" - }, -/turf/open/floor/plating, -/area/service/kitchen) -"gAe" = ( -/obj/structure/closet/secure_closet/CMO, -/obj/item/storage/secure/safe{ - pixel_x = 5; - pixel_y = 26 - }, -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_x = 30 - }, -/obj/item/screwdriver{ - pixel_y = 6 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/cafeteria, -/area/command/heads_quarters/cmo) -"gAR" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/closed/wall, -/area/commons/dorms) -"gAU" = ( -/obj/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/commons/fitness/recreation) -"gAV" = ( -/obj/machinery/vending/coffee, -/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/commons/fitness/recreation) -"gBn" = ( -/obj/machinery/door/airlock/external{ - req_access_txt = "24" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/visible, -/turf/open/floor/plating, -/area/engineering/atmos) -"gBI" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/carpet, -/area/command/heads_quarters/hop) -"gCt" = ( -/obj/item/stack/packageWrap, -/obj/item/stack/packageWrap, -/obj/item/stack/packageWrap, -/obj/item/stack/packageWrap, -/obj/item/stack/packageWrap, -/obj/item/hand_labeler, -/obj/structure/table/glass, -/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, -/area/service/hydroponics) -"gCx" = ( -/obj/structure/table/wood, -/obj/item/flashlight/lamp/green{ - pixel_x = 1; - pixel_y = 5 - }, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_x = -27 - }, -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_y = 32 - }, -/turf/open/floor/carpet, -/area/command/heads_quarters/captain/private) -"gCM" = ( -/obj/structure/table/wood, -/obj/item/paper_bin{ - pixel_x = 1; - pixel_y = 9 - }, -/turf/open/floor/wood, -/area/commons/vacant_room/office) -"gCY" = ( -/obj/effect/landmark/start/head_of_personnel, -/obj/structure/chair/office/dark{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/turf/open/floor/wood, -/area/command/heads_quarters/hop) -"gEk" = ( -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"gED" = ( -/obj/structure/closet/crate/coffin, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/plating, -/area/service/chapel/main) -"gEL" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel/white, -/area/command/heads_quarters/rd) -"gEN" = ( -/obj/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/dark, -/area/commons/fitness/recreation) -"gFa" = ( -/obj/structure/tank_dispenser/oxygen{ - pixel_x = -1; - pixel_y = 2 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/command/storage/eva) -"gFi" = ( -/obj/effect/spawner/structure/window, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/poddoor/preopen{ - id = "kitchenwindow"; - name = "kitchen shutters" - }, -/turf/open/floor/plating, -/area/service/kitchen) -"gFm" = ( -/turf/open/floor/engine/plasma, -/area/engineering/atmos) -"gFo" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "council blast"; - name = "Council Blast Doors" - }, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/turf/open/floor/plating, -/area/command/bridge) -"gFw" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/window/reinforced, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/structure/showcase/machinery/implanter{ - layer = 2.7; - pixel_y = 4 - }, -/turf/open/floor/carpet, -/area/command/corporate_showroom) -"gFW" = ( -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/power/solar{ - id = "aftstarboard"; - name = "Aft-Starboard Solar Array" - }, -/turf/open/floor/plasteel/airless/solarpanel, -/area/solars/starboard/aft) -"gGb" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/commons/dorms) -"gGc" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"gGH" = ( -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"gGT" = ( -/obj/effect/landmark/start/scientist, -/obj/structure/chair/office/light{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"gHh" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/airlock/maintenance, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"gHk" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/space, -/area/solars/starboard/aft) -"gHw" = ( -/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 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/dark, -/area/commons/fitness/recreation) -"gHz" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/engine/air, -/area/engineering/atmos) -"gJm" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "council blast"; - name = "Council Blast Doors" - }, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/turf/open/floor/plating, -/area/command/bridge) -"gJK" = ( -/turf/closed/wall, -/area/ai_monitored/aisat/exterior) -"gKh" = ( -/obj/item/radio/intercom{ - broadcasting = 1; - frequency = 1480; - name = "Confessional Intercom"; - pixel_x = -25 - }, -/obj/structure/chair, -/turf/open/floor/plasteel/dark, -/area/service/chapel/office) -"gLc" = ( -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/meter, -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/manifold/cyan/visible, -/turf/open/floor/engine, -/area/engineering/main) -"gLk" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/obj/machinery/power/apc{ - areastring = "/area/maintenance/fore"; - dir = 1; - name = "Fore Maintenance APC"; - pixel_y = 23 - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"gLC" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/plasteel, -/area/science/misc_lab) -"gLD" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/commons/locker) -"gLI" = ( -/obj/structure/table/reinforced, -/obj/item/book/manual/wiki/security_space_law{ - pixel_x = -3; - pixel_y = 5 - }, -/obj/item/taperecorder{ - pixel_x = -4 - }, -/turf/open/floor/plasteel, -/area/security/office) -"gLV" = ( -/obj/machinery/vending/boozeomat, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/wood, -/area/command/heads_quarters/captain/private) -"gMz" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/service/hydroponics) -"gMC" = ( -/obj/structure/table/wood, -/obj/item/folder/blue, -/obj/machinery/door/window{ - base_state = "right"; - icon_state = "right"; - name = "Captain's Desk"; - req_access_txt = "20" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/obj/item/stamp/captain, -/turf/open/floor/wood, -/area/command/heads_quarters/captain/private) -"gMW" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/plasteel/grimy, -/area/service/chapel/office) -"gNe" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/maintenance/aft) -"gNH" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/simple/cyan/visible, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"gON" = ( -/obj/structure/chair, -/obj/machinery/button/electrochromatic{ - id = "!interrogation_room"; - pixel_x = -25 - }, -/turf/open/floor/plasteel/grimy, -/area/security/office) -"gPe" = ( -/obj/machinery/light_switch{ - pixel_y = -25 - }, -/obj/structure/table/wood, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/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/carpet, -/area/command/heads_quarters/captain/private) -"gPs" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/camera{ - c_tag = "Engineering Supermatter Aft"; - dir = 1; - network = list("ss13","engine") - }, -/turf/open/floor/engine, -/area/engineering/main) -"gPG" = ( -/obj/machinery/disposal/bin, -/obj/machinery/light_switch{ - pixel_y = -26 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Fitness Room - Aft"; - 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/commons/fitness/recreation) -"gPN" = ( -/obj/structure/table, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/item/storage/firstaid/brute, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"gPZ" = ( -/obj/structure/closet/crate/internals, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 3; - name = "3maintenance loot spawner" - }, -/turf/open/floor/plasteel, -/area/cargo/warehouse) -"gQq" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/item/reagent_containers/glass/bucket, -/obj/item/mop, -/obj/structure/disposalpipe/segment, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 24 - }, -/turf/open/floor/plasteel, -/area/service/janitor) -"gQu" = ( -/obj/structure/pool/Rboard, -/turf/open/floor/plasteel, -/area/commons/fitness/pool) -"gQT" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/commons/dorms) -"gRu" = ( -/obj/structure/table/glass, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/item/tank/internals/emergency_oxygen{ - pixel_x = -8 - }, -/obj/item/clothing/mask/breath{ - pixel_x = 4 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -26 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/break_room) -"gRD" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/service/theater) -"gRE" = ( -/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/command/bridge) -"gRJ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-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, -/area/security/office) -"gRS" = ( -/obj/structure/table/reinforced, -/obj/item/integrated_electronics/analyzer, -/obj/item/integrated_circuit_printer, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"gSK" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics/garden) -"gSQ" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/storage/primary) -"gSX" = ( -/obj/structure/closet/secure_closet/personal/cabinet, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/item/clothing/under/suit/tan, -/turf/open/floor/carpet, -/area/commons/dorms) -"gTN" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/commons/locker) -"gUf" = ( -/obj/machinery/door/firedoor/border_only/closed{ - dir = 8; - name = "Animal Pen A" - }, -/turf/open/floor/grass, -/area/service/hydroponics/garden) -"gUC" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical/glass{ - name = "Hydroponics"; - req_access_txt = "35" - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"gVv" = ( -/obj/structure/table, -/obj/item/crowbar, -/obj/item/assembly/prox_sensor{ - pixel_x = -8; - pixel_y = 4 - }, -/obj/item/clothing/gloves/color/fyellow, -/obj/machinery/light/small, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/storage/primary) -"gWb" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock/command{ - name = "Head of Security's Office"; - req_access_txt = "58" - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/turf/open/floor/carpet, -/area/command/heads_quarters/hos) -"gWH" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/wood, -/area/service/bar) -"gXt" = ( -/obj/machinery/cryopod, -/obj/machinery/camera{ - c_tag = "Fitness Room - Fore" - }, -/turf/open/floor/plasteel/dark, -/area/commons/cryopod) -"gXV" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/office) -"gXY" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/closed/wall/r_wall, -/area/maintenance/disposal/incinerator) -"gZf" = ( -/obj/structure/table, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/qm) -"gZo" = ( -/obj/machinery/camera{ - c_tag = "Gravity Generator Foyer" - }, -/obj/structure/closet/radiation, -/obj/structure/sign/warning/radiation/rad_area{ - dir = 1; - pixel_y = 32 - }, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/engineering/gravity_generator) -"gZF" = ( -/obj/structure/chair, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"gZR" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/machinery/door/poddoor/preopen{ - id = "hop"; - name = "privacy shutters" - }, -/turf/open/floor/plating, -/area/command/heads_quarters/hop) -"hab" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "External Gas to Loop" - }, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"hbh" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall/r_wall, -/area/engineering/break_room) -"hbq" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plasteel/freezer, -/area/commons/toilet/restrooms) -"hci" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solars/port/aft) -"hcC" = ( -/turf/closed/wall, -/area/medical/treatment_center) -"hdk" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "Mix Bypass" - }, -/turf/open/floor/engine, -/area/engineering/main) -"hdJ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/obj/machinery/suit_storage_unit/atmos, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"hdR" = ( -/obj/structure/chair/stool{ - pixel_y = 8 - }, -/turf/open/floor/plasteel, -/area/commons/dorms) -"hdT" = ( -/obj/machinery/door/morgue{ - name = "Relic Closet"; - req_access_txt = "22" - }, -/turf/open/floor/plasteel/cult, -/area/service/chapel/office) -"hem" = ( -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_x = 29 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/floor/grass, -/area/service/hydroponics/garden) -"hen" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/commons/dorms) -"heu" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/turf/open/floor/plasteel{ - dir = 1 - }, -/area/engineering/main) -"hfd" = ( -/obj/machinery/computer/atmos_alert, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/command/bridge) -"hfg" = ( -/obj/machinery/atmospherics/components/binary/pump{ - name = "Air to Ports" - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"hfv" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible, -/obj/machinery/atmospherics/pipe/simple/purple/visible{ - dir = 4 - }, -/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/engineering/atmos) -"hfE" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"hfU" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/engineering/main) -"hgy" = ( -/obj/machinery/computer/robotics{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/command/heads_quarters/rd) -"hgE" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/command/corporate_showroom) -"hgV" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/wood, -/area/service/bar) -"hhA" = ( -/turf/open/floor/plasteel, -/area/cargo/warehouse) -"hhN" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "QMLoad" - }, -/turf/open/floor/plating, -/area/cargo/storage) -"hib" = ( -/obj/structure/table, -/obj/item/electronics/apc, -/obj/item/electronics/airlock, -/turf/open/floor/plasteel/dark, -/area/engineering/storage/tech) -"hij" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1; - name = "Gas to Mix" - }, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/engine, -/area/engineering/main) -"hiR" = ( -/obj/machinery/power/apc{ - areastring = "/area/hallway/primary/port"; - dir = 1; - name = "Port Hallway APC"; - pixel_x = -1; - pixel_y = 23 - }, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"hiZ" = ( -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/obj/machinery/vending/cigarette, -/turf/open/floor/plasteel/dark, -/area/command/bridge) -"hjA" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/office) -"hkr" = ( -/obj/structure/cable, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solars/starboard/fore) -"hks" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/service/library) -"hkz" = ( -/obj/structure/rack, -/obj/item/clothing/under/color/blue, -/obj/item/clothing/ears/earmuffs, -/obj/item/clothing/neck/tie/blue, -/obj/item/clothing/head/soft/blue, -/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/commons/fitness/recreation) -"hla" = ( -/turf/open/floor/plasteel/freezer, -/area/commons/toilet/restrooms) -"hlh" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/construction/storage_wing) -"hlQ" = ( -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/table/glass, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command/bridge) -"hmh" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security{ - name = "Interrogation Monitoring"; - req_one_access_txt = "1;4" - }, -/turf/open/floor/plasteel/grimy, -/area/security/office) -"hmw" = ( -/obj/structure/window/reinforced, -/obj/structure/table, -/obj/item/stack/packageWrap, -/obj/item/stack/packageWrap, -/obj/item/stack/packageWrap, -/obj/item/stack/packageWrap, -/obj/item/hand_labeler, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command/teleporter) -"hny" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/curtain, -/turf/open/floor/plasteel/white/side, -/area/medical/surgery) -"hop" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"hoq" = ( -/obj/machinery/power/apc{ - areastring = "/area/science/robotics/lab"; - dir = 1; - name = "Robotics Lab APC"; - pixel_y = 23 - }, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/obj/structure/table, -/obj/item/paper_bin{ - pixel_x = -2; - 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/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"hpe" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/spawner/lootdrop/maintenance, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/cargo/storage) -"hph" = ( -/obj/structure/chair/office/light{ - dir = 8 - }, -/obj/machinery/requests_console{ - announcementConsole = 1; - department = "Chief Medical Officer's Desk"; - departmentType = 5; - name = "Chief Medical Officer RC"; - pixel_y = -32 - }, -/obj/effect/landmark/start/chief_medical_officer, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/cafeteria, -/area/command/heads_quarters/cmo) -"hpl" = ( -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"hpr" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/yellow/visible{ - dir = 10 - }, -/obj/machinery/portable_atmospherics/canister, -/turf/open/floor/plasteel/white/corner, -/area/engineering/atmos) -"hpt" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/plasteel/dark, -/area/service/chapel/office) -"hpw" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"hpC" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"hpG" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics/garden) -"hqi" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -24 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/treatment_center) -"hqy" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"hqK" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/service/bar) -"hrn" = ( -/obj/structure/table/reinforced, -/obj/item/folder/red{ - pixel_x = 3 - }, -/obj/item/folder/blue{ - pixel_x = -2; - pixel_y = 3 - }, -/turf/open/floor/plasteel, -/area/security/office) -"hrB" = ( -/obj/structure/table/wood, -/obj/item/stack/packageWrap, -/obj/item/stack/packageWrap, -/obj/item/gun/ballistic/revolver/doublebarrel, -/obj/machinery/camera{ - c_tag = "Bar - Backroom" - }, -/obj/structure/sink/kitchen{ - pixel_y = 28 - }, -/turf/open/floor/wood, -/area/service/bar) -"hsi" = ( -/obj/structure/table/wood, -/obj/machinery/computer/libraryconsole, -/turf/open/floor/wood, -/area/service/library) -"hsq" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/obj/machinery/portable_atmospherics/pump, -/obj/effect/turf_decal/delivery, -/obj/structure/sign/poster/official/random{ - pixel_y = 32 - }, -/turf/open/floor/plasteel, -/area/commons/locker) -"hsv" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/machinery/airalarm{ - pixel_y = 26 - }, -/turf/open/floor/plasteel/freezer, -/area/commons/toilet/restrooms) -"hsG" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"htx" = ( -/obj/structure/closet/secure_closet/miner, -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, -/obj/item/clothing/suit/hooded/wintercoat/miner, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/miningoffice) -"htH" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 28 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/chair/office/light, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/engineering/gravity_generator) -"htO" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/commons/toilet/auxiliary) -"htZ" = ( -/obj/machinery/atmospherics/pipe/simple/yellow/visible{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"huJ" = ( -/obj/structure/table/wood, -/obj/structure/window/reinforced, -/obj/machinery/light_switch{ - pixel_x = -28 - }, -/obj/item/storage/secure/briefcase{ - pixel_x = -2; - pixel_y = 4 - }, -/obj/item/storage/lockbox/medal, -/turf/open/floor/wood, -/area/command/heads_quarters/captain/private) -"huP" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/service/bar) -"huS" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/service/chapel/main) -"hvd" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/closed/wall/r_wall, -/area/engineering/main) -"hvn" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/chair/stool{ - pixel_y = 8 - }, -/turf/open/floor/wood, -/area/service/bar) -"hvy" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/sign/poster/random{ - pixel_y = 32 - }, -/turf/open/floor/carpet, -/area/service/theater) -"hvL" = ( -/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/commons/dorms) -"hwv" = ( -/obj/machinery/requests_console{ - department = "Engineering"; - departmentType = 4; - name = "Engineering RC" - }, -/turf/closed/wall, -/area/engineering/main) -"hwM" = ( -/obj/item/candle, -/obj/machinery/light_switch{ - pixel_y = 25 - }, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/structure/table/wood, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/service/chapel/main) -"hxi" = ( -/obj/machinery/power/apc/highcap/five_k{ - areastring = "/area/security/office"; - dir = 4; - name = "Security Office APC"; - pixel_x = 24 - }, -/obj/structure/cable/yellow, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/office) -"hxo" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/wood, -/area/command/corporate_showroom) -"hyb" = ( -/obj/machinery/computer/communications, -/turf/open/floor/plasteel/dark, -/area/command/bridge) -"hye" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/aisat/exterior) -"hyv" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/airlock{ - name = "Dormitories" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/dorms) -"hyy" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall, -/area/commons/toilet/auxiliary) -"hyP" = ( -/obj/machinery/door/airlock/external{ - name = "Escape Pod Two" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/turf/open/floor/plating, -/area/security/prison) -"hyV" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/landmark/start/security_officer, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/office) -"hyZ" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/commons/dorms) -"hzd" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"hzs" = ( -/obj/structure/chair/comfy/black{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/command/bridge) -"hzH" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/structure/cable/yellow{ - 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/engineering/storage/tech) -"hzM" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/service/chapel/office) -"hzS" = ( -/obj/machinery/door/poddoor{ - id = "Secure Storage"; - name = "Secure Storage" - }, -/turf/open/floor/plating, -/area/engineering/main) -"hAr" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/obj/machinery/door/window{ - base_state = "right"; - icon_state = "right"; - name = "MiniSat Walkway Access" - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/aisat/exterior) -"hAI" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"hAL" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/service/bar) -"hAM" = ( -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/chapel, -/area/service/chapel/main) -"hBc" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/obj/machinery/button/door{ - id = "bridge blast"; - name = "Bridge Access Blast Door Control"; - pixel_x = 24; - pixel_y = -24; - req_access_txt = "19" - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/command/bridge) -"hBG" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/machinery/power/apc{ - areastring = "/area/engineering/gravity_generator"; - dir = 8; - name = "Gravity Generator APC"; - pixel_x = -25; - pixel_y = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/engineering/gravity_generator) -"hBP" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/wood, -/area/commons/vacant_room/office) -"hCt" = ( -/obj/machinery/gibber, -/turf/open/floor/plasteel/showroomfloor, -/area/service/kitchen) -"hCA" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/mob/living/carbon/monkey/punpun, -/turf/open/floor/plasteel, -/area/service/bar) -"hCH" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/camera{ - c_tag = "Kitchen - Coldroom"; - dir = 1 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/service/kitchen) -"hCU" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/cargo/office) -"hCX" = ( -/obj/structure/closet/crate/coffin, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/plating, -/area/service/chapel/main) -"hDb" = ( -/obj/effect/landmark/start/quartermaster, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/chair/office/dark{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/qm) -"hEm" = ( -/obj/item/taperecorder, -/obj/item/cartridge/lawyer, -/obj/structure/table/wood, -/obj/machinery/button/door{ - id = "lawyer_shutters"; - name = "law office shutters control"; - pixel_y = -26; - req_access_txt = "38" - }, -/turf/open/floor/wood, -/area/service/lawoffice) -"hEr" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solars/starboard/fore) -"hEC" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/command/gateway) -"hEZ" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "Corporate Showroom"; - req_access_txt = "19" - }, -/turf/open/floor/wood, -/area/command/corporate_showroom) -"hFa" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 10 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel/dark/corner{ - dir = 1 - }, -/area/engineering/atmos) -"hFm" = ( -/obj/structure/rack, -/obj/item/storage/toolbox/electrical{ - pixel_x = 1; - pixel_y = -1 - }, -/obj/item/multitool, -/obj/item/clothing/glasses/meson, -/obj/machinery/light_switch{ - pixel_y = -28 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/dark, -/area/engineering/storage/tech) -"hFt" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/command/heads_quarters/captain/private) -"hFD" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/showcase/machinery/tv{ - dir = 1; - pixel_x = 2; - pixel_y = 3 - }, -/obj/structure/table/wood, -/turf/open/floor/carpet, -/area/command/corporate_showroom) -"hGi" = ( -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_x = -30 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, -/turf/open/floor/plasteel/dark/corner{ - dir = 1 - }, -/area/engineering/atmos) -"hGo" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/table, -/obj/item/paper/guides/jobs/engi/gravity_gen, -/obj/item/pen/blue, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/engineering/gravity_generator) -"hGX" = ( -/turf/open/floor/engine/co2, -/area/engineering/atmos) -"hHh" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{ - dir = 8 - }, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/engineering/atmos) -"hIg" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/machinery/camera{ - c_tag = "Mining Dock"; - dir = 8 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/cargo/miningoffice) -"hIt" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/poddoor/shutters{ - id = "abandoned_kitchen" - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"hIO" = ( -/obj/effect/spawner/structure/window, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/commons/storage/art) -"hJe" = ( -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"hJA" = ( -/obj/structure/closet/lasertag/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/commons/fitness/recreation) -"hJC" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/wood, -/area/service/bar) -"hKd" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "MiniSat Exterior - Port Fore"; - dir = 8; - network = list("minisat") - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/aisat/exterior) -"hKm" = ( -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/structure/table/wood, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/carpet, -/area/commons/vacant_room/office) -"hKA" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/grimy, -/area/service/chapel/office) -"hKK" = ( -/obj/machinery/door/airlock{ - id_tag = "Cabin5"; - name = "Cabin 3" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/wood, -/area/commons/dorms) -"hKU" = ( -/obj/item/book/manual/wiki/engineering_hacking{ - pixel_x = 4; - pixel_y = 5 - }, -/obj/item/book/manual/wiki/engineering_construction{ - pixel_y = 3 - }, -/obj/item/book/manual/wiki/engineering_guide{ - pixel_x = -4 - }, -/obj/structure/table/glass, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"hKV" = ( -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solars/port/aft) -"hKZ" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/dorms) -"hLu" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/carpet, -/area/commons/dorms) -"hLG" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/wood, -/area/service/bar) -"hLH" = ( -/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/commons/fitness/recreation) -"hMn" = ( -/obj/structure/table, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/pen, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel/dark/corner{ - dir = 1 - }, -/area/engineering/atmos) -"hMI" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/urinal{ - pixel_y = 29 - }, -/turf/open/floor/plasteel/freezer, -/area/commons/toilet/restrooms) -"hMN" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/holopad/secure, -/turf/open/floor/plasteel, -/area/cargo/qm) -"hMQ" = ( -/turf/closed/wall/r_wall, -/area/command/bridge) -"hNx" = ( -/obj/structure/table, -/obj/machinery/cell_charger, -/obj/item/stock_parts/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/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/command/teleporter) -"hNB" = ( -/obj/item/paper_bin{ - pixel_x = -2; - pixel_y = 4 - }, -/obj/item/pen, -/obj/structure/window/reinforced, -/obj/structure/table/wood, -/turf/open/floor/wood, -/area/command/heads_quarters/hop) -"hNP" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/turf/open/floor/wood, -/area/service/bar) -"hNW" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"hOA" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/commons/dorms) -"hOX" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/cargo/storage) -"hPo" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 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 - }, -/obj/machinery/atmospherics/pipe/manifold/yellow/visible{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"hPG" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/open/floor/plasteel/grimy, -/area/service/chapel/office) -"hPI" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "Head of Personnel"; - req_access_txt = "57" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/wood, -/area/command/heads_quarters/hop) -"hQl" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"hQA" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 6 - }, -/obj/machinery/light_switch{ - pixel_y = 28 - }, -/obj/item/clothing/head/cone{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/clothing/head/cone{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/clothing/head/cone{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/clothing/head/cone{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/clothing/head/cone{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/open/floor/plasteel/dark/corner{ - dir = 1 - }, -/area/engineering/atmos) -"hQE" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/nitrogen_input{ - dir = 1 - }, -/turf/open/floor/engine/n2, -/area/engineering/atmos) -"hSe" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/cargo/storage) -"hSj" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/office) -"hSp" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/techstorage/rnd, -/turf/open/floor/plasteel/dark, -/area/engineering/storage/tech) -"hSw" = ( -/obj/structure/closet/secure_closet/personal, -/obj/item/clothing/under/misc/assistantformal, -/obj/item/clothing/suit/hooded/wintercoat, -/obj/item/clothing/shoes/winterboots, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/commons/locker) -"hSK" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "bridge blast"; - name = "bridge blast door" - }, -/obj/structure/cable/yellow, -/turf/open/floor/plating, -/area/command/bridge) -"hTd" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/command/heads_quarters/captain/private) -"hTs" = ( -/obj/structure/table, -/obj/item/cultivator, -/obj/item/hatchet, -/obj/item/crowbar, -/obj/machinery/light{ - dir = 1 - }, -/obj/item/plant_analyzer, -/obj/item/reagent_containers/glass/bucket, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/service/hydroponics/garden) -"hTE" = ( -/obj/machinery/computer/atmos_control/tank/nitrous_tank{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 5 - }, -/turf/open/floor/plasteel/white/corner, -/area/engineering/atmos) -"hUx" = ( -/obj/structure/janitorialcart, -/turf/open/floor/plasteel, -/area/service/janitor) -"hUO" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/command/heads_quarters/hop) -"hVj" = ( -/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 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"hVs" = ( -/turf/open/floor/plasteel, -/area/commons/toilet/auxiliary) -"hVw" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/event_spawn, -/turf/open/floor/wood, -/area/command/corporate_showroom) -"hVx" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel/dark, -/area/command/bridge) -"hVY" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/carpet, -/area/command/heads_quarters/captain/private) -"hWA" = ( -/obj/structure/table/glass, -/obj/item/wrench, -/obj/item/crowbar, -/obj/item/flashlight{ - pixel_x = 1; - pixel_y = 5 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/break_room) -"hXr" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, -/obj/machinery/camera{ - c_tag = "Security - Office - Starboard"; - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/office) -"hXs" = ( -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/obj/machinery/portable_atmospherics/canister/nitrogen, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"hXu" = ( -/obj/structure/closet/lasertag/blue, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/commons/fitness/recreation) -"hXC" = ( -/obj/structure/closet/l3closet/janitor, -/obj/machinery/airalarm{ - pixel_y = 28 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/service/janitor) -"hXP" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"hYa" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/mining/glass{ - name = "Quartermaster"; - req_access_txt = "41" - }, -/turf/open/floor/plasteel, -/area/cargo/qm) -"hYk" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/engineering/glass{ - name = "Supermatter Engine"; - req_access_txt = "10" - }, -/turf/open/floor/plating, -/area/engineering/main) -"hYq" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/closed/wall/r_wall, -/area/ai_monitored/command/nuke_storage) -"hYr" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/dark, -/area/commons/cryopod) -"hYA" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock/security/glass{ - name = "Security Office"; - req_one_access_txt = "1;4" - }, -/turf/open/floor/plasteel, -/area/security/office) -"hYY" = ( -/obj/structure/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command/bridge) -"hZe" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/atmos{ - name = "Atmospherics"; - req_access_txt = "24" - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"hZk" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/turf/closed/wall/r_wall, -/area/engineering/atmos) -"hZr" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/plasteel/white, -/area/medical/treatment_center) -"hZy" = ( -/obj/structure/table, -/obj/item/stack/sheet/glass/fifty, -/obj/item/stack/rods/fifty, -/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/commons/storage/tools) -"hZC" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"hZI" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/carpet, -/area/service/library) -"hZK" = ( -/obj/structure/rack, -/obj/item/cane, -/obj/item/reagent_containers/food/snacks/grown/mushroom/glowshroom, -/turf/open/floor/plating, -/area/command/heads_quarters/captain/private) -"hZR" = ( -/obj/machinery/conveyor{ - dir = 1; - id = "packageExternal" - }, -/obj/structure/plasticflaps/opaque, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/plating, -/area/cargo/sorting) -"hZY" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/chapel{ - dir = 1 - }, -/area/service/chapel/main) -"iaA" = ( -/turf/open/floor/wood, -/area/service/bar) -"iaE" = ( -/obj/machinery/hydroponics/constructable, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"ibn" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"ibJ" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/dark/visible, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"ibO" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/landmark/start/security_officer, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/office) -"icr" = ( -/turf/closed/wall, -/area/cargo/sorting) -"icE" = ( -/turf/closed/wall, -/area/security/office) -"idx" = ( -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/obj/structure/urinal{ - pixel_y = 29 - }, -/turf/open/floor/plasteel/freezer, -/area/commons/toilet/restrooms) -"idz" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"ieA" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/effect/spawner/lootdrop/maintenance, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/cargo/storage) -"ieJ" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "atmos"; - name = "Atmospherics Blast Door" - }, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/turf/open/floor/plating, -/area/engineering/atmos) -"ifs" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"ifM" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"ifU" = ( -/obj/structure/table/wood, -/obj/item/storage/crayons, -/turf/open/floor/wood, -/area/service/library) -"igf" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/obj/item/radio/intercom{ - pixel_x = -29 - }, -/turf/open/floor/wood, -/area/commons/vacant_room/office) -"igL" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/chair/office/dark{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"igY" = ( -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/commons/storage/primary) -"ihw" = ( -/turf/closed/wall/r_wall, -/area/ai_monitored/command/nuke_storage) -"ihN" = ( -/obj/machinery/power/tracker, -/obj/structure/cable{ - icon_state = "0-8" - }, -/turf/open/floor/plating/airless, -/area/solars/starboard/aft) -"iiu" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/spawner/structure/window/plasma/reinforced, -/turf/open/floor/plating, -/area/engineering/main) -"iix" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"iiE" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 24 - }, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/structure/sign/poster/contraband/random{ - pixel_y = -32 - }, -/turf/open/floor/wood, -/area/service/theater) -"iiG" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/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 - }, -/turf/open/floor/plasteel, -/area/cargo/warehouse) -"iiK" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/cargo/qm) -"iiP" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/toxin_output{ - dir = 8 - }, -/turf/open/floor/engine/plasma, -/area/engineering/atmos) -"ijm" = ( -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/service/kitchen) -"ijr" = ( -/turf/closed/wall, -/area/ai_monitored/command/storage/eva) -"ijE" = ( -/obj/structure/closet/crate, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 3; - name = "3maintenance loot spawner" - }, -/turf/open/floor/plasteel, -/area/cargo/warehouse) -"ijI" = ( -/obj/machinery/holopad, -/obj/structure/extinguisher_cabinet{ - pixel_x = -27 - }, -/turf/open/floor/wood, -/area/service/library) -"ijW" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/command/heads_quarters/ce) -"ikm" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/office) -"ikq" = ( -/obj/machinery/door/window/northleft{ - name = "Inner Pipe Access"; - req_access_txt = "24" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"iku" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, -/turf/open/floor/engine, -/area/engineering/main) -"ikA" = ( -/obj/structure/closet/secure_closet/personal/cabinet, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/item/clothing/under/suit/navy, -/turf/open/floor/carpet, -/area/commons/dorms) -"ilE" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/nitrogen_output{ - dir = 1 - }, -/turf/open/floor/engine/n2, -/area/engineering/atmos) -"ilJ" = ( -/turf/open/floor/plating/airless, -/area/engineering/atmos) -"imk" = ( -/obj/machinery/computer/card/minor/hos{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/office) -"imw" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/service/kitchen) -"inc" = ( -/obj/machinery/rnd/production/techfab/department/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/office) -"inY" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/dark, -/area/command/bridge) -"iod" = ( -/obj/machinery/door/airlock/hatch{ - name = "MiniSat Space Access Airlock"; - req_one_access_txt = "32;19" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/break_room) -"ioo" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solars/starboard/fore) -"ioI" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/door/airlock/research/glass{ - name = "Circuitry Lab"; - req_access_txt = "47" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/science/circuit) -"iph" = ( -/obj/item/stack/rods{ - amount = 25 - }, -/turf/open/floor/engine/vacuum, -/area/engineering/atmos) -"ipj" = ( -/obj/structure/closet/wardrobe/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/commons/locker) -"ipm" = ( -/obj/structure/sign/map/right{ - desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; - icon_state = "map-right-MS"; - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/structure/closet/secure_closet/atmospherics, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark/corner{ - dir = 1 - }, -/area/engineering/atmos) -"ipw" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/engine, -/area/engineering/main) -"ipG" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/carbon_output{ - dir = 8 - }, -/turf/open/floor/engine/co2, -/area/engineering/atmos) -"iqv" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - name = "Hydroponics Backroom"; - req_access_txt = "35" - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/bot, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"iqT" = ( -/obj/machinery/air_sensor/atmos/air_tank, -/turf/open/floor/engine/air, -/area/engineering/atmos) -"iqU" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/chair/stool, -/turf/open/floor/plasteel/chapel{ - dir = 8 - }, -/area/service/chapel/main) -"iqV" = ( -/obj/structure/table/wood/poker, -/obj/effect/spawner/lootdrop{ - loot = list(/obj/item/gun/ballistic/revolver/russian = 5, /obj/item/storage/box/syndie_kit/throwing_weapons, /obj/item/toy/cards/deck/syndicate = 2); - name = "gambling valuables spawner" - }, -/turf/open/floor/wood, -/area/service/bar) -"irx" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/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/cafeteria, -/area/command/heads_quarters/cmo) -"irz" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"irH" = ( -/obj/item/folder/blue, -/obj/structure/table/wood, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/carpet, -/area/commons/vacant_room/office) -"irY" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/turf/open/floor/carpet, -/area/command/heads_quarters/hop) -"itH" = ( -/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/cafeteria, -/area/engineering/atmos) -"itL" = ( -/obj/effect/landmark/start/botanist, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"itP" = ( -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/turf/open/floor/wood, -/area/service/library) -"iui" = ( -/obj/structure/table/wood, -/obj/item/storage/secure/briefcase{ - desc = "A large briefcase with a digital locking system, and the Nanotrasen logo emblazoned on the sides."; - name = "Nanotrasen-brand secure briefcase exhibit"; - pixel_y = 2 - }, -/turf/open/floor/carpet, -/area/command/corporate_showroom) -"iun" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/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 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/treatment_center) -"iuy" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 24 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/command/bridge) -"iuC" = ( -/obj/structure/lattice, -/turf/closed/wall/r_wall, -/area/ai_monitored/aisat/exterior) -"iuD" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/computer/security/wooden_tv, -/turf/open/floor/carpet, -/area/command/heads_quarters/captain/private) -"iuF" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/service/bar) -"iuW" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"iuZ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/cargo/sorting) -"ivz" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/light_switch{ - pixel_x = 27 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"iwd" = ( -/obj/effect/landmark/xeno_spawn, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/wood, -/area/commons/dorms) -"iwg" = ( -/obj/structure/sign/warning/pods, -/turf/closed/wall/r_wall, -/area/engineering/break_room) -"iwo" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/turf/open/floor/plating, -/area/engineering/atmos) -"iwy" = ( -/obj/structure/bookcase, -/turf/open/floor/wood, -/area/command/bridge) -"iwY" = ( -/obj/item/folder/red{ - pixel_y = 3 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/table/glass, -/obj/item/folder/red{ - pixel_y = 3 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/command/bridge) -"ixc" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel, -/area/cargo/warehouse) -"ixs" = ( -/obj/structure/filingcabinet/chestdrawer, -/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 - }, -/mob/living/simple_animal/parrot/Poly, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/ce) -"ixH" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "chapel_shutters_parlour"; - name = "chapel shutters" - }, -/turf/open/floor/plating, -/area/service/chapel/main) -"ixJ" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/yellow/visible, -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engineering/atmos) -"ixL" = ( -/turf/closed/wall, -/area/cargo/miningoffice) -"ixP" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/turf/open/floor/plating, -/area/security/office) -"iyh" = ( -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/command/teleporter) -"iyn" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/effect/turf_decal/tile/neutral{ - 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/yellow/visible, -/obj/machinery/space_heater, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"iyy" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/cargo/sorting) -"iyJ" = ( -/obj/machinery/door/morgue{ - name = "Confession Booth" - }, -/turf/open/floor/plasteel/dark, -/area/service/chapel/main) -"izh" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"izu" = ( -/obj/machinery/autolathe{ - name = "public autolathe" - }, -/obj/machinery/door/window/eastright{ - dir = 2; - name = "Research and Development Desk"; - req_one_access_txt = "7;29" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "research_shutters"; - name = "research shutters" - }, -/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/white, -/area/science/lab) -"izA" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/commons/locker) -"izJ" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/wood, -/area/command/heads_quarters/captain/private) -"izZ" = ( -/turf/open/floor/engine/n2o, -/area/engineering/atmos) -"iAK" = ( -/obj/structure/window/reinforced, -/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 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 6 - }, -/obj/machinery/portable_atmospherics/canister, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"iAR" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/obj/structure/cable/yellow{ - 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/engineering/storage/tech) -"iBm" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/turf/open/floor/engine, -/area/engineering/main) -"iCn" = ( -/obj/machinery/vr_sleeper, -/turf/open/floor/plasteel, -/area/security/prison) -"iDz" = ( -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/airalarm{ - pixel_y = 28 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/aisat/exterior) -"iDK" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/heater/on{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"iEi" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/freezer, -/area/commons/toilet/restrooms) -"iEy" = ( -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/locker) -"iEG" = ( -/obj/item/restraints/legcuffs/beartrap, -/obj/item/restraints/legcuffs/beartrap, -/obj/structure/table, -/obj/machinery/requests_console{ - department = "Janitorial"; - departmentType = 1; - pixel_x = -29 - }, -/obj/item/reagent_containers/spray/cleaner, -/obj/machinery/camera{ - c_tag = "Custodial Closet"; - dir = 4 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/service/janitor) -"iET" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/engineering/main) -"iFl" = ( -/obj/machinery/portable_atmospherics/canister/nitrous_oxide{ - valve_open = 1 - }, -/obj/machinery/atmospherics/miner/n2o, -/turf/open/floor/engine/n2o, -/area/engineering/atmos) -"iFm" = ( -/obj/structure/closet/radiation, -/obj/structure/sign/warning/radiation/rad_area{ - dir = 1; - pixel_y = 32 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/engineering/gravity_generator) -"iFq" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/machinery/power/apc{ - areastring = "/area/construction/storage_wing"; - name = "Storage Wing APC"; - pixel_y = -27 - }, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/construction/storage_wing) -"iFI" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Primary Tool Storage" - }, -/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/commons/storage/primary) -"iFO" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/holopad, -/turf/open/floor/plasteel, -/area/cargo/miningoffice) -"iGh" = ( -/obj/effect/mapping_helpers/airlock/locked, -/obj/machinery/door/airlock/vault{ - req_access_txt = "53" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/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/ai_monitored/command/nuke_storage) -"iGB" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/table, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/obj/machinery/camera{ - c_tag = "Cargo Bay - Starboard"; - dir = 8 - }, -/obj/item/paper_bin{ - pixel_x = -1; - pixel_y = 6 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"iGI" = ( -/obj/machinery/light/small, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/button/door{ - id = "chapel_shutters_parlour"; - name = "chapel shutters control"; - pixel_y = -25 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/service/chapel/main) -"iGQ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"iGV" = ( -/obj/structure/table, -/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/machinery/camera{ - c_tag = "Research Director's Office"; - dir = 1; - network = list("ss13","rd") - }, -/obj/machinery/light, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/command/heads_quarters/rd) -"iHl" = ( -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/structure/filingcabinet/chestdrawer, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/cafeteria, -/area/command/heads_quarters/cmo) -"iHr" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/open/floor/wood, -/area/service/library) -"iHw" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/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/ai_monitored/command/nuke_storage) -"iIJ" = ( -/obj/item/instrument/violin, -/obj/structure/table/wood, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_x = 29 - }, -/obj/structure/sign/poster/random{ - pixel_y = -32 - }, -/turf/open/floor/wood, -/area/service/theater) -"iIW" = ( -/obj/machinery/atmospherics/components/binary/pump/on{ - name = "Gas to Filter" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/engine, -/area/engineering/main) -"iJb" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/turf/open/floor/plating, -/area/engineering/atmos) -"iJx" = ( -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/obj/structure/closet/crate/solarpanel_small, -/turf/open/floor/plasteel{ - dir = 1 - }, -/area/engineering/main) -"iJM" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plasteel, -/area/engineering/main) -"iKH" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"iKQ" = ( -/obj/machinery/camera{ - c_tag = "Atmospherics Tank - N2"; - dir = 8 - }, -/turf/open/floor/engine/n2, -/area/engineering/atmos) -"iKS" = ( -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/cargo/storage) -"iLe" = ( -/turf/closed/wall, -/area/engineering/break_room) -"iLj" = ( -/obj/structure/table, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"iLG" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/commons/dorms) -"iLV" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/cell_charger{ - pixel_y = 4 - }, -/obj/structure/table/glass, -/obj/item/stock_parts/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/turf/open/floor/plasteel/dark, -/area/command/bridge) -"iLX" = ( -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/aisat/exterior) -"iMF" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/obj/effect/spawner/structure/window/plasma/reinforced, -/turf/open/floor/plating, -/area/engineering/main) -"iMH" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"iMN" = ( -/obj/structure/chair/office/dark{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/wood, -/area/service/library) -"iNf" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/command/heads_quarters/captain/private) -"iNi" = ( -/obj/machinery/autolathe, -/obj/machinery/newscaster{ - pixel_x = 28 - }, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -28 - }, -/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/cargo/office) -"iNR" = ( -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/plasteel/dark, -/area/commons/cryopod) -"iOc" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"iOe" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/freezer, -/area/commons/toilet/restrooms) -"iOZ" = ( -/obj/machinery/door/window{ - dir = 1; - name = "Captain's Bedroom"; - req_access_txt = "20" - }, -/turf/open/floor/wood, -/area/command/heads_quarters/captain/private) -"iPj" = ( -/obj/machinery/holopad, -/turf/open/floor/plasteel, -/area/commons/locker) -"iPP" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/command/teleporter) -"iQz" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/landmark/start/security_officer, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/office) -"iRr" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/landmark/start/cargo_technician, -/turf/open/floor/plasteel, -/area/cargo/warehouse) -"iSt" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white/corner, -/area/hallway/secondary/entry) -"iSE" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = -30 - }, -/obj/structure/table, -/obj/machinery/reagentgrinder, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/service/kitchen) -"iSO" = ( -/obj/structure/closet/secure_closet/hydroponics, -/obj/structure/extinguisher_cabinet{ - pixel_x = -27 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"iTm" = ( -/obj/machinery/power/apc/highcap/ten_k{ - areastring = "/area/science/research"; - dir = 1; - name = "Research Division APC"; - pixel_y = 23 - }, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/obj/machinery/camera{ - c_tag = "Research Division - Airlock"; - network = list("ss13","rd") - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"iTy" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering{ - name = "Engine Room"; - req_access_txt = "10" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/turf/open/floor/plasteel{ - dir = 1 - }, -/area/engineering/main) -"iTC" = ( -/obj/machinery/button/door{ - id = "Cabin7"; - name = "Door Bolt Control"; - normaldoorcontrol = 1; - pixel_x = -25; - specialfunctions = 4 - }, -/obj/structure/bed, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/effect/spawner/lootdrop/bedsheet, -/turf/open/floor/wood, -/area/commons/dorms) -"iUm" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/mining/glass{ - name = "Mailroom"; - req_one_access_txt = "48;50" - }, -/obj/effect/turf_decal/delivery, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/cargo/sorting) -"iUw" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance/abandoned, -/obj/structure/barricade/wooden, -/turf/open/floor/plating, -/area/commons/fitness/pool) -"iUY" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/service/bar) -"iVr" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/light_switch{ - pixel_x = 27 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/office) -"iWB" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel, -/area/service/janitor) -"iWG" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/spawner/lootdrop/maintenance, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/cargo/storage) -"iXR" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"iYr" = ( -/obj/machinery/door/window{ - dir = 1; - name = "MiniSat Walkway Access" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/aisat/exterior) -"iYv" = ( -/obj/machinery/biogenerator, -/obj/machinery/light_switch{ - pixel_x = 26 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"iYz" = ( -/obj/machinery/shower{ - dir = 4 - }, -/obj/machinery/light/small, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/blood/gibs/old, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/commons/toilet/auxiliary) -"iYH" = ( -/obj/item/stack/cable_coil, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solars/starboard/fore) -"iYP" = ( -/turf/closed/wall/r_wall, -/area/engineering/break_room) -"iYX" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"iZl" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/shower{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/toilet/auxiliary) -"iZM" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/structure/sign/poster/official/cleanliness{ - pixel_x = 32 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"jaL" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/aisat/exterior) -"jaP" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel/dark, -/area/service/chapel/main) -"jbv" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/wood, -/area/commons/dorms) -"jbE" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/cargo/warehouse) -"jbF" = ( -/obj/machinery/door/window/northleft{ - dir = 8; - name = "Disposals Chute" - }, -/obj/machinery/disposal/deliveryChute{ - dir = 8; - name = "disposals chute"; - pixel_x = 5 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/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/command/teleporter) -"jbH" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/wood, -/area/service/theater) -"jbZ" = ( -/obj/machinery/light_switch{ - pixel_x = 27 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/easel, -/obj/item/canvas/twentythreeXtwentythree, -/obj/item/canvas/twentythreeXtwentythree, -/turf/open/floor/plasteel, -/area/commons/storage/art) -"jcc" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/turf/open/floor/wood, -/area/service/lawoffice) -"jco" = ( -/obj/machinery/door/airlock/atmos/glass{ - heat_proof = 1; - name = "Auxiliary Chamber"; - req_access_txt = "24" - }, -/turf/open/floor/plating, -/area/engineering/atmos) -"jcA" = ( -/turf/open/floor/plating, -/area/engineering/break_room) -"jcF" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/carpet, -/area/command/heads_quarters/hos) -"jda" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/loading_area{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"jdJ" = ( -/obj/machinery/atmospherics/components/trinary/filter/atmos/n2o{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"jdL" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow, -/turf/open/floor/plating, -/area/command/gateway) -"jdV" = ( -/obj/machinery/atmospherics/pipe/simple/purple/visible, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"jfa" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/green/visible, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/yellow/visible{ - dir = 4 - }, -/turf/open/floor/plasteel/cafeteria, -/area/engineering/atmos) -"jfi" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/green/visible, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"jfl" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/obj/effect/spawner/lootdrop/maintenance, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/cargo/storage) -"jfD" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/command/corporate_showroom) -"jfL" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/command/storage/eva) -"jfR" = ( -/obj/structure/table/glass, -/obj/item/pen, -/obj/item/clothing/neck/stethoscope, -/obj/structure/extinguisher_cabinet{ - pixel_x = 6; - 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/command/heads_quarters/cmo) -"jfY" = ( -/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/engineering/supermatter) -"jgc" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/engineering/gravity_generator) -"jgw" = ( -/obj/machinery/camera{ - c_tag = "Cargo Bay - Aft"; - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/cargo/storage) -"jgy" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/engineering/break_room) -"jgE" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - name = "Custodial Closet"; - req_access_txt = "26" - }, -/turf/open/floor/plasteel, -/area/service/janitor) -"jho" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/sign/warning/securearea, -/turf/closed/wall/r_wall, -/area/command/teleporter) -"jhu" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock/public/glass{ - id_tag = "permahydro"; - name = "Recreation Module" - }, -/turf/open/floor/plasteel, -/area/security/prison) -"jhw" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/service/bar) -"jhV" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/turf/open/floor/plating, -/area/command/gateway) -"jig" = ( -/turf/open/floor/plasteel/showroomfloor, -/area/service/kitchen) -"jik" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel, -/area/cargo/qm) -"jit" = ( -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel/dark, -/area/commons/cryopod) -"jiG" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/machinery/door/poddoor/preopen{ - id = "rdprivacy"; - name = "privacy shutter" - }, -/turf/open/floor/plating, -/area/command/heads_quarters/rd) -"jiN" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plasteel/dark, -/area/service/chapel/main) -"jiU" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/obj/structure/closet/crate, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 3; - name = "3maintenance loot spawner" - }, -/turf/open/floor/plasteel, -/area/cargo/warehouse) -"jiZ" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 10 - }, -/turf/closed/wall, -/area/engineering/atmos) -"jje" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"jji" = ( -/obj/machinery/pool/controller, -/turf/open/floor/plasteel, -/area/commons/fitness/pool) -"jjm" = ( -/obj/effect/landmark/start/cook, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/plasteel/showroomfloor, -/area/service/kitchen) -"jjF" = ( -/obj/structure/pool/Lboard, -/turf/open/pool, -/area/commons/fitness/pool) -"jjI" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/commons/fitness/recreation) -"jjZ" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "Plasma to Pure" - }, -/obj/machinery/atmospherics/pipe/simple/green/visible, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"jkm" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/commons/storage/art) -"jlc" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/chapel, -/area/service/chapel/main) -"jld" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/service/chapel/office) -"jmq" = ( -/obj/machinery/hydroponics/constructable, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"jmy" = ( -/turf/closed/wall/r_wall, -/area/command/teleporter) -"jmU" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "packageSort2" - }, -/turf/open/floor/plating, -/area/cargo/sorting) -"jng" = ( -/obj/structure/cable/white, -/turf/open/floor/plating, -/area/engineering/main) -"jnW" = ( -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/command/storage/eva) -"joe" = ( -/obj/structure/table, -/obj/item/flashlight{ - pixel_x = 1; - pixel_y = 5 - }, -/obj/item/flashlight{ - pixel_x = 1; - pixel_y = 5 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/item/assembly/flash/handheld, -/obj/item/assembly/flash/handheld, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = 28 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/storage/tech) -"joj" = ( -/obj/machinery/status_display/evac{ - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/break_room) -"jom" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/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/commons/dorms) -"jon" = ( -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -29 - }, -/obj/structure/rack, -/obj/item/assembly/signaler, -/obj/item/assembly/signaler, -/obj/item/assembly/timer, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/command/bridge) -"jor" = ( -/obj/machinery/atmospherics/pipe/manifold/yellow/visible{ - dir = 1 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"joE" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/closed/wall/r_wall, -/area/engineering/atmos) -"joP" = ( -/obj/structure/closet/secure_closet/bar{ - req_access_txt = "25" - }, -/turf/open/floor/wood, -/area/service/bar) -"joS" = ( -/obj/machinery/computer/holodeck{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"joV" = ( -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -28 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/cargo/storage) -"joY" = ( -/obj/machinery/status_display/supply, -/turf/closed/wall, -/area/cargo/miningoffice) -"jpf" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/window/eastright{ - dir = 8; - name = "Fitness Ring" - }, -/turf/open/floor/plasteel/dark, -/area/commons/fitness/recreation) -"jpq" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 10 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"jpr" = ( -/obj/structure/table/reinforced, -/obj/item/lighter, -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_x = -31 - }, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/service/bar) -"jra" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/item/disk/data{ - pixel_x = 9; - pixel_y = -1 - }, -/obj/item/disk/tech_disk{ - pixel_x = -2; - pixel_y = -3 - }, -/obj/item/disk/design_disk{ - name = "component design disk"; - pixel_y = 6 - }, -/obj/structure/table/wood, -/obj/item/toy/talking/AI{ - name = "Nanotrasen-brand toy AI"; - pixel_y = 6 - }, -/turf/open/floor/carpet, -/area/command/corporate_showroom) -"jrm" = ( -/obj/effect/spawner/structure/window/reinforced/tinted, -/turf/open/floor/plasteel/dark, -/area/service/chapel/office) -"jrn" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/cargo/miningoffice) -"jso" = ( -/obj/machinery/camera/motion{ - c_tag = "MiniSat Maintenance"; - dir = 8; - network = list("minisat") - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/structure/rack, -/obj/item/storage/toolbox/electrical{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/storage/toolbox/mechanical, -/obj/item/multitool, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/command/storage/satellite) -"jsx" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/table/wood/poker, -/obj/item/clothing/mask/cigarette/cigar, -/turf/open/floor/wood, -/area/service/bar) -"jtn" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/poddoor/preopen{ - id = "bridge blast"; - name = "bridge blast door" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command/glass{ - name = "Bridge Access"; - req_access_txt = "19" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - 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/command/bridge) -"jtr" = ( -/obj/machinery/power/apc{ - areastring = "/area/service/theater"; - dir = 1; - name = "Theatre APC"; - pixel_y = 23 - }, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/obj/structure/table/wood, -/obj/item/clothing/glasses/monocle, -/turf/open/floor/wood, -/area/service/theater) -"jty" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/miningoffice) -"jtI" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"jtX" = ( -/obj/structure/table/wood, -/obj/machinery/computer/libraryconsole/bookmanagement, -/obj/structure/noticeboard{ - desc = "A board for pinning important notices upon. Probably helpful for keeping track of requests."; - dir = 8; - name = "requests board"; - pixel_x = 32 - }, -/turf/open/floor/wood, -/area/service/library) -"jug" = ( -/obj/machinery/door/poddoor/shutters/preopen{ - id = "kitchenhydro"; - name = "Service Shutter" - }, -/obj/machinery/door/airlock/medical/glass{ - name = "Service Door"; - req_one_access_txt = "35;28" - }, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/service/hydroponics) -"juj" = ( -/turf/open/floor/plating, -/area/engineering/atmos) -"juG" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/dark, -/area/command/bridge) -"jvn" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/carpet, -/area/service/theater) -"jvP" = ( -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/dorms) -"jwh" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/cryopod, -/obj/machinery/light_switch{ - pixel_x = -26 - }, -/turf/open/floor/plasteel/dark, -/area/commons/cryopod) -"jwx" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/loading_area{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"jwC" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible, -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"jwE" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/command/heads_quarters/rd) -"jwH" = ( -/obj/item/storage/book/bible, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/obj/machinery/camera{ - c_tag = "Chapel - Fore" - }, -/obj/structure/table/wood, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/service/chapel/main) -"jxm" = ( -/obj/structure/sign/warning/securearea, -/turf/closed/wall/r_wall, -/area/ai_monitored/command/storage/eva) -"jxw" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/engineering/atmos) -"jxD" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/commons/dorms) -"jxI" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"jyd" = ( -/obj/machinery/computer/secure_data, -/obj/structure/cable/yellow{ - 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/security/office) -"jyj" = ( -/obj/machinery/vending/wardrobe/chap_wardrobe, -/turf/open/floor/plasteel/grimy, -/area/service/chapel/office) -"jyl" = ( -/obj/machinery/door/window{ - name = "Captain's Desk"; - req_access_txt = "20" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/wood, -/area/command/heads_quarters/captain/private) -"jyo" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/open/floor/engine, -/area/engineering/main) -"jyv" = ( -/obj/structure/table/reinforced, -/obj/item/stock_parts/cell/high, -/obj/item/stock_parts/cell/high, -/obj/machinery/computer/security/telescreen/circuitry{ - pixel_x = 30 - }, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"jyQ" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/solars/port/aft) -"jyT" = ( -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "MiniSat Exterior - Port Aft"; - dir = 8; - network = list("minisat") - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/aisat/exterior) -"jyX" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"jzm" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/commons/storage/primary) -"jzr" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/office) -"jzU" = ( -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/wood, -/area/service/lawoffice) -"jAn" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"jAr" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/turf/open/floor/plating, -/area/service/janitor) -"jAs" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/wood, -/area/commons/dorms) -"jAG" = ( -/obj/structure/rack, -/obj/item/aicard, -/obj/item/radio/off, -/obj/machinery/computer/security/telescreen/minisat{ - dir = 1; - pixel_y = -29 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/command/bridge) -"jAK" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 24 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/commons/locker) -"jAS" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/item/wrench, -/obj/item/stack/sheet/glass{ - amount = 30 - }, -/obj/item/stack/sheet/metal{ - amount = 30 - }, -/obj/item/stack/cable_coil/random, -/obj/item/stack/cable_coil/random, -/obj/structure/closet, -/obj/item/vending_refill/cigarette, -/turf/open/floor/wood, -/area/service/bar) -"jBe" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"jBh" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/aisat/exterior) -"jBn" = ( -/obj/structure/chair/wood/normal{ - dir = 1 - }, -/turf/open/floor/wood, -/area/commons/dorms) -"jBu" = ( -/obj/machinery/door/window{ - base_state = "right"; - dir = 8; - icon_state = "right"; - name = "Theatre Stage" - }, -/obj/structure/sign/poster/random{ - pixel_y = -32 - }, -/turf/open/floor/carpet, -/area/service/theater) -"jBD" = ( -/obj/machinery/power/apc{ - areastring = "/area/cargo/miningoffice"; - dir = 1; - name = "Mining APC"; - pixel_y = 23 - }, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/machinery/light_switch{ - pixel_y = 38 - }, -/obj/structure/closet/wardrobe/miner, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/miningoffice) -"jBG" = ( -/obj/structure/table/wood, -/obj/item/book/manual/wiki/security_space_law{ - pixel_y = 3 - }, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = 28 - }, -/turf/open/floor/plasteel/dark, -/area/command/bridge) -"jCt" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/storage/primary) -"jDx" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/airlock/command{ - name = "E.V.A. Storage"; - req_access_txt = "18" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/ai_monitored/command/storage/eva) -"jDz" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plating, -/area/engineering/break_room) -"jDD" = ( -/obj/structure/fireaxecabinet{ - pixel_x = -32 - }, -/obj/machinery/camera{ - c_tag = "Atmospherics - Port"; - dir = 4 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, -/turf/open/floor/plasteel/dark/corner{ - dir = 1 - }, -/area/engineering/atmos) -"jDS" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 9 - }, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"jDV" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -27 - }, -/obj/item/kirbyplants{ - icon_state = "plant-03" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/commons/locker) -"jEr" = ( -/obj/machinery/portable_atmospherics/canister, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"jFq" = ( -/turf/closed/wall, -/area/command/heads_quarters/hop) -"jGg" = ( -/turf/open/floor/plasteel, -/area/commons/fitness/pool) -"jGw" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/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/cargo/miningoffice) -"jGA" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/machinery/light, -/turf/open/floor/wood, -/area/service/bar) -"jGW" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/engine/n2o, -/area/engineering/atmos) -"jIg" = ( -/obj/structure/sign/directions/evac, -/obj/structure/sign/directions/medical{ - pixel_y = 8 - }, -/obj/structure/sign/directions/science{ - pixel_y = -8 - }, -/turf/closed/wall, -/area/commons/storage/art) -"jIS" = ( -/obj/machinery/vending/autodrobe, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/wood, -/area/service/theater) -"jJw" = ( -/obj/structure/sign/map/left{ - desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; - icon_state = "map-left-MS"; - pixel_y = 32 - }, -/obj/machinery/camera{ - c_tag = "Atmospherics - Control Room" - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/structure/closet/secure_closet/atmospherics, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark/corner{ - dir = 1 - }, -/area/engineering/atmos) -"jKi" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"jKl" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/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 - }, -/turf/open/floor/plasteel, -/area/commons/toilet/auxiliary) -"jKK" = ( -/obj/machinery/door/airlock/external{ - req_access_txt = "13" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"jLc" = ( -/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" - }, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/hop) -"jLu" = ( -/obj/effect/landmark/start/chief_engineer, -/obj/structure/chair/office/light{ - dir = 1; - 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, -/area/command/heads_quarters/ce) -"jLE" = ( -/obj/machinery/door/airlock/maintenance/abandoned{ - name = "Storage Room"; - req_access_txt = "12" - }, -/obj/structure/barricade/wooden, -/turf/open/floor/plating, -/area/commons/fitness/pool) -"jLF" = ( -/obj/machinery/door/airlock{ - name = "Cryogenics" - }, -/obj/machinery/door/firedoor, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/dark, -/area/commons/cryopod) -"jLH" = ( -/obj/machinery/door/airlock/hatch{ - name = "MiniSat Space Access Airlock"; - req_one_access_txt = "32;19" - }, -/turf/open/floor/plating, -/area/ai_monitored/aisat/exterior) -"jLN" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/storage/primary) -"jLP" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/commons/fitness/recreation) -"jLY" = ( -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/obj/structure/sign/poster/official/random{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"jMq" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/landmark/secequipment, -/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/security/office) -"jMs" = ( -/obj/structure/chair/stool, -/turf/open/floor/plasteel/chapel{ - dir = 1 - }, -/area/service/chapel/main) -"jMw" = ( -/obj/structure/sign/warning/radiation/rad_area{ - pixel_y = 32 - }, -/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/engineering/gravity_generator) -"jMP" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/hos) -"jNm" = ( -/obj/machinery/door/airlock/hatch{ - name = "MiniSat Space Access Airlock"; - req_one_access_txt = "32;19" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/break_room) -"jNs" = ( -/obj/machinery/power/apc/highcap/five_k{ - areastring = "/area/tcommsat/server"; - dir = 4; - name = "Telecomms Server Room APC"; - pixel_x = 24 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Telecomms - Server Room - Aft-Starboard"; - dir = 8; - network = list("ss13","tcomms") - }, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/turf/open/floor/plasteel/dark/telecomms, -/area/tcommsat/server) -"jNt" = ( -/obj/structure/rack, -/obj/item/storage/secure/briefcase, -/obj/item/clothing/mask/cigarette/cigar, -/obj/machinery/computer/security/telescreen/ce{ - dir = 1; - 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/command/heads_quarters/ce) -"jNA" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/on, -/obj/structure/window/reinforced, -/turf/open/floor/plating/airless, -/area/ai_monitored/aisat/exterior) -"jOk" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"jOA" = ( -/obj/machinery/portable_atmospherics/canister/toxins, -/turf/open/floor/plating, -/area/engineering/main) -"jPl" = ( -/obj/structure/table/reinforced, -/obj/item/reagent_containers/food/condiment/saltshaker{ - pixel_x = -3 - }, -/obj/item/reagent_containers/food/condiment/peppermill{ - pixel_x = 3 - }, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/service/bar) -"jPn" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/cargo/storage) -"jPu" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"jPE" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/command/storage/eva) -"jPO" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/commons/fitness/recreation) -"jPT" = ( -/obj/machinery/computer/secure_data{ - dir = 1 - }, -/turf/open/floor/wood, -/area/command/heads_quarters/hop) -"jPX" = ( -/obj/structure/chair/comfy/brown{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/command/heads_quarters/captain/private) -"jQb" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/commons/cryopod) -"jQR" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 24 - }, -/turf/open/floor/plasteel, -/area/commons/toilet/auxiliary) -"jQT" = ( -/turf/open/floor/engine/vacuum, -/area/engineering/atmos) -"jRc" = ( -/obj/structure/table, -/obj/item/stack/wrapping_paper, -/obj/item/stack/wrapping_paper, -/obj/machinery/requests_console{ - department = "Cargo Bay"; - departmentType = 2; - pixel_y = -30 - }, -/obj/item/stack/packageWrap{ - pixel_x = 2; - pixel_y = -3 - }, -/obj/item/stack/packageWrap{ - pixel_x = 2; - pixel_y = -3 - }, -/obj/item/stack/packageWrap{ - pixel_x = 2; - pixel_y = -3 - }, -/obj/item/stack/packageWrap{ - pixel_x = 2; - pixel_y = -3 - }, -/obj/item/stack/packageWrap{ - pixel_x = 2; - pixel_y = -3 - }, -/obj/item/stack/packageWrap{ - pixel_x = 2; - pixel_y = -3 - }, -/obj/item/stack/packageWrap{ - pixel_x = 2; - pixel_y = -3 - }, -/obj/item/stack/packageWrap{ - pixel_x = 2; - pixel_y = -3 - }, -/obj/item/storage/box/lights/mixed, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white/corner, -/area/cargo/sorting) -"jRj" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/cargo/sorting) -"jRk" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/commons/dorms) -"jRI" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plasteel, -/area/commons/locker) -"jRU" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/orange/visible{ - dir = 4 - }, -/turf/open/floor/engine, -/area/engineering/main) -"jSd" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/closed/wall, -/area/service/chapel/main) -"jSe" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/carpet, -/area/command/heads_quarters/hop) -"jSv" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/wood, -/area/service/lawoffice) -"jSx" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/engineering/main) -"jSy" = ( -/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/engineering/gravity_generator) -"jSM" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/cargo/office) -"jSQ" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/command/teleporter) -"jTb" = ( -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"jTX" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/command/gateway) -"jUl" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/table/glass, -/obj/item/folder/blue{ - pixel_y = 2 - }, -/obj/item/folder/blue{ - pixel_y = 2 - }, -/turf/open/floor/plasteel/dark, -/area/command/bridge) -"jUo" = ( -/obj/structure/table/wood, -/obj/machinery/light_switch{ - pixel_x = -28 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/item/folder, -/turf/open/floor/wood, -/area/commons/vacant_room/office) -"jUp" = ( -/obj/machinery/door/window/northleft{ - dir = 8; - name = "glass door"; - req_access_txt = "24" - }, -/obj/machinery/door/window/northleft{ - dir = 4; - name = "glass door"; - req_access_txt = "24" - }, -/turf/open/floor/plating, -/area/engineering/atmos) -"jUz" = ( -/turf/closed/wall, -/area/commons/locker) -"jUF" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/plasteel, -/area/engineering/main) -"jVR" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/meter, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 4 - }, -/turf/open/floor/engine, -/area/engineering/main) -"jXa" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/holopad, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"jXz" = ( -/obj/structure/closet/crate/coffin, -/obj/machinery/light/small, -/turf/open/floor/plating, -/area/service/chapel/main) -"jYM" = ( -/obj/structure/chair/stool, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel/chapel{ - dir = 4 - }, -/area/service/chapel/main) -"jYV" = ( -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/aisat/exterior) -"jZs" = ( -/obj/machinery/door/poddoor/shutters{ - id = "teleshutter"; - name = "Teleporter Access Shutter" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/command/teleporter) -"jZx" = ( -/obj/structure/sign/warning/fire, -/turf/closed/wall/r_wall, -/area/engineering/supermatter) -"jZA" = ( -/obj/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command/bridge) -"jZI" = ( -/obj/machinery/status_display/ai{ - pixel_y = 32 - }, -/obj/item/storage/toolbox/mechanical{ - pixel_x = -1; - pixel_y = 4 - }, -/obj/structure/table/glass, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/command/bridge) -"kbg" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/components/trinary/filter/flipped/critical{ - dir = 1 - }, -/turf/open/floor/engine, -/area/engineering/main) -"kbk" = ( -/obj/structure/table, -/obj/item/aicard, -/obj/item/aiModule/reset, -/turf/open/floor/plasteel/dark, -/area/engineering/storage/tech) -"kbS" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/aisat/exterior) -"kbX" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/machinery/door/poddoor/preopen{ - id = "bridge blast"; - name = "bridge blast door" - }, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/turf/open/floor/plating, -/area/command/bridge) -"kcH" = ( -/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/commons/storage/primary) -"kcT" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/cafeteria, -/area/command/heads_quarters/cmo) -"kdi" = ( -/obj/machinery/portable_atmospherics/canister/nitrogen, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"kdB" = ( -/obj/machinery/atmospherics/pipe/manifold/yellow/visible{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"kdR" = ( -/obj/structure/rack{ - icon = 'icons/obj/stationobjs.dmi'; - icon_state = "minibar"; - name = "skeletal minibar" - }, -/obj/item/storage/fancy/candle_box, -/turf/open/floor/engine/cult, -/area/service/library) -"kea" = ( -/obj/structure/pool/ladder{ - dir = 8; - pixel_x = 4 - }, -/turf/open/pool, -/area/commons/fitness/pool) -"ker" = ( -/turf/closed/wall, -/area/service/chapel/office) -"keY" = ( -/obj/structure/table, -/obj/item/folder/red, -/obj/item/assembly/flash/handheld, -/turf/open/floor/plasteel, -/area/security/office) -"kfb" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -24 - }, -/turf/open/floor/plasteel/dark, -/area/commons/cryopod) -"kff" = ( -/obj/machinery/door/airlock/external{ - name = "Mining Dock Airlock" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/turf/open/floor/plating, -/area/cargo/miningoffice) -"kfu" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"kfM" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"kfN" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/holopad, -/turf/open/floor/plasteel, -/area/service/hydroponics/garden) -"kfS" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/plasteel, -/area/cargo/storage) -"kfT" = ( -/obj/item/stack/cable_coil, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solars/port/fore) -"kgv" = ( -/obj/machinery/door/poddoor/shutters/preopen{ - id = "kitchen"; - name = "Serving Hatch" - }, -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/service/kitchen) -"kgN" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/airlock/medical/glass{ - name = "Operating Theatre"; - req_access_txt = "45" - }, -/turf/open/floor/plasteel/white, -/area/medical/surgery) -"kgW" = ( -/obj/machinery/power/apc{ - areastring = "/area/ai_monitored/command/nuke_storage"; - dir = 1; - name = "Vault APC"; - pixel_y = 23 - }, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/turf/open/floor/circuit/green{ - luminosity = 2 - }, -/area/ai_monitored/command/nuke_storage) -"kho" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/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/ai_monitored/aisat/exterior) -"khq" = ( -/turf/open/floor/plasteel/dark, -/area/engineering/gravity_generator) -"khu" = ( -/obj/structure/chair/office/light{ - dir = 1 - }, -/obj/effect/landmark/start/chief_medical_officer, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/cafeteria, -/area/command/heads_quarters/cmo) -"khP" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"kig" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/light_switch{ - pixel_y = 28 - }, -/obj/item/paper_bin{ - pixel_x = -2; - pixel_y = 8 - }, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/structure/table/wood, -/turf/open/floor/plasteel/dark, -/area/service/chapel/main) -"kiA" = ( -/obj/structure/closet/emcloset, -/obj/structure/sign/warning/pods{ - 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/commons/fitness/recreation) -"kiL" = ( -/obj/machinery/computer/slot_machine{ - pixel_y = 2 - }, -/obj/structure/sign/barsign{ - pixel_y = 32 - }, -/turf/open/floor/carpet, -/area/service/bar) -"kiW" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"kjA" = ( -/obj/item/clothing/gloves/color/yellow, -/obj/item/clothing/gloves/color/yellow, -/obj/item/clothing/gloves/color/yellow, -/obj/item/clothing/suit/hazardvest, -/obj/item/clothing/suit/hazardvest, -/obj/item/tank/internals/emergency_oxygen/engi, -/obj/item/tank/internals/emergency_oxygen/engi, -/obj/effect/turf_decal/delivery, -/obj/structure/table, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"kjR" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"kkl" = ( -/obj/effect/spawner/structure/window/reinforced/tinted, -/turf/open/floor/plating, -/area/service/hydroponics/garden) -"kkR" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - name = "Recreation Area" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/commons/dorms) -"klE" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/commons/fitness/recreation) -"klN" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/commons/fitness/pool) -"klX" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/carpet, -/area/command/heads_quarters/captain/private) -"kmr" = ( -/obj/effect/landmark/start/botanist, -/obj/machinery/holopad, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"kmP" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Bar" - }, -/turf/open/floor/plasteel, -/area/service/bar) -"kmT" = ( -/obj/structure/table/reinforced, -/obj/machinery/computer/security/telescreen/rd, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/command/heads_quarters/rd) -"knM" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/structure/chair/comfy/beige, -/turf/open/floor/carpet, -/area/command/bridge) -"kps" = ( -/obj/machinery/light/small, -/turf/open/floor/plasteel/chapel{ - dir = 4 - }, -/area/service/chapel/main) -"kpP" = ( -/obj/structure/table/wood, -/obj/item/book/granter/spell/smoke/lesser{ - name = "mysterious old book of " - }, -/obj/item/reagent_containers/food/drinks/bottle/holywater{ - pixel_x = -2; - pixel_y = 2 - }, -/obj/item/nullrod{ - pixel_x = 4 - }, -/obj/item/organ/heart, -/obj/item/soulstone/anybody/chaplain, -/turf/open/floor/plasteel/cult, -/area/service/chapel/office) -"kqF" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating, -/area/engineering/break_room) -"kqP" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - name = "Bar Access"; - req_access_txt = "25" - }, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/service/bar) -"kro" = ( -/obj/machinery/air_sensor/atmos/oxygen_tank, -/turf/open/floor/engine/o2, -/area/engineering/atmos) -"krD" = ( -/turf/closed/wall, -/area/science/circuit) -"krL" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/commons/dorms) -"krO" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Engineering - Entrance"; - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"ksp" = ( -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/item/toy/beach_ball{ - desc = "The simple beach ball is one of Nanotrasen's most popular products. 'Why do we make beach balls? Because we can! (TM)' - Nanotrasen"; - name = "Nanotrasen-brand beach ball"; - pixel_y = 7 - }, -/obj/structure/table/wood, -/turf/open/floor/carpet, -/area/command/corporate_showroom) -"ksO" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/airlock/public/glass{ - name = "Library" - }, -/turf/open/floor/wood, -/area/service/library) -"ksV" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"ktz" = ( -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/office) -"ktI" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/cyan/visible, -/turf/open/floor/plating, -/area/engineering/atmos) -"ktS" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/carbon_input{ - dir = 8 - }, -/turf/open/floor/engine/co2, -/area/engineering/atmos) -"ktV" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/closed/wall, -/area/engineering/atmos) -"kuk" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel/dark/corner, -/area/engineering/break_room) -"kum" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/commons/dorms) -"kuG" = ( -/obj/structure/sign/map/left{ - desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; - icon_state = "map-left-MS"; - pixel_y = 32 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"kvd" = ( -/obj/structure/closet/crate, -/obj/item/flashlight{ - pixel_x = 1; - pixel_y = 5 - }, -/obj/item/flashlight{ - pixel_x = 1; - pixel_y = 5 - }, -/obj/item/stock_parts/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/obj/item/stack/cable_coil{ - pixel_x = 3; - pixel_y = -7 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/miningoffice) -"kvr" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "MiniSat Exterior - Starboard Fore"; - dir = 4; - network = list("minisat") - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/aisat/exterior) -"kvJ" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/light_construct/small{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/warehouse) -"kvK" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/carpet, -/area/command/heads_quarters/hop) -"kwq" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/office) -"kwD" = ( -/obj/structure/rack, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/spawner/lootdrop/techstorage/tcomms, -/turf/open/floor/plasteel/dark, -/area/engineering/storage/tech) -"kwE" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/obj/machinery/shower{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"kwP" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/delivery, -/obj/structure/closet/secure_closet/engineering_welding, -/turf/open/floor/plasteel, -/area/engineering/main) -"kxk" = ( -/obj/structure/table/reinforced, -/obj/machinery/cell_charger, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"kxM" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/break_room) -"kxY" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"kyq" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel/chapel{ - dir = 8 - }, -/area/service/chapel/main) -"kyr" = ( -/obj/machinery/light/small, -/turf/open/floor/carpet, -/area/commons/dorms) -"kyt" = ( -/obj/machinery/button/door{ - id = "hop"; - name = "Privacy Shutters Control"; - pixel_x = -24; - pixel_y = -6; - req_access_txt = "28" - }, -/obj/machinery/light_switch{ - pixel_x = -25; - pixel_y = 5 - }, -/turf/open/floor/carpet, -/area/command/heads_quarters/hop) -"kyA" = ( -/obj/structure/table, -/obj/item/plant_analyzer, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/storage/tech) -"kyJ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"kyL" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/locker) -"kzn" = ( -/obj/machinery/door/airlock/external{ - name = "Departure Lounge Airlock" - }, -/obj/effect/turf_decal/delivery, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"kzo" = ( -/obj/machinery/camera/motion{ - c_tag = "E.V.A. Storage"; - dir = 8 - }, -/obj/machinery/requests_console{ - department = "EVA"; - pixel_x = 32 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/command/storage/eva) -"kAc" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/table, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/service/kitchen) -"kAr" = ( -/obj/structure/table/wood, -/obj/item/hand_tele, -/obj/structure/window/reinforced, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_x = 27 - }, -/turf/open/floor/wood, -/area/command/heads_quarters/captain/private) -"kAx" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/service/kitchen) -"kAz" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "packageSort2" - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/cargo/sorting) -"kAA" = ( -/obj/structure/reflector/single/anchored{ - dir = 10 - }, -/turf/open/floor/plating, -/area/engineering/main) -"kAB" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/power/apc/highcap/ten_k{ - areastring = "/area/hallway/secondary/command"; - dir = 1; - name = "Command Hallway APC"; - pixel_y = 23 - }, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"kBg" = ( -/obj/machinery/light, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/structure/rack, -/obj/item/storage/secure/briefcase, -/obj/item/clothing/mask/cigarette/cigar, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/command/bridge) -"kBk" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "Port to Filter" - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"kBm" = ( -/obj/structure/closet/secure_closet/exile, -/obj/structure/extinguisher_cabinet{ - pixel_x = -27 - }, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/turf/open/floor/plasteel{ - dir = 1 - }, -/area/command/gateway) -"kBn" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/spawner/structure/window/plasma/reinforced, -/turf/open/floor/plating, -/area/engineering/main) -"kBr" = ( -/obj/structure/closet/secure_closet/personal, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/item/clothing/under/misc/assistantformal, -/obj/structure/sign/map/left{ - desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; - icon_state = "map-left-MS"; - pixel_y = 32 - }, -/obj/item/clothing/suit/hooded/wintercoat, -/obj/item/clothing/shoes/winterboots, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/commons/locker) -"kBH" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/service/kitchen) -"kCp" = ( -/turf/closed/wall/r_wall, -/area/engineering/gravity_generator) -"kCR" = ( -/obj/structure/table/wood, -/obj/machinery/light/small, -/obj/item/clothing/glasses/regular/hipster{ - name = "Hipster Glasses" - }, -/turf/open/floor/wood, -/area/service/theater) -"kDc" = ( -/obj/machinery/reagentgrinder, -/obj/structure/table/wood, -/turf/open/floor/wood, -/area/service/bar) -"kDg" = ( -/turf/closed/wall, -/area/service/janitor) -"kDi" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/machinery/door/poddoor/preopen{ - id = "ceprivacy"; - name = "privacy shutter" - }, -/turf/open/floor/plating, -/area/command/heads_quarters/ce) -"kDk" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/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/aisat/exterior) -"kDw" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solars/starboard/fore) -"kDI" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solars/port/aft) -"kEn" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "chapel_shutters_space"; - name = "chapel shutters" - }, -/turf/open/floor/plating, -/area/service/chapel/main) -"kEE" = ( -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"kEQ" = ( -/obj/machinery/button/door{ - id = "qm_mine_warehouse"; - name = "Warehouse Door Control"; - pixel_x = 24; - pixel_y = 28; - req_access_txt = "48" - }, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/miningoffice) -"kFi" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/obj/effect/landmark/start/cargo_technician, -/turf/open/floor/plasteel, -/area/cargo/storage) -"kFo" = ( -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"kFM" = ( -/obj/item/phone{ - desc = "Supposedly a direct line to Nanotrasen Central Command. It's not even plugged in."; - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/cigbutt/cigarbutt{ - pixel_x = 5; - pixel_y = -1 - }, -/obj/structure/table/wood, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 28 - }, -/turf/open/floor/plasteel/grimy, -/area/security/office) -"kFZ" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow, -/obj/machinery/door/poddoor/preopen{ - id = "rdprivacy"; - name = "privacy shutter" - }, -/turf/open/floor/plating, -/area/command/heads_quarters/rd) -"kGl" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment, -/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/office) -"kGH" = ( -/obj/machinery/atmospherics/components/trinary/filter/atmos/plasma{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"kGY" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, -/obj/structure/closet/secure_closet/freezer/fridge, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/service/kitchen) -"kHh" = ( -/obj/structure/table, -/obj/item/paper/pamphlet/gateway, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/turf/open/floor/plasteel{ - dir = 1 - }, -/area/command/gateway) -"kHk" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engineering/main) -"kHv" = ( -/obj/item/flashlight/lamp/green{ - pixel_x = 1; - pixel_y = 5 - }, -/obj/machinery/button/door{ - id = "hop"; - name = "Privacy Shutters Control"; - pixel_y = 25; - req_access_txt = "28" - }, -/obj/structure/table/wood, -/turf/open/floor/wood, -/area/command/heads_quarters/hop) -"kHw" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/structure/table, -/obj/item/gps{ - gpstag = "MINE_PUB" - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"kIk" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - name = "Unisex Restrooms" - }, -/turf/open/floor/plasteel/freezer, -/area/commons/toilet/restrooms) -"kIw" = ( -/obj/machinery/atmospherics/components/trinary/filter/atmos/n2{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"kJc" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/commons/locker) -"kJB" = ( -/obj/structure/table, -/obj/item/stock_parts/subspace/treatment, -/obj/item/stock_parts/subspace/treatment, -/obj/item/stock_parts/subspace/treatment, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 24 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/storage/tcomms) -"kJM" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command/glass{ - name = "Bridge"; - req_access_txt = "19" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/command/bridge) -"kJQ" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible{ - dir = 1 - }, -/obj/machinery/meter, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"kKa" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"kKl" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable, -/turf/open/space, -/area/solars/port/aft) -"kKq" = ( -/obj/machinery/holopad, -/turf/open/floor/wood, -/area/service/lawoffice) -"kKv" = ( -/obj/machinery/vending/tool, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/engineering/main) -"kKA" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/service/theater) -"kKR" = ( -/obj/structure/window/reinforced, -/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/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"kLa" = ( -/obj/structure/table, -/obj/item/toy/cards/deck, -/turf/open/floor/plasteel, -/area/commons/dorms) -"kLr" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"kLD" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/camera{ - c_tag = "Bridge - Starboard Access"; - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel/dark, -/area/command/bridge) -"kLP" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"kMq" = ( -/obj/item/flashlight/lantern{ - pixel_y = 7 - }, -/obj/structure/table/wood, -/turf/open/floor/plasteel/dark, -/area/service/chapel/main) -"kMC" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/command/gateway) -"kMT" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel, -/area/commons/storage/art) -"kNr" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"kNs" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/nitrous_input{ - dir = 8 - }, -/turf/open/floor/engine/n2o, -/area/engineering/atmos) -"kNB" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/closed/wall, -/area/commons/fitness/recreation) -"kNM" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"kOt" = ( -/obj/item/multitool, -/obj/item/screwdriver, -/obj/structure/table/reinforced, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"kPl" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "packageSort2" - }, -/obj/structure/plasticflaps, -/turf/open/floor/plating, -/area/cargo/sorting) -"kPw" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/commons/fitness/recreation) -"kPR" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/aisat/exterior) -"kPU" = ( -/obj/structure/table, -/obj/item/restraints/handcuffs, -/obj/item/radio/off, -/turf/open/floor/plasteel, -/area/security/office) -"kPW" = ( -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 24 - }, -/turf/open/floor/wood, -/area/service/lawoffice) -"kPZ" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/service/bar) -"kQh" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/turf/open/floor/wood, -/area/command/corporate_showroom) -"kQm" = ( -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/obj/structure/window/reinforced, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/aisat/exterior) -"kQJ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/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/service/hydroponics) -"kQP" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=6-Port-Central"; - location = "5-Customs" - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"kQW" = ( -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solars/port/fore) -"kRE" = ( -/obj/machinery/power/apc{ - areastring = "/area/ai_monitored/turret_protected/ai"; - dir = 1; - name = "AI Chamber APC"; - pixel_y = 23 - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/turf/open/floor/circuit, -/area/ai_monitored/turret_protected/ai) -"kRI" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1; - name = "Atmos to Loop" - }, -/turf/open/floor/engine, -/area/engineering/main) -"kRO" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "N2O to Pure" - }, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"kRP" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/spawner/structure/window/plasma/reinforced, -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, -/turf/open/floor/plating, -/area/engineering/main) -"kSn" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"kSp" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/command/gateway) -"kSs" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics/garden) -"kSt" = ( -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/obj/structure/table/wood, -/obj/item/paper_bin{ - pixel_x = -2; - pixel_y = 6 - }, -/turf/open/floor/wood, -/area/commons/vacant_room/office) -"kSy" = ( -/obj/machinery/power/apc{ - areastring = "/area/maintenance/solars/starboard/aft"; - dir = 1; - name = "Starboard Quarter Solar APC"; - pixel_y = 23 - }, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/aft) -"kSF" = ( -/obj/structure/lattice, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/space, -/area/ai_monitored/aisat/exterior) -"kSV" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/airlock/public/glass{ - name = "Funeral Parlour" - }, -/turf/open/floor/plasteel/dark, -/area/service/chapel/main) -"kTe" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Engineering Supermatter Port"; - dir = 8; - network = list("ss13","engine") - }, -/obj/machinery/airalarm/engine{ - dir = 8; - pixel_x = 24 - }, -/obj/machinery/atmospherics/pipe/manifold/green/visible{ - dir = 8 - }, -/turf/open/floor/engine, -/area/engineering/supermatter) -"kTv" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Crew Quarters Access" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/commons/locker) -"kTx" = ( -/obj/structure/closet/secure_closet/miner, -/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/cargo/miningoffice) -"kTS" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/commons/fitness/pool) -"kUx" = ( -/obj/machinery/camera{ - c_tag = "Council Chamber" - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/status_display/ai{ - pixel_y = 32 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel/dark, -/area/command/bridge) -"kUS" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/obj/machinery/vending/wardrobe/jani_wardrobe, -/turf/open/floor/plasteel, -/area/service/janitor) -"kVo" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"kVz" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/service/chapel/main) -"kVZ" = ( -/obj/item/paper_bin{ - pixel_x = -2; - pixel_y = 8 - }, -/obj/item/pen, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/table/wood, -/turf/open/floor/plasteel/grimy, -/area/service/chapel/office) -"kWa" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/vending/snack/random, -/turf/open/floor/plasteel/dark, -/area/command/bridge) -"kWh" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solars/port/fore) -"kWW" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/engineering/atmos) -"kXd" = ( -/obj/machinery/power/terminal, -/obj/structure/cable, -/obj/structure/extinguisher_cabinet{ - pixel_x = -27 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"kXp" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/wood, -/area/service/theater) -"kXt" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/dorms) -"kXR" = ( -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/turf/open/floor/wood, -/area/commons/vacant_room/office) -"kXS" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/gravity_generator) -"kYl" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"kYp" = ( -/obj/machinery/door/firedoor/border_only/closed{ - dir = 8; - name = "Animal Pen B" - }, -/turf/open/floor/grass, -/area/service/hydroponics/garden) -"kYt" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "2-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, -/area/security/office) -"kYv" = ( -/turf/closed/wall, -/area/commons/vacant_room/office) -"kYC" = ( -/obj/machinery/hydroponics/constructable, -/obj/machinery/light, -/obj/machinery/power/apc{ - areastring = "/area/service/hydroponics"; - name = "Hydroponics APC"; - pixel_y = -28 - }, -/obj/structure/cable/yellow, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"kYD" = ( -/obj/machinery/light_switch{ - pixel_y = 28 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"kYE" = ( -/obj/machinery/holopad/secure, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/command/heads_quarters/rd) -"kYM" = ( -/obj/structure/chair, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/service/chapel/main) -"kYY" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/commons/locker) -"kZm" = ( -/obj/structure/table/wood, -/obj/machinery/requests_console{ - announcementConsole = 1; - department = "Head of Security's Desk"; - departmentType = 5; - name = "Head of Security RC"; - pixel_y = 30 - }, -/obj/machinery/computer/med_data/laptop, -/obj/item/storage/secure/safe/HoS{ - pixel_x = 36; - pixel_y = 28 - }, -/obj/machinery/camera{ - c_tag = "Head of Security's Office" - }, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/hos) -"kZs" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/commons/locker) -"kZv" = ( -/obj/structure/chair/wood/normal{ - dir = 4 - }, -/turf/open/floor/wood, -/area/commons/dorms) -"kZR" = ( -/obj/item/storage/book/bible, -/obj/structure/table/wood, -/turf/open/floor/plasteel/dark, -/area/service/chapel/main) -"lal" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/circuit) -"lao" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/service/kitchen) -"lbV" = ( -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/item/clothing/glasses/hud/health, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/table/glass, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/cafeteria, -/area/command/heads_quarters/cmo) -"lcj" = ( -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=8"; - dir = 8; - freq = 1400; - location = "Hydroponics" - }, -/obj/structure/plasticflaps/opaque, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/turf/open/floor/plasteel{ - dir = 1 - }, -/area/service/hydroponics) -"lcm" = ( -/obj/item/wrench, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"lcv" = ( -/obj/machinery/door/airlock/external{ - name = "Public Mining Dock" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"lcH" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/item/bodypart/chest/robot{ - pixel_x = -2; - pixel_y = 2 - }, -/obj/item/bodypart/head/robot{ - pixel_x = 3; - pixel_y = 2 - }, -/obj/structure/table/wood, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/turf/open/floor/carpet, -/area/command/corporate_showroom) -"lcV" = ( -/obj/machinery/requests_console{ - department = "Chapel"; - departmentType = 2; - pixel_y = 30 - }, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/plasteel/grimy, -/area/service/chapel/office) -"ldb" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 9 - }, -/turf/open/floor/plating, -/area/engineering/atmos) -"lde" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/structure/chair/office/dark{ - dir = 1 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, -/obj/machinery/camera{ - c_tag = "Bridge - Starboard"; - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/command/bridge) -"ldm" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/obj/machinery/camera{ - c_tag = "Locker Room Starboard" - }, -/obj/structure/sign/warning/pods{ - pixel_y = 30 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/commons/locker) -"ldI" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 8; - name = "Air to External Air Ports" - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"lep" = ( -/obj/structure/cable/yellow{ - 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/engineering/storage/tech) -"les" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 24 - }, -/obj/machinery/vending/dinnerware, -/turf/open/floor/plasteel/cafeteria, -/area/service/kitchen) -"leN" = ( -/obj/machinery/atmospherics/pipe/simple, -/obj/machinery/meter{ - name = "Mixed Air Tank Out" - }, -/obj/structure/grille, -/turf/closed/wall/r_wall, -/area/engineering/atmos) -"lgF" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock/mining{ - name = "Cargo Bay"; - req_one_access_txt = "48;50" - }, -/obj/effect/turf_decal/delivery, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/construction/storage_wing) -"lgH" = ( -/turf/open/floor/plasteel/chapel{ - dir = 1 - }, -/area/service/chapel/main) -"lgY" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/junction/flip{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/commons/locker) -"lhH" = ( -/obj/structure/table, -/obj/item/storage/toolbox/mechanical{ - pixel_x = -2; - pixel_y = -1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/storage/primary) -"lhP" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock{ - name = "Garden" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics/garden) -"lix" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engineering/atmos) -"liF" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -29 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/showroomfloor, -/area/service/kitchen) -"lja" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "Research Director's Office"; - req_access_txt = "30" - }, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/command/heads_quarters/rd) -"ljs" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/cafeteria, -/area/command/heads_quarters/cmo) -"ljM" = ( -/obj/structure/chair/stool{ - pixel_y = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/commons/locker) -"lkU" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/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/command/heads_quarters/ce) -"llb" = ( -/obj/structure/table/reinforced, -/obj/item/integrated_circuit_printer, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"llh" = ( -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/structure/table/wood, -/obj/item/radio/intercom{ - freerange = 1; - frequency = 1424; - name = "Interrogation Intercom"; - pixel_y = -31 - }, -/turf/open/floor/plasteel/grimy, -/area/security/office) -"llE" = ( -/obj/structure/closet/secure_closet/engineering_chief, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/airalarm{ - dir = 8; - 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/command/heads_quarters/ce) -"lmb" = ( -/obj/machinery/power/port_gen/pacman, -/obj/structure/cable/yellow, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/turf/open/floor/plasteel{ - dir = 1 - }, -/area/engineering/main) -"lmm" = ( -/obj/structure/table/wood, -/obj/item/pen/red, -/obj/item/pen/blue{ - pixel_x = 5; - pixel_y = 5 - }, -/turf/open/floor/wood, -/area/service/library) -"lmt" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"lnm" = ( -/obj/structure/chair/office/dark{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/command/bridge) -"lnY" = ( -/obj/structure/chair/comfy/beige, -/turf/open/floor/carpet, -/area/command/bridge) -"lod" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/landmark/start/station_engineer, -/turf/open/floor/plasteel, -/area/engineering/main) -"lpm" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -24 - }, -/turf/open/floor/carpet, -/area/command/heads_quarters/captain/private) -"lpD" = ( -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/machinery/holopad/secure, -/turf/open/floor/plasteel/dark/telecomms, -/area/tcommsat/server) -"lpS" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Auxiliary Tool Storage"; - req_access_txt = "12" - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/commons/storage/tools) -"lqj" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 9 - }, -/obj/machinery/power/rad_collector/anchored, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/structure/window/plasma/reinforced{ - dir = 1 - }, -/turf/open/floor/engine, -/area/engineering/supermatter) -"lqR" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/office) -"lrJ" = ( -/obj/machinery/power/apc/highcap/five_k{ - areastring = "/area/commons/toilet/auxiliary"; - name = "Auxiliary Restrooms APC"; - pixel_y = -24 - }, -/obj/structure/cable/yellow, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/commons/toilet/auxiliary) -"lrM" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "MiniSat Maintenance"; - req_access_txt = "32" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/command/storage/satellite) -"lrV" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"ltc" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/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/treatment_center) -"ltg" = ( -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"lty" = ( -/obj/structure/chair/stool, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/chapel{ - dir = 1 - }, -/area/service/chapel/main) -"luo" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/cafeteria, -/area/command/heads_quarters/cmo) -"lux" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "lawyer_shutters"; - name = "law office shutters" - }, -/turf/open/floor/plating, -/area/service/lawoffice) -"lvk" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/window/northleft{ - name = "Inner Pipe Access"; - req_access_txt = "24" - }, -/obj/machinery/atmospherics/pipe/simple/yellow/visible, -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"lvm" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/computer/shuttle/mining/common{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"lvr" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"lvu" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/service/kitchen) -"lvy" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/storage/primary) -"lvR" = ( -/obj/effect/landmark/start/bartender, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/service/bar) -"lwz" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/service/kitchen) -"lwJ" = ( -/obj/machinery/light/small, -/turf/open/floor/engine/o2, -/area/engineering/atmos) -"lwL" = ( -/turf/open/floor/plasteel, -/area/service/janitor) -"lwN" = ( -/obj/structure/chair/stool/bar, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/service/bar) -"lwX" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/bot_white/right, -/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/command/nuke_storage) -"lxd" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/landmark/start/assistant, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"lxs" = ( -/obj/structure/closet/crate/freezer, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 3; - name = "3maintenance loot spawner" - }, -/turf/open/floor/plasteel, -/area/cargo/warehouse) -"lxw" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/cargo/sorting) -"lyF" = ( -/obj/structure/table, -/obj/machinery/cell_charger, -/obj/item/stock_parts/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/turf/open/floor/plasteel{ - dir = 1 - }, -/area/command/gateway) -"lyU" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_x = 30 - }, -/obj/machinery/vending/wardrobe/curator_wardrobe, -/turf/open/floor/engine/cult, -/area/service/library) -"lzk" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"lzo" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/mining/glass{ - name = "Cargo Office"; - req_one_access_txt = "48;50" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/cargo/office) -"lzt" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Vault Storage" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - 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/construction/storage_wing) -"lzQ" = ( -/obj/machinery/holopad, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"lAt" = ( -/obj/machinery/power/apc{ - areastring = "/area/security/checkpoint/supply"; - dir = 1; - name = "Security Post - Cargo Bay APC"; - pixel_x = 1; - pixel_y = 23 - }, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/supply) -"lAF" = ( -/obj/structure/table/wood, -/obj/item/paper_bin{ - pixel_x = -2; - pixel_y = 4 - }, -/obj/item/pen, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/wood, -/area/service/library) -"lAN" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/ai_slipper{ - uses = 10 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/aisat/exterior) -"lBg" = ( -/turf/open/floor/grass, -/area/service/hydroponics/garden) -"lBi" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/wood, -/area/service/library) -"lBv" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/toxin_input{ - dir = 8 - }, -/turf/open/floor/engine/plasma, -/area/engineering/atmos) -"lBR" = ( -/obj/structure/table/wood, -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/turf/open/floor/carpet, -/area/command/bridge) -"lBY" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/aisat/exterior) -"lCe" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/plating, -/area/commons/fitness/pool) -"lCf" = ( -/obj/structure/tank_dispenser{ - pixel_x = -1 - }, -/turf/open/floor/plasteel/dark/corner{ - dir = 1 - }, -/area/engineering/atmos) -"lDu" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/airlock/public/glass{ - name = "Bar" - }, -/turf/open/floor/plasteel, -/area/service/bar) -"lDU" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "lawyer_shutters"; - name = "law office shutters" - }, -/turf/open/floor/plating, -/area/service/lawoffice) -"lEn" = ( -/obj/effect/spawner/lootdrop/maintenance, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/cargo/storage) -"lEx" = ( -/turf/closed/wall, -/area/cargo/office) -"lEN" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/dorms) -"lFD" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/structure/chair/stool{ - pixel_y = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/commons/locker) -"lFH" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/suit_storage_unit/atmos, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"lFQ" = ( -/obj/structure/chair/office/dark{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/cargo/sorting) -"lFR" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/vending/clothing, -/turf/open/floor/plasteel/white/corner, -/area/hallway/secondary/entry) -"lFY" = ( -/obj/machinery/door/airlock/highsecurity{ - name = "Gravity Generator Room"; - req_access_txt = "19;23" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/delivery, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/turf/open/floor/plasteel, -/area/engineering/gravity_generator) -"lGk" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/service/kitchen) -"lGv" = ( -/obj/machinery/chem_master/condimaster{ - name = "CondiMaster Neo"; - pixel_x = -4 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/service/kitchen) -"lGS" = ( -/obj/docking_port/stationary/public_mining_dock, -/turf/open/floor/plating, -/area/construction/mining/aux_base) -"lHj" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/locker) -"lHN" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1; - name = "Port to External" - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"lIs" = ( -/obj/machinery/portable_atmospherics/canister/carbon_dioxide, -/obj/machinery/atmospherics/miner/carbon_dioxide, -/turf/open/floor/engine/co2, -/area/engineering/atmos) -"lIt" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/grunge{ - name = "Quiet Room" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/wood, -/area/service/library) -"lJc" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 4 - }, -/turf/open/floor/engine, -/area/engineering/main) -"lJd" = ( -/obj/structure/sign/directions/supply{ - dir = 1; - pixel_y = 8 - }, -/turf/closed/wall, -/area/cargo/office) -"lJu" = ( -/obj/structure/disposalpipe/sorting/wrap{ - dir = 1 - }, -/turf/closed/wall, -/area/cargo/sorting) -"lJx" = ( -/turf/closed/wall/r_wall, -/area/command/gateway) -"lJy" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 10 - }, -/obj/machinery/power/rad_collector/anchored, -/obj/structure/cable, -/obj/structure/window/plasma/reinforced, -/turf/open/floor/engine, -/area/engineering/supermatter) -"lJX" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - name = "Law Office"; - req_access_txt = "38" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/wood, -/area/service/lawoffice) -"lKe" = ( -/obj/structure/chair/stool{ - pixel_y = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"lKv" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/carpet, -/area/service/chapel/main) -"lKz" = ( -/obj/structure/bookcase{ - name = "Forbidden Knowledge" - }, -/turf/open/floor/engine/cult, -/area/service/library) -"lLt" = ( -/obj/machinery/door/poddoor/preopen{ - id = "Engineering"; - name = "Engineering Security Doors" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"lMh" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/aisat/exterior) -"lMo" = ( -/obj/effect/landmark/xmastree, -/turf/open/floor/wood, -/area/service/bar) -"lMz" = ( -/obj/structure/falsewall, -/turf/open/floor/plating, -/area/science/circuit) -"lMJ" = ( -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"lMK" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/cargo/storage) -"lMS" = ( -/obj/item/book/manual/wiki/security_space_law{ - name = "space law"; - pixel_y = 2 - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/item/toy/gun, -/obj/item/restraints/handcuffs, -/obj/structure/table/wood, -/obj/item/clothing/head/collectable/HoS{ - name = "novelty HoS hat" - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 24 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/command/corporate_showroom) -"lMY" = ( -/obj/structure/table, -/obj/item/storage/box/bodybags{ - pixel_x = 2; - pixel_y = 2 - }, -/turf/open/floor/plasteel/dark, -/area/service/chapel/office) -"lNc" = ( -/turf/closed/wall, -/area/service/lawoffice) -"lNN" = ( -/obj/structure/closet/l3closet/scientist, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/turf/open/floor/plasteel{ - dir = 1 - }, -/area/command/gateway) -"lOi" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/landmark/start/roboticist, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"lOk" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/structure/sign/poster/official/random{ - pixel_y = -32 - }, -/obj/structure/table, -/obj/structure/bedsheetbin/towel, -/turf/open/floor/plasteel/freezer, -/area/commons/toilet/restrooms) -"lOt" = ( -/obj/effect/landmark/xeno_spawn, -/obj/item/bikehorn/rubberducky, -/turf/open/floor/plasteel/freezer, -/area/commons/toilet/restrooms) -"lOv" = ( -/obj/machinery/atmospherics/components/binary/pump{ - name = "Port to Fuel Pipe" - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"lOI" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"lOJ" = ( -/obj/machinery/atmospherics/pipe/manifold/green/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"lPm" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/turf/open/floor/plating, -/area/command/gateway) -"lPr" = ( -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/machinery/power/tracker, -/turf/open/floor/plating/airless, -/area/solars/port/fore) -"lPE" = ( -/obj/structure/chair/stool{ - pixel_y = 8 - }, -/obj/effect/landmark/start/assistant, -/turf/open/floor/wood, -/area/service/bar) -"lPI" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"lQo" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/item/clothing/mask/pig, -/obj/item/bikehorn, -/obj/structure/table/wood, -/obj/structure/sign/poster/contraband/random{ - pixel_x = -32 - }, -/turf/open/floor/wood, -/area/service/theater) -"lQr" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/turf/open/floor/plating, -/area/construction/storage_wing) -"lQC" = ( -/obj/machinery/door/airlock/mining/glass{ - name = "Mining Dock"; - req_access_txt = "48" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/miningoffice) -"lQV" = ( -/obj/structure/cable/yellow{ - 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/command/heads_quarters/ce) -"lRj" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/grimy, -/area/service/chapel/office) -"lRl" = ( -/obj/structure/cable/white, -/obj/machinery/power/emitter/anchored{ - state = 2 - }, -/turf/open/floor/plating, -/area/engineering/main) -"lRm" = ( -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solars/starboard/aft) -"lRs" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/light_switch{ - pixel_x = 28 - }, -/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/commons/storage/primary) -"lRI" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/commons/dorms) -"lRU" = ( -/obj/structure/closet/athletic_mixed, -/obj/item/toy/poolnoodle/blue, -/turf/open/floor/plating, -/area/commons/fitness/pool) -"lTr" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel/dark/corner, -/area/engineering/break_room) -"lTz" = ( -/obj/structure/toilet/secret/low_loot{ - pixel_y = 8 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/newscaster{ - pixel_y = -32 - }, -/obj/effect/landmark/blobstart, -/obj/machinery/button/door{ - id = "Toilet2"; - name = "Lock Control"; - normaldoorcontrol = 1; - pixel_x = -25; - specialfunctions = 4 - }, -/turf/open/floor/plasteel/freezer, -/area/commons/toilet/restrooms) -"lUn" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/plasticflaps/opaque, -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=4"; - dir = 4; - freq = 1400; - location = "Atmospherics" - }, -/obj/machinery/door/poddoor/preopen{ - id = "atmos"; - name = "Atmospherics Blast Door" - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/door/window/westleft{ - req_access_txt = "24" - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"lUs" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/engineering/atmos) -"lUv" = ( -/obj/structure/noticeboard{ - dir = 1; - pixel_y = -32 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"lUB" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/machinery/door/poddoor/preopen{ - id = "bridge blast"; - name = "bridge blast door" - }, -/obj/structure/cable/yellow, -/turf/open/floor/plating, -/area/command/bridge) -"lUC" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/engineering/main) -"lUO" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/wood, -/area/command/corporate_showroom) -"lUV" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/extinguisher_cabinet{ - pixel_x = -27 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/office) -"lVH" = ( -/obj/machinery/suit_storage_unit/standard_unit, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/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/command/storage/eva) -"lVL" = ( -/obj/structure/light_construct{ - dir = 8 - }, -/turf/open/floor/wood, -/area/commons/vacant_room/office) -"lWq" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/wood, -/area/service/bar) -"lWL" = ( -/obj/machinery/computer/med_data{ - dir = 8 - }, -/obj/structure/window{ - dir = 4 - }, -/obj/item/radio/intercom{ - broadcasting = 1; - frequency = 1485; - listening = 0; - name = "Station Intercom (Medbay)"; - pixel_y = -30 - }, -/turf/open/floor/plasteel/white/side{ - dir = 8 - }, -/area/medical/surgery) -"lWX" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/command/storage/eva) -"lWY" = ( -/obj/machinery/door/airlock/hatch{ - name = "Telecomms Server Room" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/tcommsat/server) -"lXj" = ( -/obj/structure/table, -/obj/item/reagent_containers/glass/beaker{ - pixel_x = 5 - }, -/obj/item/reagent_containers/food/condiment/enzyme{ - layer = 5 - }, -/turf/open/floor/plasteel/cafeteria, -/area/service/kitchen) -"lXo" = ( -/obj/machinery/airalarm{ - pixel_y = 24 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"lXt" = ( -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"lYc" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/airlock/command{ - name = "Chief Engineer's Office"; - req_access_txt = "56" - }, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/turf/open/floor/plasteel{ - dir = 1 - }, -/area/command/heads_quarters/ce) -"lYe" = ( -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 8; - name = "Air to Distro" - }, -/obj/machinery/airalarm{ - pixel_y = 25 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/camera{ - c_tag = "Atmospherics - Distro Loop" - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel/dark/corner{ - dir = 1 - }, -/area/engineering/atmos) -"lYW" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/qm) -"lYZ" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/commons/cryopod) -"lZv" = ( -/turf/open/floor/wood, -/area/commons/vacant_room/office) -"lZE" = ( -/obj/structure/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/wood, -/area/commons/vacant_room/office) -"lZK" = ( -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/pen, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/table/wood, -/turf/open/floor/wood, -/area/service/lawoffice) -"maE" = ( -/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/commons/fitness/recreation) -"maO" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{ - dir = 8 - }, -/obj/machinery/meter/atmos/atmos_waste_loop, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel/dark/corner{ - dir = 1 - }, -/area/engineering/atmos) -"maP" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"maQ" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/commons/dorms) -"mbl" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/wood, -/area/commons/vacant_room/office) -"mbw" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/commons/dorms) -"mbJ" = ( -/obj/structure/table, -/obj/item/folder/yellow, -/obj/item/folder/yellow, -/obj/item/storage/firstaid/regular, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/commons/storage/primary) -"mcu" = ( -/obj/structure/rack, -/obj/item/storage/toolbox/emergency{ - pixel_x = 2; - pixel_y = -3 - }, -/obj/item/storage/toolbox/emergency, -/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/cargo/miningoffice) -"mcS" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -28 - }, -/turf/open/floor/plasteel/white/corner, -/area/hallway/secondary/entry) -"mdt" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"med" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel, -/area/command/gateway) -"mei" = ( -/turf/closed/wall, -/area/commons/toilet/auxiliary) -"mex" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Cargo Bay - Port"; - dir = 4 - }, -/obj/machinery/conveyor{ - dir = 1; - id = "QMLoad" - }, -/turf/open/floor/plating, -/area/cargo/storage) -"mfs" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/power/apc{ - areastring = "/area/cargo/office"; - dir = 8; - name = "Cargo Office APC"; - pixel_x = -25 - }, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/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/cargo/office) -"mfP" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/chair/office/light{ - dir = 1 - }, -/obj/machinery/power/apc{ - areastring = "/area/medical/paramedic"; - dir = 8; - name = "Paramedic Station APC"; - pixel_x = -25 - }, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/turf/open/floor/plasteel, -/area/medical/paramedic) -"mfS" = ( -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 1; - name = "Cold Loop to Gas" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/engine, -/area/engineering/main) -"mfW" = ( -/obj/structure/toilet/secret/low_loot{ - pixel_y = 8 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/newscaster{ - pixel_y = -32 - }, -/obj/effect/landmark/blobstart, -/obj/machinery/button/door{ - id = "Toilet1"; - name = "Lock Control"; - normaldoorcontrol = 1; - pixel_x = -25; - specialfunctions = 4 - }, -/turf/open/floor/plasteel/freezer, -/area/commons/toilet/restrooms) -"mgb" = ( -/obj/structure/table, -/obj/item/folder/yellow, -/obj/item/pen{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/pen/red, -/obj/machinery/requests_console{ - department = "Cargo Bay"; - departmentType = 2; - pixel_x = 32 - }, -/obj/item/stamp/qm, -/turf/open/floor/plasteel, -/area/cargo/qm) -"mgn" = ( -/obj/machinery/portable_atmospherics/scrubber, -/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/engineering/atmos) -"mgo" = ( -/obj/structure/bodycontainer/crematorium{ - dir = 1; - id = "crematoriumChapel" - }, -/turf/open/floor/plasteel/dark, -/area/service/chapel/office) -"mgw" = ( -/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/command/bridge) -"mgG" = ( -/obj/structure/rack, -/obj/item/stack/medical/mesh, -/obj/item/stack/medical/suture, -/obj/item/reagent_containers/syringe/charcoal, -/obj/item/reagent_containers/syringe/epinephrine{ - pixel_x = -1; - pixel_y = 2 - }, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/turf/open/floor/plasteel{ - dir = 1 - }, -/area/command/gateway) -"mgI" = ( -/obj/machinery/power/apc{ - areastring = "/area/security/checkpoint/medical"; - dir = 8; - name = "Medical Security Checkpoint APC"; - pixel_x = -25 - }, -/obj/machinery/airalarm{ - pixel_y = 28 - }, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/obj/structure/closet/secure_closet/security/med, -/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) -"mgJ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/dark, -/area/engineering/gravity_generator) -"mhX" = ( -/obj/structure/table, -/obj/item/weldingtool, -/obj/item/crowbar, -/obj/item/stack/packageWrap, -/obj/item/stack/packageWrap, -/obj/item/stack/packageWrap, -/obj/item/stack/packageWrap, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/brown, -/turf/open/floor/plasteel, -/area/commons/storage/primary) -"mig" = ( -/obj/machinery/vending/clothing, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/commons/locker) -"miq" = ( -/obj/structure/bookcase/random/nonfiction, -/turf/open/floor/wood, -/area/service/library) -"miC" = ( -/turf/open/floor/wood{ - icon_state = "wood-broken3" - }, -/area/command/corporate_showroom) -"mjp" = ( -/obj/machinery/light, -/obj/machinery/camera{ - c_tag = "Kitchen Hatch"; - dir = 1 - }, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/service/bar) -"mjJ" = ( -/obj/machinery/nuclearbomb/beer{ - pixel_x = 2; - pixel_y = 6 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"mjX" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/sign/poster/official/random{ - pixel_y = -32 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/construction/storage_wing) -"mkz" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/engine/vacuum, -/area/engineering/atmos) -"mkS" = ( -/obj/structure/closet/boxinggloves, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/commons/fitness/recreation) -"mlf" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"mlA" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/closed/wall/r_wall, -/area/engineering/main) -"mlH" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/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/service/hydroponics/garden) -"mlO" = ( -/obj/structure/closet/athletic_mixed, -/obj/effect/turf_decal/tile/neutral{ - 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/commons/fitness/recreation) -"mmy" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"mmH" = ( -/turf/open/floor/carpet, -/area/command/heads_quarters/hop) -"mmJ" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 24 - }, -/turf/open/floor/wood, -/area/commons/vacant_room/office) -"mmU" = ( -/obj/machinery/portable_atmospherics/canister/nitrous_oxide, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"mmX" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/transit_tube/curved{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/aisat/exterior) -"mnr" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/landmark/start/cyborg, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/holopad/secure, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"moO" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/service/chapel/main) -"moT" = ( -/obj/structure/table, -/obj/item/camera, -/turf/open/floor/plasteel, -/area/commons/storage/art) -"moW" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 24 - }, -/obj/machinery/camera{ - c_tag = "Bridge - Port Access"; - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/command/bridge) -"mpx" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/keycard_auth{ - pixel_x = 26; - pixel_y = -7 - }, -/obj/machinery/computer/med_data/laptop, -/obj/structure/table/glass, -/obj/machinery/button/door{ - id = "cmoprivacy"; - name = "Privacy Shutters Control"; - pixel_x = 26; - pixel_y = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/cafeteria, -/area/command/heads_quarters/cmo) -"mpB" = ( -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/aisat/exterior) -"mpF" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plating, -/area/engineering/main) -"mpO" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engineering/gravity_generator) -"mpT" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/command/bridge) -"mql" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/command/storage/satellite) -"mqq" = ( -/obj/structure/chair/comfy/black{ - dir = 1 - }, -/turf/open/floor/carpet, -/area/command/bridge) -"mqC" = ( -/obj/structure/lattice, -/turf/closed/wall, -/area/maintenance/port/aft) -"mqX" = ( -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/mob/living/simple_animal/pet/bumbles, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"mqZ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/wood, -/area/service/library) -"mrr" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/door/window{ - name = "HoP's Desk"; - req_access_txt = "57" - }, -/turf/open/floor/wood, -/area/command/heads_quarters/hop) -"msf" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/turf/open/floor/plating, -/area/command/gateway) -"msu" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/closed/wall/r_wall, -/area/ai_monitored/aisat/exterior) -"msv" = ( -/obj/machinery/door/airlock/command/glass{ - name = "Gravity Generator Area"; - req_access_txt = "19; 61" - }, -/turf/open/floor/plasteel/dark, -/area/engineering/gravity_generator) -"msx" = ( -/obj/machinery/holopad, -/turf/open/floor/carpet, -/area/command/bridge) -"msI" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/service/bar) -"mte" = ( -/obj/machinery/light/small, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -30 - }, -/turf/open/floor/wood, -/area/service/bar) -"mtf" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/wood, -/area/service/bar) -"mtH" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/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/service/hydroponics) -"mtJ" = ( -/obj/structure/sign/warning/securearea{ - pixel_y = 32 - }, -/obj/structure/transit_tube/station/reverse/flipped{ - dir = 1 - }, -/obj/structure/transit_tube_pod{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/break_room) -"mtM" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1; - name = "Pure to Mix" - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"muJ" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/command/gateway) -"mvj" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/closed/wall, -/area/hallway/secondary/service) -"mvN" = ( -/turf/closed/wall, -/area/construction/storage_wing) -"mvY" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/aisat/exterior) -"mwg" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/aisat/exterior) -"mwM" = ( -/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/office) -"mwN" = ( -/obj/machinery/door/window/eastright{ - dir = 1; - name = "Hydroponics Delivery"; - req_access_txt = "35" - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"mwP" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/obj/effect/landmark/start/botanist, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"mxh" = ( -/obj/structure/table/wood, -/obj/machinery/button/door{ - id = "corporate_privacy"; - name = "corporate showroom shutters control"; - pixel_x = 28; - req_access_txt = "19" - }, -/obj/item/poster/random_official, -/obj/item/poster/random_official, -/obj/item/poster/random_official, -/obj/item/poster/random_official, -/obj/item/poster/random_official, -/obj/item/paicard{ - desc = "A real Nanotrasen success, these personal AIs provide all of the companionship of an AI without any law related red-tape."; - name = "Nanotrasen-brand personal AI device exhibit" - }, -/turf/open/floor/carpet, -/area/command/corporate_showroom) -"mxo" = ( -/obj/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/aisat/exterior) -"mxL" = ( -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 4; - sortType = 7 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/office) -"myk" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/machinery/door/poddoor/preopen{ - id = "bridge blast"; - name = "bridge blast door" - }, -/turf/open/floor/plating, -/area/command/bridge) -"myO" = ( -/obj/structure/table, -/obj/item/storage/belt/utility, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/obj/item/storage/box/lights/mixed, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/storage/primary) -"mze" = ( -/obj/structure/window/reinforced, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/yellow/visible, -/turf/open/floor/plasteel/cafeteria, -/area/engineering/atmos) -"mzh" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"mzp" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/obj/structure/dresser, -/turf/open/floor/carpet, -/area/commons/dorms) -"mzq" = ( -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel/dark, -/area/command/bridge) -"mzH" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/engineering/main) -"mAa" = ( -/obj/structure/table/glass, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/item/storage/secure/briefcase, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/cafeteria, -/area/command/heads_quarters/cmo) -"mAj" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/command/heads_quarters/ce) -"mAV" = ( -/obj/machinery/computer/station_alert, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/command/bridge) -"mBk" = ( -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/machinery/status_display/evac{ - pixel_y = 32 - }, -/obj/machinery/camera{ - c_tag = "Engineering - Power Monitoring" - }, -/obj/machinery/modular_computer/console/preset/engineering, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"mBW" = ( -/turf/open/floor/plasteel, -/area/commons/locker) -"mCa" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/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/command/bridge) -"mCT" = ( -/obj/structure/table, -/obj/machinery/recharger{ - pixel_y = 4 - }, -/turf/open/floor/plasteel, -/area/security/office) -"mDc" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/machinery/light_switch{ - pixel_x = -26 - }, -/turf/open/floor/plasteel/freezer, -/area/commons/toilet/restrooms) -"mDk" = ( -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/engine, -/area/engineering/main) -"mDF" = ( -/obj/structure/sign/map/left{ - desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; - icon_state = "map-left-MS"; - pixel_y = 32 - }, -/turf/open/floor/wood, -/area/command/heads_quarters/captain/private) -"mDR" = ( -/obj/machinery/requests_console{ - announcementConsole = 1; - department = "Chief Engineer's Desk"; - departmentType = 3; - name = "Chief Engineer RC"; - pixel_y = 32 - }, -/obj/machinery/computer/card/minor/ce, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/ce) -"mDX" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/service/bar) -"mEe" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/spawner/lootdrop/maintenance, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/port) -"mEr" = ( -/obj/machinery/status_display/supply{ - pixel_x = 32 - }, -/obj/machinery/computer/card/minor/qm{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/qm) -"mEw" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/engine/plasma, -/area/engineering/atmos) -"mEE" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/light/small, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/engineering/gravity_generator) -"mER" = ( -/obj/structure/table, -/obj/item/clothing/head/soft/grey{ - pixel_x = -2; - pixel_y = 3 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/locker) -"mFr" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/plasteel, -/area/engineering/main) -"mFH" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 28 - }, -/obj/structure/reagent_dispensers/cooking_oil, -/turf/open/floor/plasteel/showroomfloor, -/area/service/kitchen) -"mGL" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/command/storage/eva) -"mGM" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "kitchen"; - name = "Serving Hatch" - }, -/obj/item/storage/fancy/donut_box, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/service/kitchen) -"mGQ" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"mHn" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/closed/wall, -/area/engineering/atmos) -"mHo" = ( -/obj/structure/sign/directions/security{ - dir = 1; - pixel_y = 8 - }, -/obj/structure/sign/directions/engineering{ - dir = 4 - }, -/obj/structure/sign/directions/command{ - pixel_y = -8 - }, -/turf/closed/wall/r_wall, -/area/commons/storage/tools) -"mHR" = ( -/obj/machinery/photocopier{ - pixel_y = 3 - }, -/turf/open/floor/wood, -/area/service/library) -"mHZ" = ( -/obj/effect/landmark/xeno_spawn, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/commons/dorms) -"mIt" = ( -/obj/structure/showcase/cyborg/old{ - dir = 8; - pixel_x = 9; - pixel_y = 2 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/command/storage/satellite) -"mIE" = ( -/turf/open/floor/plasteel, -/area/cargo/storage) -"mIG" = ( -/obj/machinery/hydroponics/constructable, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"mIJ" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 5 - }, -/turf/open/space, -/area/space/nearstation) -"mIW" = ( -/obj/machinery/computer/arcade, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_y = 32 - }, -/turf/open/floor/wood, -/area/service/bar) -"mJg" = ( -/obj/structure/table/wood, -/obj/item/folder/blue, -/obj/item/folder/blue, -/obj/item/folder/blue, -/obj/item/folder/blue, -/obj/item/stamp/law, -/turf/open/floor/wood, -/area/service/lawoffice) -"mJR" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/engineering/main) -"mJX" = ( -/obj/structure/lattice/catwalk, -/obj/item/stack/cable_coil, -/turf/open/space, -/area/solars/starboard/aft) -"mKn" = ( -/obj/structure/table/reinforced, -/obj/item/folder/yellow, -/obj/item/pen{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white/corner, -/area/cargo/sorting) -"mKu" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/circuit/green{ - luminosity = 2 - }, -/area/ai_monitored/command/nuke_storage) -"mKw" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/turf/open/floor/plating, -/area/engineering/main) -"mKI" = ( -/obj/structure/rack, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -26 - }, -/obj/item/clothing/gloves/color/fyellow, -/obj/item/clothing/suit/hazardvest, -/obj/item/multitool, -/obj/effect/spawner/lootdrop/maintenance, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/storage/tools) -"mKW" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/cargo/storage) -"mLh" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/wood, -/area/service/library) -"mLk" = ( -/turf/closed/wall, -/area/command/heads_quarters/captain/private) -"mLH" = ( -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solars/port/fore) -"mMn" = ( -/turf/open/floor/plasteel, -/area/engineering/atmos) -"mMO" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/spawner/lootdrop/maintenance, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/cargo/storage) -"mMU" = ( -/obj/machinery/camera{ - c_tag = "Atmospherics Tank - N2O"; - dir = 8 - }, -/turf/open/floor/engine/n2o, -/area/engineering/atmos) -"mMW" = ( -/obj/structure/safe, -/obj/item/storage/backpack/duffelbag/syndie/hitman{ - contents = newlist(/obj/item/clothing/suit/armor/vest,/obj/item/gun/ballistic/automatic/pistol,/obj/item/suppressor,/obj/item/melee/classic_baton/telescopic,/obj/item/clothing/mask/balaclava,/obj/item/bodybag,/obj/item/soap/nanotrasen) - }, -/obj/item/card/id/silver/reaper, -/obj/item/lazarus_injector, -/obj/item/gun/energy/e_gun/advtaser, -/obj/item/clothing/neck/stethoscope, -/obj/item/book{ - desc = "An undeniably handy book."; - icon_state = "bookknock"; - name = "A Simpleton's Guide to Safe-cracking with Stethoscopes" - }, -/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/ai_monitored/command/nuke_storage) -"mNV" = ( -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -22 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"mNX" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/dark, -/area/engineering/gravity_generator) -"mOc" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/service/chapel/main) -"mPm" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/obj/structure/chair/stool{ - pixel_y = 8 - }, -/turf/open/floor/wood, -/area/service/bar) -"mPo" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/office) -"mPv" = ( -/obj/structure/chair/stool/bar, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/service/bar) -"mPQ" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/cargo/storage) -"mQW" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/service/theater) -"mRb" = ( -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"mRE" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"mRZ" = ( -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/computer/bounty, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/qm) -"mSd" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"mSf" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/circuit/green{ - luminosity = 2 - }, -/area/ai_monitored/command/nuke_storage) -"mSB" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"mSL" = ( -/obj/structure/cable, -/obj/machinery/power/solar{ - id = "aftport"; - name = "Aft-Port Solar Array" - }, -/turf/open/floor/plasteel/airless/solarpanel, -/area/solars/port/aft) -"mTr" = ( -/obj/structure/toilet/secret/low_loot{ - pixel_y = 8 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/newscaster{ - pixel_y = -32 - }, -/obj/machinery/button/door{ - id = "Toilet3"; - name = "Lock Control"; - normaldoorcontrol = 1; - pixel_x = -25; - specialfunctions = 4 - }, -/obj/effect/landmark/start/assistant, -/turf/open/floor/plasteel/freezer, -/area/commons/toilet/restrooms) -"mTL" = ( -/obj/machinery/atmospherics/pipe/simple, -/obj/machinery/meter, -/obj/structure/grille, -/turf/closed/wall/r_wall, -/area/engineering/atmos) -"mTN" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/dark, -/area/command/bridge) -"mUa" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/camera/autoname{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/carpet, -/area/service/library) -"mUZ" = ( -/obj/structure/table/reinforced, -/obj/item/clipboard, -/obj/item/paper/monitorkey, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/command/heads_quarters/ce) -"mVa" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/commons/storage/primary) -"mVL" = ( -/turf/closed/wall/mineral/plastitanium, -/area/engineering/break_room) -"mWg" = ( -/obj/structure/girder, -/obj/structure/grille, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/port/aft) -"mWm" = ( -/obj/structure/chair/stool, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/chapel, -/area/service/chapel/main) -"mWu" = ( -/obj/machinery/air_sensor/atmos/toxin_tank, -/turf/open/floor/engine/plasma, -/area/engineering/atmos) -"mWy" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, -/turf/open/floor/engine, -/area/engineering/main) -"mWA" = ( -/obj/structure/table/wood, -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_x = -32 - }, -/obj/effect/decal/cleanable/cobweb, -/obj/item/flashlight/lamp/green{ - pixel_x = 1; - pixel_y = 5 - }, -/turf/open/floor/wood, -/area/service/library) -"mWP" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/service/chapel/main) -"mXi" = ( -/turf/open/floor/wood, -/area/command/heads_quarters/captain/private) -"mXH" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/cafeteria, -/area/command/heads_quarters/cmo) -"mXL" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/item/storage/firstaid/regular, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/cargo/storage) -"mYt" = ( -/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/command/gateway) -"mYT" = ( -/obj/machinery/power/apc{ - areastring = "/area/medical/chemistry"; - dir = 8; - name = "Chemistry APC"; - pixel_x = -25 - }, -/obj/structure/closet/secure_closet/chemical{ - pixel_x = -3 - }, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"mYU" = ( -/obj/item/stack/ore/iron, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/cargo/miningoffice) -"mZA" = ( -/obj/machinery/door/window/westleft{ - dir = 4; - name = "Bridge Deliveries"; - req_access_txt = "19" - }, -/obj/machinery/door/poddoor/preopen{ - id = "bridge blast"; - name = "bridge blast door" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/command/bridge) -"mZD" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"mZQ" = ( -/obj/structure/chair/office/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/landmark/start/medical_doctor, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/treatment_center) -"mZT" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/engine, -/area/engineering/main) -"naf" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/turf/closed/wall, -/area/engineering/atmos) -"nas" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/cargo/office) -"naO" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"naS" = ( -/obj/machinery/air_sensor/atmos/carbon_tank, -/turf/open/floor/engine/co2, -/area/engineering/atmos) -"nbl" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/carpet, -/area/service/theater) -"nbs" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/holopad, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/office) -"ncN" = ( -/obj/vehicle/ridden/secway, -/obj/item/key/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/office) -"ndd" = ( -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_x = -32 - }, -/obj/machinery/camera/autoname{ - dir = 4 - }, -/obj/structure/displaycase/trophy, -/turf/open/floor/wood, -/area/service/library) -"nee" = ( -/obj/structure/table/wood, -/obj/item/flashlight/lamp, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/carpet, -/area/command/heads_quarters/hos) -"neP" = ( -/obj/machinery/atmospherics/components/binary/pump, -/turf/closed/wall/r_wall, -/area/engineering/atmos) -"nfs" = ( -/obj/structure/mirror{ - pixel_x = 28 - }, -/turf/open/floor/plating, -/area/commons/toilet/auxiliary) -"nfO" = ( -/obj/machinery/door/airlock{ - id_tag = "Toilet1"; - name = "Unit 1" - }, -/turf/open/floor/plasteel/freezer, -/area/commons/toilet/restrooms) -"nfP" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/airlock/command{ - name = "E.V.A. Storage"; - req_access_txt = "18" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/ai_monitored/command/storage/eva) -"ngZ" = ( -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = 21 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/camera{ - c_tag = "Club - Fore" - }, -/turf/open/floor/wood, -/area/service/bar) -"nho" = ( -/obj/item/latexballon, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"nhy" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"nhL" = ( -/obj/machinery/airalarm{ - pixel_y = 28 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel, -/area/cargo/warehouse) -"nia" = ( -/obj/machinery/camera{ - c_tag = "Club - Aft"; - dir = 1 - }, -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_y = -29 - }, -/obj/item/clothing/mask/cigarette/pipe, -/obj/structure/table/wood, -/turf/open/floor/carpet, -/area/service/bar) -"nid" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/engineering/main) -"nik" = ( -/obj/effect/decal/cleanable/cobweb, -/obj/item/kirbyplants{ - icon_state = "plant-20"; - pixel_y = 3 - }, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/turf/open/floor/plasteel{ - dir = 1 - }, -/area/engineering/main) -"nix" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat/foyer) -"njt" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/commons/locker) -"njB" = ( -/obj/structure/closet/masks, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/commons/fitness/recreation) -"njD" = ( -/obj/structure/table, -/obj/item/storage/dice, -/turf/open/floor/plasteel, -/area/commons/dorms) -"nkn" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/carpet, -/area/service/library) -"nkq" = ( -/obj/structure/table, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -26 - }, -/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/cargo/office) -"nkB" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics/garden) -"nkQ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/service/janitor) -"nkV" = ( -/obj/effect/spawner/structure/window/reinforced/tinted/electrochromatic{ - electrochromatic_id = "!interrogation_room" - }, -/turf/open/floor/plating, -/area/security/office) -"nln" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/space, -/area/solars/starboard/aft) -"nlr" = ( -/obj/structure/chair/office/dark{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/command/bridge) -"nmt" = ( -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/holopad, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"nmx" = ( -/obj/structure/table, -/obj/item/folder/red, -/obj/item/pen, -/obj/item/storage/box/donkpockets, -/turf/open/floor/plasteel, -/area/security/office) -"nmz" = ( -/turf/closed/wall/r_wall, -/area/command/heads_quarters/ce) -"nmK" = ( -/obj/structure/rack, -/obj/item/storage/toolbox/electrical{ - pixel_x = 1; - pixel_y = -1 - }, -/obj/item/clothing/gloves/color/yellow, -/obj/item/t_scanner, -/obj/item/multitool, -/turf/open/floor/plasteel/dark, -/area/engineering/storage/tech) -"nmM" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/window{ - dir = 8; - name = "MiniSat Airlock Access" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/aisat/exterior) -"nmO" = ( -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/machinery/power/solar{ - id = "foreport"; - name = "Fore-Port Solar Array" - }, -/turf/open/floor/plasteel/airless/solarpanel, -/area/solars/port/fore) -"nnB" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"nnK" = ( -/obj/item/stack/sheet/glass/fifty, -/obj/item/paper_bin, -/obj/item/pen, -/obj/structure/table/reinforced, -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 32 - }, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"noG" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/science/circuit) -"noS" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/command/gateway) -"npi" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, -/turf/open/floor/engine, -/area/engineering/main) -"npo" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/obj/effect/landmark/xeno_spawn, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/wood, -/area/service/bar) -"npE" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/freezer, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"nqx" = ( -/obj/machinery/suit_storage_unit/standard_unit, -/obj/machinery/light_switch{ - pixel_x = -8; - 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/ai_monitored/command/storage/eva) -"nqK" = ( -/obj/structure/dresser, -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/turf/open/floor/carpet, -/area/commons/dorms) -"nqT" = ( -/obj/structure/table, -/obj/item/clothing/under/suit/black/skirt{ - pixel_x = 3; - pixel_y = 1 - }, -/obj/item/clothing/under/suit/black_really{ - pixel_x = -2 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = 28 - }, -/obj/item/clothing/accessory/waistcoat, -/obj/item/clothing/suit/toggle/lawyer/black, -/obj/item/clothing/under/suit/red, -/obj/item/clothing/neck/tie/black, -/obj/item/clothing/under/suit/black, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/cafeteria, -/area/commons/dorms) -"nry" = ( -/obj/machinery/door/airlock{ - id_tag = "AuxToilet1"; - name = "Unit 1" - }, -/turf/open/floor/plasteel, -/area/commons/toilet/auxiliary) -"nsA" = ( -/mob/living/simple_animal/cow{ - name = "Betsy"; - real_name = "Betsy" - }, -/turf/open/floor/grass, -/area/service/hydroponics/garden) -"nvq" = ( -/obj/effect/landmark/start/lawyer, -/obj/structure/chair/office/dark{ - dir = 4 - }, -/obj/item/radio/intercom{ - dir = 8; - name = "Station Intercom (General)"; - pixel_x = -28 - }, -/turf/open/floor/wood, -/area/service/lawoffice) -"nwc" = ( -/mob/living/simple_animal/sloth/citrus, -/turf/open/floor/plasteel, -/area/cargo/storage) -"nwG" = ( -/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/commons/fitness/recreation) -"nwH" = ( -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/junction/flip{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/dorms) -"nwU" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"nxb" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/engine_waste, -/turf/open/floor/plating/airless, -/area/engineering/main) -"nxc" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, -/turf/open/floor/engine, -/area/engineering/main) -"nxA" = ( -/obj/machinery/computer/security/telescreen/interrogation{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/grimy, -/area/security/office) -"nxP" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Library" - }, -/turf/open/floor/wood, -/area/service/library) -"nxU" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/simple/orange/visible, -/turf/open/floor/engine, -/area/engineering/main) -"nyg" = ( -/obj/machinery/door/airlock{ - id_tag = "Cabin4"; - name = "Cabin 5" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/wood, -/area/commons/dorms) -"nyo" = ( -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/service) -"nzp" = ( -/obj/structure/urinal{ - pixel_y = 29 - }, -/turf/open/floor/plating, -/area/commons/toilet/auxiliary) -"nzz" = ( -/obj/machinery/vending/boozeomat, -/turf/closed/wall, -/area/service/bar) -"nzH" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/grass, -/area/service/hydroponics/garden) -"nzZ" = ( -/obj/machinery/conveyor{ - dir = 1; - id = "packageExternal" - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/plating, -/area/cargo/sorting) -"nAl" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/lattice/catwalk, -/obj/structure/window/reinforced, -/turf/open/space, -/area/ai_monitored/aisat/exterior) -"nAB" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/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/engineering/gravity_generator) -"nAD" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/chair/office/dark, -/obj/effect/landmark/start/cargo_technician, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white/corner, -/area/cargo/sorting) -"nAG" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"nBx" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/commons/fitness/pool) -"nBX" = ( -/obj/structure/table/wood, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/turf/open/floor/wood, -/area/service/library) -"nDn" = ( -/turf/closed/wall/r_wall, -/area/command/corporate_showroom) -"nEw" = ( -/obj/machinery/power/terminal{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/ai_slipper{ - uses = 10 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/command/storage/satellite) -"nEx" = ( -/obj/machinery/bookbinder, -/turf/open/floor/wood, -/area/service/library) -"nFp" = ( -/obj/machinery/air_sensor/atmos/nitrous_tank, -/turf/open/floor/engine/n2o, -/area/engineering/atmos) -"nFz" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/engineering/main) -"nFG" = ( -/obj/structure/table/reinforced, -/obj/item/clothing/head/that, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/service/bar) -"nFS" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/machinery/vending/wardrobe/cargo_wardrobe, -/turf/open/floor/plasteel, -/area/cargo/storage) -"nGl" = ( -/obj/structure/mirror{ - pixel_y = 28 - }, -/obj/structure/sink{ - pixel_y = 17 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/command/heads_quarters/captain/private) -"nGn" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/northleft{ - dir = 4; - name = "Atmospherics Desk"; - req_access_txt = "24" - }, -/obj/item/folder/yellow, -/obj/item/folder/yellow, -/obj/item/pen, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/preopen{ - id = "atmos"; - name = "Atmospherics Blast Door" - }, -/obj/effect/turf_decal/delivery, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"nGs" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/wood, -/area/service/bar) -"nHn" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/green/visible{ - dir = 1 - }, -/turf/open/floor/engine, -/area/engineering/main) -"nHL" = ( -/obj/machinery/cryopod, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/commons/cryopod) -"nHM" = ( -/obj/item/radio/intercom{ - broadcasting = 1; - frequency = 1480; - name = "Confessional Intercom"; - pixel_x = 25 - }, -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/landmark/start/chaplain, -/turf/open/floor/plasteel/dark, -/area/service/chapel/office) -"nIQ" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/storage/primary) -"nIU" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics/garden) -"nJr" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"nKi" = ( -/obj/machinery/conveyor{ - dir = 1; - id = "QMLoad" - }, -/turf/open/floor/plating, -/area/cargo/storage) -"nKs" = ( -/obj/machinery/camera/autoname{ - dir = 4 - }, -/obj/item/book/manual/hydroponics_pod_people, -/obj/item/paper/guides/jobs/hydroponics, -/obj/machinery/requests_console{ - department = "Hydroponics"; - departmentType = 2; - pixel_x = -31; - pixel_y = -2 - }, -/obj/structure/table/glass, -/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, -/area/service/hydroponics) -"nKP" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Primary Tool Storage" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/storage/primary) -"nKU" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/heat_exchanging/junction{ - dir = 4 - }, -/turf/open/floor/plating, -/area/science/circuit) -"nLx" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/window{ - base_state = "right"; - dir = 8; - icon_state = "right"; - name = "MiniSat Airlock Access" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/aisat/exterior) -"nLy" = ( -/obj/structure/chair/comfy/brown, -/turf/open/floor/engine/cult, -/area/service/library) -"nLA" = ( -/obj/structure/table, -/obj/item/analyzer, -/obj/item/healthanalyzer, -/obj/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/storage/tech) -"nLQ" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solars/starboard/fore) -"nLT" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"nMV" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/command/gateway) -"nNm" = ( -/obj/effect/landmark/blobstart, -/turf/open/floor/plating, -/area/engineering/main) -"nOm" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/commons/dorms) -"nOq" = ( -/obj/effect/landmark/start/chaplain, -/turf/open/floor/plasteel/dark, -/area/service/chapel/main) -"nOJ" = ( -/turf/open/floor/engine, -/area/engineering/supermatter) -"nOM" = ( -/obj/machinery/newscaster{ - pixel_x = -32 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/wood, -/area/service/library) -"nPf" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"nPn" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -27 - }, -/obj/structure/closet/secure_closet/freezer/meat, -/turf/open/floor/plasteel/showroomfloor, -/area/service/kitchen) -"nPo" = ( -/obj/structure/table, -/obj/item/stack/packageWrap, -/obj/item/hand_labeler, -/obj/machinery/button/door{ - id = "kitchenhydro"; - name = "Service Shutter Control"; - pixel_y = -24; - req_access_txt = "28" - }, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/service/kitchen) -"nPJ" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/engineering/gravity_generator) -"nPL" = ( -/obj/structure/table, -/obj/item/folder/yellow, -/obj/item/pen, -/obj/machinery/requests_console{ - department = "Mining"; - pixel_y = -30 - }, -/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/cargo/miningoffice) -"nQo" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/office) -"nQt" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/command/heads_quarters/ce) -"nQV" = ( -/turf/open/floor/plasteel/grimy, -/area/security/office) -"nQW" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics/garden) -"nSn" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/machinery/holopad, -/turf/open/floor/carpet, -/area/command/heads_quarters/hop) -"nSv" = ( -/turf/closed/wall, -/area/command/heads_quarters/rd) -"nSP" = ( -/obj/structure/rack, -/obj/machinery/power/apc{ - areastring = "/area/cargo/storage"; - name = "Cargo Bay APC"; - pixel_x = 1; - pixel_y = -24 - }, -/obj/structure/cable/yellow, -/obj/machinery/light, -/obj/item/hand_labeler, -/obj/item/hand_labeler, -/obj/item/screwdriver{ - pixel_y = 10 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/cargo/storage) -"nTU" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/mining{ - name = "Cargo Bay"; - req_one_access_txt = "48;50" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/cargo/office) -"nTV" = ( -/obj/structure/table/wood, -/obj/item/paper_bin{ - pixel_x = -2; - pixel_y = 6 - }, -/turf/open/floor/carpet, -/area/commons/vacant_room/office) -"nUa" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering{ - name = "Telecomms Storage"; - req_access_txt = "61" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/engineering/storage/tcomms) -"nUi" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/machinery/door/poddoor/preopen{ - id = "cmoprivacy"; - name = "privacy shutter" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/command/heads_quarters/cmo) -"nUn" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/obj/effect/spawner/lootdrop/maintenance, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/cargo/storage) -"nUs" = ( -/obj/machinery/vending/cola/random, -/turf/open/floor/carpet, -/area/service/bar) -"nUt" = ( -/obj/structure/fireaxecabinet{ - pixel_y = -32 - }, -/obj/item/paper_bin{ - pixel_x = -2; - pixel_y = 7 - }, -/obj/item/pen{ - pixel_y = 3 - }, -/obj/machinery/light_switch{ - pixel_x = 28 - }, -/obj/structure/table/glass, -/turf/open/floor/plasteel/dark, -/area/command/bridge) -"nUC" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"nUI" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/office) -"nVE" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/closet/wardrobe/pjs, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/commons/dorms) -"nVX" = ( -/obj/effect/turf_decal/delivery, -/obj/structure/closet/firecloset, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"nWa" = ( -/obj/structure/reagent_dispensers/fueltank, -/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/commons/storage/tools) -"nWb" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"nWX" = ( -/obj/machinery/shower{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/open/floor/plating, -/area/commons/toilet/auxiliary) -"nXe" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - icon_state = "1-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/command/heads_quarters/hos) -"nXL" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/cargo/office) -"nXO" = ( -/obj/structure/lattice, -/turf/closed/wall/r_wall, -/area/engineering/break_room) -"nYk" = ( -/obj/machinery/shower{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel/freezer, -/area/commons/toilet/restrooms) -"nYm" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1; - name = "O2 to Pure" - }, -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"nYq" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"nYJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/carpet, -/area/service/chapel/main) -"nYK" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/chair/comfy/black{ - dir = 4 - }, -/turf/open/floor/plasteel/chapel{ - dir = 1 - }, -/area/service/chapel/main) -"nZd" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ - dir = 8 - }, -/turf/open/floor/engine, -/area/engineering/main) -"nZv" = ( -/obj/structure/toilet/secret/low_loot{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/newscaster{ - pixel_x = 32 - }, -/obj/machinery/button/door{ - id = "Toilet4"; - name = "Lock Control"; - normaldoorcontrol = 1; - pixel_y = -25; - specialfunctions = 4 - }, -/obj/effect/landmark/start/assistant, -/turf/open/floor/plasteel/freezer, -/area/commons/toilet/restrooms) -"nZB" = ( -/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/service/hydroponics) -"nZE" = ( -/turf/open/floor/plasteel, -/area/service/hydroponics) -"nZH" = ( -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=8"; - dir = 8; - freq = 1400; - location = "Kitchen" - }, -/obj/structure/plasticflaps/opaque, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/turf/open/floor/plasteel{ - dir = 1 - }, -/area/service/kitchen) -"nZI" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/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/treatment_center) -"nZS" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/command/teleporter) -"oag" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"oao" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/commons/fitness/pool) -"oav" = ( -/obj/structure/rack, -/obj/item/clothing/suit/hazardvest, -/obj/item/clothing/suit/hazardvest, -/obj/item/clothing/head/hardhat/orange{ - name = "protective hat" - }, -/obj/item/clothing/head/hardhat/orange{ - name = "protective hat" - }, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/turf/open/floor/plasteel{ - dir = 1 - }, -/area/command/gateway) -"oay" = ( -/obj/machinery/power/apc/highcap/ten_k{ - areastring = "/area/engineering/atmos"; - dir = 1; - name = "Atmospherics APC"; - pixel_y = 23 - }, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/obj/machinery/light_switch{ - pixel_x = -26 - }, -/obj/machinery/pipedispenser/disposal/transit_tube, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"oaA" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/construction/storage_wing) -"oaZ" = ( -/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/service/hydroponics) -"obb" = ( -/obj/structure/target_stake, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/circuit) -"obX" = ( -/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/default; - width = 9 - }, -/turf/open/floor/plating, -/area/construction/mining/aux_base) -"ocB" = ( -/turf/closed/wall, -/area/engineering/gravity_generator) -"ocS" = ( -/turf/closed/wall/r_wall, -/area/engineering/main) -"ocT" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/table/reinforced, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/item/stock_parts/cell/high, -/obj/item/stock_parts/cell/high, -/obj/machinery/computer/security/telescreen/circuitry{ - pixel_y = 30 - }, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"ocU" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/construction/storage_wing) -"ocV" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/wood, -/area/service/bar) -"oda" = ( -/obj/machinery/door/poddoor/preopen{ - id = "bridge blast"; - name = "bridge blast door" - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/airlock/command/glass{ - name = "Bridge Access"; - req_access_txt = "19" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - 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/command/bridge) -"odb" = ( -/obj/structure/filingcabinet/filingcabinet, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -28 - }, -/obj/machinery/camera{ - c_tag = "Cargo - Mailroom"; - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white/corner, -/area/cargo/sorting) -"odn" = ( -/obj/machinery/computer/atmos_control/tank/carbon_tank{ - dir = 8 - }, -/obj/structure/window/reinforced{ - 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/yellow/visible, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"odq" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall/r_wall, -/area/engineering/atmos) -"ods" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable, -/turf/open/space, -/area/solars/starboard/aft) -"odv" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"odA" = ( -/obj/structure/table, -/obj/item/stack/cable_coil{ - pixel_x = 2; - pixel_y = -2 - }, -/obj/item/stack/cable_coil{ - pixel_x = 3; - pixel_y = 5 - }, -/obj/item/screwdriver{ - pixel_y = 16 - }, -/obj/item/stock_parts/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/storage/primary) -"oek" = ( -/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 = 4 - }, -/turf/open/floor/engine, -/area/engineering/supermatter) -"oen" = ( -/obj/structure/filingcabinet, -/obj/item/folder/documents, -/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/ai_monitored/command/nuke_storage) -"oeu" = ( -/obj/machinery/camera{ - c_tag = "Secure Tech Storage"; - dir = 8 - }, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_x = 29 - }, -/obj/machinery/light/small{ - 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/engineering/storage/tech) -"oeQ" = ( -/obj/structure/rack, -/obj/item/clothing/mask/gas, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"ofn" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/office) -"ofp" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/machinery/light/small, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -28 - }, -/obj/vehicle/ridden/janicart, -/obj/item/key/janitor, -/turf/open/floor/plating, -/area/service/janitor) -"ofE" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=14.9-CrewQuarters-Central"; - location = "14.8-Dorms-Lockers" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/commons/dorms) -"ofI" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/cargo/storage) -"ogf" = ( -/obj/structure/table/wood, -/obj/item/stamp/captain, -/obj/machinery/computer/security/wooden_tv, -/turf/open/floor/wood, -/area/command/heads_quarters/captain/private) -"ohj" = ( -/obj/item/integrated_electronics/analyzer, -/obj/item/integrated_electronics/debugger, -/obj/item/integrated_electronics/wirer, -/obj/structure/table/reinforced, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"ohx" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/aisat/exterior) -"oiv" = ( -/obj/structure/sign/warning/pods, -/turf/closed/wall, -/area/commons/locker) -"oiY" = ( -/obj/machinery/light, -/obj/structure/rack, -/obj/item/storage/toolbox/emergency, -/obj/item/storage/toolbox/emergency{ - pixel_x = -2; - pixel_y = -3 - }, -/obj/item/wrench, -/obj/item/multitool, -/obj/machinery/newscaster{ - pixel_y = -30 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/command/bridge) -"ojs" = ( -/obj/structure/table/wood, -/obj/machinery/newscaster/security_unit{ - pixel_x = -30; - pixel_y = 1 - }, -/obj/item/card/id/captains_spare, -/turf/open/floor/carpet, -/area/command/heads_quarters/captain/private) -"ojC" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/storage/primary) -"ojI" = ( -/obj/machinery/camera{ - c_tag = "Cargo Bay - Storage Wing Entrance"; - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/construction/storage_wing) -"okb" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/dark, -/area/commons/cryopod) -"okm" = ( -/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ - dir = 8 - }, -/obj/machinery/meter, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"okn" = ( -/obj/structure/table/wood, -/obj/machinery/recharger, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/hos) -"okp" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/airalarm{ - pixel_y = 28 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/office) -"okX" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/item/crowbar, -/obj/machinery/door/poddoor/shutters/radiation/preopen{ - id = "engsm"; - name = "Radiation Chamber Shutters" - }, -/turf/open/floor/plating, -/area/engineering/supermatter) -"olc" = ( -/obj/machinery/light/small, -/obj/machinery/recharge_station, -/turf/open/floor/plasteel/freezer, -/area/commons/toilet/restrooms) -"olw" = ( -/obj/machinery/door/airlock/atmos/glass{ - name = "Atmospherics Monitoring"; - req_access_txt = "24" - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"olW" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"omb" = ( -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/dark/visible{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"omQ" = ( -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/turf/open/floor/plating, -/area/engineering/main) -"omS" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/cargo/storage) -"omU" = ( -/obj/machinery/door/morgue{ - name = "Confession Booth (Chaplain)"; - req_access_txt = "22" - }, -/turf/open/floor/plasteel/dark, -/area/service/chapel/office) -"oni" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"onz" = ( -/obj/structure/table, -/obj/item/canvas/twentythreeXtwentythree, -/obj/item/canvas/twentythreeXtwentythree, -/obj/item/canvas/twentythreeXnineteen, -/obj/item/canvas/twentythreeXnineteen, -/obj/item/canvas/nineteenXnineteen, -/obj/item/canvas/nineteenXnineteen, -/obj/item/storage/crayons, -/obj/item/storage/crayons, -/obj/item/storage/crayons, -/turf/open/floor/plasteel, -/area/commons/storage/art) -"ooc" = ( -/obj/machinery/shieldwallgen, -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 2 - }, -/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/command/teleporter) -"ooe" = ( -/obj/structure/table, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/turf/open/floor/plasteel, -/area/security/office) -"ooo" = ( -/obj/machinery/bluespace_beacon, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/command/teleporter) -"oop" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/commons/locker) -"ooB" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/dark/visible{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"ooH" = ( -/obj/structure/disposalpipe/segment, -/turf/closed/wall, -/area/cargo/sorting) -"opc" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"opk" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/service/kitchen) -"opw" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 5 - }, -/turf/open/floor/engine, -/area/engineering/main) -"opx" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/wood, -/area/command/corporate_showroom) -"opM" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel/white, -/area/command/heads_quarters/rd) -"oqK" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/machinery/camera{ - c_tag = "Cargo Bay - Fore" - }, -/obj/structure/sign/map/right{ - desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; - icon_state = "map-right-MS"; - pixel_y = 32 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"oqV" = ( -/obj/machinery/vending/assist, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/sign/poster/official/random{ - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/storage/primary) -"orA" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/machinery/light_switch{ - pixel_x = 8; - pixel_y = 30 - }, -/turf/open/floor/plasteel, -/area/service/janitor) -"orJ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall, -/area/security/brig) -"osB" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/external{ - name = "Escape Pod Four"; - req_access_txt = "32" - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"osD" = ( -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solars/starboard/fore) -"osR" = ( -/obj/machinery/light/small, -/turf/open/floor/plating, -/area/cargo/storage) -"otk" = ( -/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/cargo/storage) -"otq" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/ce) -"ott" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command/gateway) -"our" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=14.3-Lockers-Dorms"; - location = "14.2-Central-CrewQuarters" - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/commons/locker) -"out" = ( -/obj/structure/closet/wardrobe/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/commons/locker) -"ouC" = ( -/obj/machinery/power/apc{ - areastring = "/area/engineering/storage/tech"; - dir = 8; - name = "Tech Storage APC"; - pixel_x = -25 - }, -/obj/structure/cable/yellow{ - icon_state = "0-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/engineering/storage/tech) -"ovB" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/commons/storage/primary) -"owz" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/landmark/start/security_officer, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/office) -"owQ" = ( -/obj/structure/tank_dispenser, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/turf/open/floor/plasteel{ - dir = 1 - }, -/area/engineering/main) -"oxn" = ( -/obj/machinery/door/window/westright, -/turf/open/floor/wood, -/area/command/heads_quarters/captain/private) -"oxr" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/structure/chair/comfy/brown{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/command/heads_quarters/captain/private) -"oyi" = ( -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/machinery/power/tracker, -/turf/open/floor/plating/airless, -/area/solars/starboard/fore) -"oyV" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 6 - }, -/obj/effect/landmark/start/atmospheric_technician, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"ozl" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/sign/poster/contraband/clown{ - pixel_x = 32 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/wood, -/area/service/theater) -"ozS" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance{ - name = "Crematorium"; - req_access_txt = "22;27" - }, -/turf/open/floor/plasteel/dark, -/area/service/chapel/office) -"ozU" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters{ - id = "evashutter"; - name = "E.V.A. Storage Shutter" - }, -/obj/machinery/button/door{ - id = "evashutter"; - name = "E.V.A. Storage Shutter Control"; - pixel_x = 30; - req_access_txt = "19" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/ai_monitored/command/storage/eva) -"ozV" = ( -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/machinery/power/apc{ - areastring = "/area/hallway/secondary/service"; - dir = 1; - name = "Service Hall APC"; - pixel_y = 23 - }, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/service) -"oAw" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/service/kitchen) -"oAS" = ( -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/command/heads_quarters/rd) -"oBl" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/locker) -"oBB" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/landmark/start/bartender, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/service/bar) -"oBF" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"oBW" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/commons/storage/primary) -"oBX" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/engineering/atmos) -"oCb" = ( -/obj/structure/table, -/obj/effect/turf_decal/delivery, -/obj/item/clothing/glasses/meson, -/obj/item/clothing/glasses/meson, -/obj/item/clothing/glasses/meson, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/item/storage/belt/utility, -/obj/item/storage/belt/utility, -/turf/open/floor/plasteel, -/area/engineering/main) -"oCu" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/atmos_waste{ - dir = 1 - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/engineering/atmos) -"oCy" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/turf/open/floor/plating, -/area/engineering/break_room) -"oCQ" = ( -/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/command/bridge) -"oDl" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"oDp" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/turf/open/floor/plasteel/dark, -/area/commons/fitness/recreation) -"oDQ" = ( -/obj/machinery/power/port_gen/pacman, -/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/ai_monitored/command/storage/satellite) -"oEM" = ( -/obj/machinery/power/apc{ - areastring = "/area/maintenance/starboard"; - dir = 1; - name = "Starboard Maintenance APC"; - pixel_x = -1; - pixel_y = 23 - }, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"oFv" = ( -/obj/machinery/atmospherics/components/binary/pump/on{ - name = "Gas to Cold Loop" - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/engine, -/area/engineering/main) -"oFB" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/service/kitchen) -"oGd" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/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/office) -"oHW" = ( -/obj/machinery/portable_atmospherics/canister/air, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"oIi" = ( -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/plating, -/area/commons/fitness/pool) -"oIN" = ( -/obj/machinery/vending/coffee, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/engineering/break_room) -"oJk" = ( -/obj/structure/chair/stool, -/turf/open/floor/plasteel/chapel{ - dir = 4 - }, -/area/service/chapel/main) -"oJt" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/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/engineering/gravity_generator) -"oJO" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel, -/area/commons/locker) -"oKf" = ( -/obj/item/wrench, -/obj/item/clothing/suit/apron, -/obj/item/clothing/accessory/armband/hydro, -/obj/structure/table/glass, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"oKi" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/item/beacon, -/obj/machinery/holopad/secure, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat/foyer) -"oKY" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_x = 30 - }, -/turf/open/floor/plasteel/grimy, -/area/service/chapel/office) -"oLm" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "Pure to Ports" - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"oLu" = ( -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_y = 32 - }, -/obj/structure/filingcabinet/chestdrawer{ - pixel_y = 2 - }, -/turf/open/floor/wood, -/area/command/heads_quarters/hop) -"oLU" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/commons/dorms) -"oLW" = ( -/obj/structure/table/reinforced, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/requests_console{ - department = "Science"; - departmentType = 2; - name = "Science Requests Console"; - pixel_y = 30; - receive_ore_updates = 1 - }, -/obj/item/integrated_electronics/debugger, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"oMe" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/commons/fitness/pool) -"oMn" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/wood, -/area/service/library) -"oMq" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/engine/plasma, -/area/engineering/atmos) -"oMG" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "Gateway Atrium"; - req_access_txt = "62" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/command/gateway) -"oNf" = ( -/obj/machinery/door/window/northright{ - base_state = "left"; - dir = 8; - icon_state = "left"; - name = "Library Desk Door"; - pixel_x = 3; - req_access_txt = "37" - }, -/turf/open/floor/wood, -/area/service/library) -"oNX" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/obj/machinery/computer/atmos_control, -/turf/open/floor/plasteel/checker, -/area/engineering/atmos) -"oOi" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters{ - id = "gateshutter"; - name = "Gateway Access Shutter" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/command/gateway) -"oOQ" = ( -/obj/machinery/door/poddoor/preopen{ - id = "atmos"; - name = "Atmospherics Blast Door" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"oOW" = ( -/obj/machinery/door/poddoor/preopen{ - id = "bridge blast"; - name = "bridge blast door" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command/glass{ - name = "Bridge Access"; - req_access_txt = "19" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - 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/command/bridge) -"oPo" = ( -/obj/structure/chair, -/obj/effect/landmark/start/chaplain, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/service/chapel/main) -"oPO" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/dark, -/area/commons/fitness/recreation) -"oQo" = ( -/obj/structure/chair{ - pixel_y = -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/service/chapel/main) -"oQs" = ( -/obj/structure/window/reinforced, -/obj/machinery/computer/atmos_control/tank/air_tank{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/cafeteria, -/area/engineering/atmos) -"oQI" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"oRp" = ( -/turf/open/space/basic, -/area/space/station_ruins) -"oRx" = ( -/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/commons/fitness/recreation) -"oRL" = ( -/obj/docking_port/stationary{ - dir = 2; - dwidth = 11; - height = 22; - id = "whiteship_home"; - name = "SS13: Auxiliary Dock, Station-Port"; - width = 35 - }, -/turf/open/space/basic, -/area/space) -"oSo" = ( -/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/command/gateway) -"oSD" = ( -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/hos) -"oSE" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/mining{ - name = "Cargo Bay"; - req_one_access_txt = "48;50" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/cargo/office) -"oTb" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/carpet, -/area/command/heads_quarters/hop) -"oTo" = ( -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_x = -30 - }, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/obj/structure/reagent_dispensers/fueltank/high, -/turf/open/floor/plasteel{ - dir = 1 - }, -/area/engineering/main) -"oTr" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -24 - }, -/obj/structure/table, -/obj/item/folder, -/obj/item/storage/firstaid/regular, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/commons/locker) -"oTC" = ( -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -27 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/commons/dorms) -"oTY" = ( -/obj/structure/closet/secure_closet/captains, -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 2 - }, -/turf/open/floor/wood, -/area/command/heads_quarters/captain/private) -"oUy" = ( -/obj/machinery/light/small, -/obj/machinery/power/apc{ - areastring = "/area/commons/toilet/restrooms"; - name = "Restrooms APC"; - pixel_y = -26 - }, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/turf/open/floor/plasteel/freezer, -/area/commons/toilet/restrooms) -"oUA" = ( -/obj/structure/table/reinforced, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/item/paper_bin, -/obj/item/pen, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"oUJ" = ( -/obj/structure/rack, -/obj/item/stack/packageWrap{ - pixel_x = 2; - pixel_y = -3 - }, -/obj/item/stack/packageWrap{ - pixel_x = 2; - pixel_y = -3 - }, -/obj/item/stack/packageWrap{ - pixel_x = 2; - pixel_y = -3 - }, -/obj/item/stack/packageWrap{ - pixel_x = 2; - pixel_y = -3 - }, -/obj/item/stack/packageWrap{ - pixel_x = 2; - pixel_y = -3 - }, -/obj/item/stack/wrapping_paper, -/obj/item/stack/wrapping_paper, -/obj/item/destTagger{ - pixel_x = 4; - pixel_y = 3 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/cargo/storage) -"oVF" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/dark, -/area/commons/fitness/recreation) -"oVH" = ( -/obj/machinery/atmospherics/components/binary/pump/on{ - name = "Waste to Filter" - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"oWn" = ( -/obj/machinery/firealarm{ - pixel_y = 27 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"oWo" = ( -/turf/closed/wall/mineral/plastitanium, -/area/commons/fitness/recreation) -"oWt" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - name = "Recreation Area" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/dorms) -"oWF" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/engineering/atmos) -"oWR" = ( -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/port) -"oXj" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/closet/cardboard, -/obj/structure/sign/poster/official/random{ - pixel_y = 32 - }, -/turf/open/floor/plasteel, -/area/cargo/warehouse) -"oXk" = ( -/obj/structure/table/reinforced, -/obj/item/folder/yellow, -/obj/item/stamp/ce, -/obj/item/reagent_containers/pill/patch/silver_sulf, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/command/heads_quarters/ce) -"oXt" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/turf/open/floor/plating, -/area/construction/storage_wing) -"oYR" = ( -/obj/structure/table, -/obj/item/assembly/igniter{ - pixel_x = -4; - pixel_y = -4 - }, -/obj/item/assembly/igniter, -/obj/item/screwdriver{ - pixel_y = 16 - }, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/storage/primary) -"oZg" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/girder, -/obj/structure/grille, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"oZv" = ( -/obj/machinery/computer/secure_data, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/hos) -"oZL" = ( -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/command/storage/satellite) -"oZU" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/item/reagent_containers/food/snacks/grown/harebell, -/obj/item/reagent_containers/food/snacks/grown/harebell, -/obj/item/reagent_containers/food/snacks/grown/harebell, -/obj/item/reagent_containers/food/snacks/grown/harebell, -/obj/item/reagent_containers/food/snacks/grown/harebell, -/obj/machinery/button/massdriver{ - id = "chapelgun"; - name = "Chapel Mass Driver"; - pixel_x = -4; - pixel_y = -26 - }, -/obj/structure/table/wood, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/service/chapel/main) -"pan" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/engineering/main) -"paA" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/transit_tube/station{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/aisat/exterior) -"paM" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/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 - }, -/obj/machinery/atmospherics/pipe/manifold/yellow/visible{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"paQ" = ( -/obj/structure/closet/secure_closet/personal/cabinet, -/obj/item/clothing/under/misc/assistantformal, -/turf/open/floor/wood, -/area/commons/dorms) -"paS" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"pbc" = ( -/obj/structure/light_construct/small{ - dir = 4 - }, -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_x = 30 - }, -/mob/living/simple_animal/opossum/poppy, -/turf/open/floor/wood, -/area/maintenance/port/aft) -"pbQ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall, -/area/ai_monitored/aisat/exterior) -"pcc" = ( -/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 = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"pcd" = ( -/turf/closed/wall, -/area/cargo/storage) -"pch" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/engineering/main) -"pcs" = ( -/obj/machinery/atmospherics/pipe/simple/dark/visible{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"pct" = ( -/obj/structure/table, -/obj/machinery/microwave{ - pixel_x = -3; - pixel_y = 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/security/office) -"pcy" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/techstorage/command, -/turf/open/floor/plasteel/dark, -/area/engineering/storage/tech) -"pcz" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 6 - }, -/turf/closed/wall/r_wall, -/area/engineering/supermatter) -"pcD" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel, -/area/commons/storage/tools) -"pdm" = ( -/obj/machinery/power/apc{ - areastring = "/area/security/checkpoint/engineering"; - dir = 8; - name = "Engineering Security APC"; - pixel_x = -25 - }, -/obj/structure/cable/yellow{ - 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) -"pdy" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/freezer, -/area/commons/toilet/restrooms) -"pdZ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 4; - sortType = 8 - }, -/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 - }, -/turf/open/floor/plasteel, -/area/security/office) -"peh" = ( -/obj/effect/turf_decal/stripes/line, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/reagent_dispensers/watertank/high, -/obj/item/reagent_containers/glass/bucket, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"peX" = ( -/obj/item/storage/box, -/obj/structure/table, -/obj/item/storage/box, -/obj/item/storage/box, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/obj/item/hand_labeler, -/obj/machinery/power/apc{ - areastring = "/area/cargo/sorting"; - dir = 4; - name = "Delivery Office APC"; - pixel_x = 24 - }, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white/corner, -/area/cargo/sorting) -"pfi" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/obj/machinery/door/poddoor/preopen{ - id = "rdprivacy"; - name = "privacy shutter" - }, -/turf/open/floor/plating, -/area/command/heads_quarters/rd) -"pfp" = ( -/obj/structure/cable/yellow{ - 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/engineering/storage/tech) -"pfE" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solars/starboard/fore) -"pfU" = ( -/obj/item/storage/firstaid/regular{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/table/glass, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/command/bridge) -"pgP" = ( -/obj/machinery/power/apc{ - areastring = "/area/command/heads_quarters/rd"; - name = "RD Office APC"; - pixel_y = -27 - }, -/obj/structure/cable/yellow, -/obj/machinery/light_switch{ - pixel_x = -23 - }, -/obj/item/kirbyplants/dead, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/command/heads_quarters/rd) -"pgT" = ( -/obj/machinery/portable_atmospherics/canister/toxins, -/obj/machinery/atmospherics/miner/toxins, -/turf/open/floor/engine/plasma, -/area/engineering/atmos) -"phk" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/cargo/miningoffice) -"php" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/on{ - dir = 1 - }, -/turf/open/floor/engine/vacuum, -/area/engineering/atmos) -"pht" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/bookcase, -/turf/open/floor/wood, -/area/command/bridge) -"pic" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 2 - }, -/obj/machinery/disposal/deliveryChute{ - dir = 4; - name = "Crate Disposal Chute"; - pixel_x = -5; - pixel_y = 2 - }, -/obj/machinery/door/window/westleft{ - base_state = "right"; - dir = 4; - icon_state = "right"; - name = "Crate Disposal Chute" - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/commons/storage/primary) -"pig" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"pii" = ( -/obj/machinery/light/small, -/turf/open/floor/engine/air, -/area/engineering/atmos) -"piB" = ( -/obj/machinery/vending/hydroseeds{ - slogan_delay = 700 - }, -/obj/structure/noticeboard{ - desc = "A board for pinning important notices upon. Probably helpful for keeping track of requests."; - name = "requests board"; - pixel_y = 32 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"pjr" = ( -/obj/machinery/camera{ - c_tag = "Atmospherics - Starboard Aft"; - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 9 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"pjG" = ( -/obj/structure/table/wood, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/machinery/power/apc{ - areastring = "/area/security/detectives_office"; - dir = 8; - name = "Detective APC"; - pixel_x = -25 - }, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/item/taperecorder{ - pixel_x = 3 - }, -/obj/item/storage/box/evidence, -/obj/item/flashlight/seclite, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"pjR" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"pko" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/commons/dorms) -"pky" = ( -/obj/machinery/power/apc{ - areastring = "/area/security/checkpoint/science/research"; - dir = 8; - name = "Security Post - Research Division APC"; - pixel_x = -25 - }, -/obj/structure/cable/yellow, -/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/research) -"plk" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/storage/tech) -"plm" = ( -/obj/machinery/power/apc/highcap/ten_k{ - areastring = "/area/command/bridge"; - dir = 8; - name = "Bridge APC"; - pixel_x = -25 - }, -/obj/structure/cable/yellow, -/obj/machinery/camera{ - c_tag = "Bridge - Port"; - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command/bridge) -"plI" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/aisat/exterior) -"plN" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"plV" = ( -/obj/machinery/power/apc{ - areastring = "/area/service/chapel/office"; - name = "Chapel Office APC"; - pixel_y = -25 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/obj/structure/cable/yellow, -/turf/open/floor/plasteel/grimy, -/area/service/chapel/office) -"plX" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"pmb" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/costume, -/obj/effect/spawner/lootdrop/costume, -/obj/item/clothing/mask/balaclava, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/commons/locker) -"pmc" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/closed/wall/r_wall, -/area/maintenance/disposal/incinerator) -"pmd" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/sign/warning/pods{ - pixel_x = 30 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/commons/dorms) -"pmq" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/commons/dorms) -"pmA" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Holodeck"; - dir = 1 - }, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -28 - }, -/obj/machinery/light/small, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"pnA" = ( -/obj/machinery/light_switch{ - pixel_x = 28 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/machinery/camera{ - c_tag = "Chapel Office"; - dir = 8 - }, -/turf/open/floor/plasteel/grimy, -/area/service/chapel/office) -"pnF" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/gravity_generator) -"pnM" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/gravity_generator) -"pok" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/carpet, -/area/command/heads_quarters/captain/private) -"poo" = ( -/obj/machinery/vending/cigarette, -/turf/open/floor/carpet, -/area/service/bar) -"poT" = ( -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/obj/machinery/power/apc{ - areastring = "/area/command/heads_quarters/hop"; - dir = 1; - name = "Head of Personnel APC"; - pixel_y = 23 - }, -/turf/open/floor/carpet, -/area/command/heads_quarters/hop) -"poW" = ( -/obj/effect/decal/cleanable/cobweb, -/obj/structure/bodycontainer/morgue{ - dir = 2 - }, -/turf/open/floor/plasteel/dark, -/area/service/chapel/office) -"pqa" = ( -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/command/heads_quarters/captain/private) -"pqi" = ( -/obj/structure/table, -/obj/item/wirecutters, -/obj/item/flashlight{ - pixel_x = 1; - pixel_y = 5 - }, -/obj/machinery/requests_console{ - department = "Tool Storage"; - pixel_x = 30 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Tool Storage"; - dir = 8 - }, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/storage/primary) -"pqG" = ( -/obj/structure/chair{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"pqJ" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/office) -"prf" = ( -/turf/closed/wall, -/area/commons/storage/tools) -"prg" = ( -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solars/port/aft) -"pri" = ( -/obj/structure/disposalpipe/junction{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/commons/storage/primary) -"prS" = ( -/obj/structure/chair, -/turf/open/floor/plasteel/grimy, -/area/security/office) -"prY" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/commons/locker) -"pse" = ( -/turf/open/floor/wood{ - icon_state = "wood-broken5" - }, -/area/service/library) -"psh" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/ai_slipper{ - uses = 10 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/aisat/exterior) -"psw" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Primary Tool Storage" - }, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/storage/primary) -"psx" = ( -/obj/machinery/vending/cigarette, -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/turf/open/floor/plasteel, -/area/construction/storage_wing) -"psM" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/power/apc{ - areastring = "/area/hallway/primary/starboard"; - dir = 1; - name = "Starboard Hallway APC"; - pixel_y = 23 - }, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"psS" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/commons/fitness/recreation) -"ptX" = ( -/obj/structure/sign/warning/securearea, -/turf/closed/wall/r_wall, -/area/engineering/main) -"puw" = ( -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/hos) -"puC" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 6 - }, -/obj/machinery/camera{ - c_tag = "Engineering Supermatter Fore"; - dir = 4; - network = list("ss13","engine") - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -26 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"pvk" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/security/detectives_office) -"pvo" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/commons/locker) -"pvs" = ( -/obj/machinery/vending/cart{ - req_access_txt = "57" - }, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = 21 - }, -/turf/open/floor/wood, -/area/command/heads_quarters/hop) -"pvA" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/starboard) -"pvK" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/holopad/secure, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai) -"pvU" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/cargo/office) -"pwz" = ( -/obj/machinery/door/window/northleft{ - dir = 8; - name = "Inner Pipe Access"; - req_access_txt = "24" - }, -/obj/machinery/atmospherics/pipe/simple/yellow/visible, -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"pwE" = ( -/obj/machinery/atmospherics/pipe/manifold4w/general/visible, -/obj/machinery/meter, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"pwY" = ( -/obj/item/seeds/wheat, -/obj/item/seeds/sugarcane, -/obj/item/seeds/potato, -/obj/item/seeds/apple, -/obj/item/grown/corncob, -/obj/item/reagent_containers/food/snacks/grown/carrot, -/obj/item/reagent_containers/food/snacks/grown/wheat, -/obj/item/reagent_containers/food/snacks/grown/pumpkin{ - pixel_y = 5 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/camera/autoname{ - dir = 8 - }, -/obj/structure/table/glass, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"pxg" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/miningoffice) -"pxy" = ( -/obj/machinery/status_display/evac{ - pixel_y = 32 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/computer/station_alert, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark/corner{ - dir = 1 - }, -/area/engineering/atmos) -"pxS" = ( -/obj/machinery/light/small, -/obj/machinery/libraryscanner, -/turf/open/floor/wood, -/area/service/library) -"pya" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"pyj" = ( -/obj/structure/table, -/obj/item/paper_bin/construction, -/obj/item/airlock_painter, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/turf/open/floor/plasteel, -/area/commons/storage/art) -"pyW" = ( -/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/glass, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/cafeteria, -/area/command/heads_quarters/cmo) -"pzg" = ( -/obj/machinery/status_display/evac{ - pixel_x = -32; - pixel_y = 32 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/hos) -"pzj" = ( -/obj/machinery/door/airlock/external, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"pzk" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/command/gateway) -"pzF" = ( -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/disposal/bin, -/turf/open/floor/plasteel, -/area/service/janitor) -"pzO" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/rack, -/obj/item/stack/sheet/cardboard, -/obj/item/stack/rods/fifty, -/obj/item/paper, -/obj/item/storage/box/lights/mixed, -/obj/structure/sign/poster/official/random{ - pixel_y = -32 - }, -/turf/open/floor/plasteel, -/area/cargo/warehouse) -"pzY" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/service/bar) -"pAk" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"pAr" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/mix_input{ - dir = 8 - }, -/turf/open/floor/engine/vacuum, -/area/engineering/atmos) -"pAA" = ( -/obj/item/flashlight/lamp, -/obj/machinery/newscaster{ - pixel_x = -30 - }, -/obj/structure/table/wood, -/turf/open/floor/plasteel/grimy, -/area/service/chapel/office) -"pAD" = ( -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"pAO" = ( -/obj/structure/table, -/obj/item/airlock_painter, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/engineering/main) -"pBK" = ( -/turf/closed/wall/r_wall, -/area/command/heads_quarters/hop) -"pBY" = ( -/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, -/area/space) -"pCg" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/holopad/secure, -/turf/open/floor/plasteel/grimy, -/area/tcommsat/computer) -"pCC" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/freezer, -/area/commons/toilet/restrooms) -"pCP" = ( -/obj/structure/closet/secure_closet/medical1, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -22 - }, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/turf/open/floor/plasteel{ - dir = 1 - }, -/area/command/gateway) -"pCV" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"pDa" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel/dark, -/area/command/bridge) -"pDb" = ( -/obj/machinery/door/airlock/external{ - name = "Atmospherics External Airlock"; - req_access_txt = "24" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/turf/open/floor/plating, -/area/engineering/atmos) -"pDf" = ( -/obj/machinery/disposal/bin{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"pDn" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 6 - }, -/turf/open/space/basic, -/area/space/nearstation) -"pDz" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - icon_state = "0-8" - }, -/turf/open/space, -/area/solars/starboard/aft) -"pEN" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/office) -"pGf" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"pGg" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/landmark/start/clown, -/turf/open/floor/wood, -/area/service/theater) -"pGj" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"pGD" = ( -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/machinery/power/solar{ - id = "aftstarboard"; - name = "Aft-Starboard Solar Array" - }, -/turf/open/floor/plasteel/airless/solarpanel, -/area/solars/starboard/aft) -"pGH" = ( -/obj/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command/bridge) -"pGN" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/camera{ - c_tag = "Fitness Room - Fore" - }, -/obj/machinery/airalarm{ - pixel_y = 24 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"pHb" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/light_switch{ - pixel_y = -25 - }, -/obj/machinery/vending/cola/random, -/turf/open/floor/plasteel/dark, -/area/command/bridge) -"pHk" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_x = -26 - }, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel/dark, -/area/command/bridge) -"pHm" = ( -/obj/machinery/computer/security/hos, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/hos) -"pHr" = ( -/obj/machinery/power/apc/auto_name/east, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/turf/open/floor/plasteel/dark, -/area/commons/cryopod) -"pHS" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"pHX" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engineering/gravity_generator) -"pIc" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 5 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"pIp" = ( -/obj/structure/sign/map/right{ - desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; - icon_state = "map-right-MS"; - pixel_y = 32 - }, -/turf/open/floor/wood, -/area/command/heads_quarters/captain/private) -"pIJ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/landmark/start/assistant, -/obj/structure/chair/stool/bar, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/service/bar) -"pJd" = ( -/obj/structure/window/reinforced, -/obj/machinery/holopad/secure, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/aisat/exterior) -"pJi" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/recharger{ - pixel_y = 3 - }, -/obj/item/restraints/handcuffs{ - pixel_y = 3 - }, -/obj/structure/table/glass, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/command/bridge) -"pKe" = ( -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/machinery/power/solar{ - id = "forestarboard"; - name = "Fore-Starboard Solar Array" - }, -/turf/open/floor/plasteel/airless/solarpanel, -/area/solars/starboard/fore) -"pKu" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 4; - name = "Gas to Chamber" - }, -/turf/open/floor/engine, -/area/engineering/supermatter) -"pKx" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/carpet, -/area/command/heads_quarters/hos) -"pKD" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/power/apc{ - areastring = "/area/commons/fitness/recreation"; - dir = 1; - name = "Recreation Area APC"; - pixel_y = 23 - }, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"pLf" = ( -/turf/open/floor/engine/n2, -/area/engineering/atmos) -"pLx" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/turf/open/floor/plasteel{ - dir = 1 - }, -/area/engineering/main) -"pMd" = ( -/obj/structure/displaycase/trophy, -/turf/open/floor/wood, -/area/service/library) -"pMn" = ( -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/circuit/green{ - luminosity = 2 - }, -/area/ai_monitored/command/nuke_storage) -"pMX" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 4; - sortType = 16 - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"pNU" = ( -/obj/machinery/holopad, -/turf/open/floor/plasteel, -/area/commons/storage/tools) -"pOk" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/command/teleporter) -"pOP" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall/r_wall, -/area/maintenance/disposal/incinerator) -"pOS" = ( -/turf/closed/wall/r_wall, -/area/security/office) -"pPp" = ( -/obj/structure/closet/secure_closet/hydroponics, -/obj/machinery/light_switch{ - pixel_x = -26 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"pPG" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/treatment_center) -"pPS" = ( -/obj/machinery/atmospherics/pipe/simple/purple/visible{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"pQD" = ( -/obj/structure/window/reinforced, -/obj/structure/showcase/cyborg/old{ - dir = 8; - pixel_x = 9; - pixel_y = 2 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 24 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/aisat/exterior) -"pQJ" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/machinery/button/door{ - id = "FitnessShower"; - name = "Lock Control"; - normaldoorcontrol = 1; - pixel_y = -25; - specialfunctions = 4 - }, -/obj/structure/mirror{ - pixel_x = -28 - }, -/obj/machinery/light/small, -/turf/open/floor/plasteel/freezer, -/area/commons/fitness/recreation) -"pRd" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - icon_state = "0-4" - }, -/turf/open/space, -/area/solars/starboard/aft) -"pRp" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/grunge{ - name = "Club" - }, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/service/bar) -"pRA" = ( -/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/dark, -/area/command/bridge) -"pRX" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 24 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/storage/primary) -"pSm" = ( -/obj/item/radio/intercom{ - dir = 4; - name = "Station Intercom (General)"; - pixel_x = 27 - }, -/obj/machinery/camera{ - c_tag = "Mining Office"; - dir = 8 - }, -/obj/machinery/mineral/equipment_vendor, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/miningoffice) -"pSE" = ( -/obj/effect/landmark/start/captain, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/turf/open/floor/wood, -/area/command/heads_quarters/captain/private) -"pSX" = ( -/obj/machinery/door/airlock/external{ - name = "Auxiliary Escape Airlock" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"pSY" = ( -/turf/closed/wall, -/area/service/hydroponics/garden) -"pTr" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"pTI" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/service/kitchen) -"pTL" = ( -/obj/effect/turf_decal/tile/neutral{ - 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/holopad/secure, -/turf/open/floor/plasteel, -/area/command/heads_quarters/ce) -"pUa" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics/garden) -"pUr" = ( -/obj/machinery/suit_storage_unit/engine, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/turf/open/floor/plasteel{ - dir = 1 - }, -/area/engineering/main) -"pUB" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/heater/on, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel/dark/corner{ - dir = 1 - }, -/area/engineering/atmos) -"pUH" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plating, -/area/commons/fitness/recreation) -"pUJ" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/table/wood/poker, -/obj/item/toy/cards/deck{ - pixel_y = 4 - }, -/turf/open/floor/wood, -/area/service/bar) -"pUZ" = ( -/obj/structure/window/reinforced, -/obj/machinery/computer/atmos_control/tank/oxygen_tank{ - dir = 1 - }, -/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/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"pVL" = ( -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"pVM" = ( -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/aisat/exterior) -"pVV" = ( -/obj/structure/closet/secure_closet/hop, -/turf/open/floor/wood, -/area/command/heads_quarters/hop) -"pXj" = ( -/obj/structure/plasticflaps/opaque, -/obj/machinery/conveyor{ - backwards = 1; - forwards = 2; - id = "packageSort2" - }, -/obj/effect/turf_decal/loading_area, -/turf/open/floor/plating, -/area/cargo/sorting) -"pXm" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/machinery/door/poddoor/preopen{ - id = "cmoprivacy"; - name = "privacy shutter" - }, -/turf/open/floor/plating, -/area/command/heads_quarters/cmo) -"pXC" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/plating, -/area/commons/fitness/pool) -"pXT" = ( -/obj/machinery/seed_extractor, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/service/hydroponics/garden) -"pYh" = ( -/obj/structure/bookcase/random/religion, -/turf/open/floor/wood, -/area/service/library) -"pYn" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Art Storage" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/commons/storage/art) -"pYN" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/cargo/storage) -"pYY" = ( -/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/command/heads_quarters/hop) -"pZc" = ( -/obj/structure/window/reinforced, -/obj/machinery/computer/atmos_control/tank/nitrogen_tank{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/dark/visible, -/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/engineering/atmos) -"pZe" = ( -/obj/machinery/camera/motion{ - c_tag = "Vault"; - dir = 1; - network = list("vault") - }, -/obj/machinery/light, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/command/nuke_storage) -"pZP" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/security/office) -"pZY" = ( -/obj/machinery/power/supermatter_crystal/engine, -/turf/open/floor/engine, -/area/engineering/supermatter) -"qaa" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/carpet, -/area/command/bridge) -"qaA" = ( -/obj/structure/window/reinforced, -/obj/machinery/light/small, -/obj/machinery/camera{ - c_tag = "MiniSat Exterior - Fore"; - dir = 1; - network = list("minisat") - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/aisat/exterior) -"qaJ" = ( -/obj/structure/table, -/obj/item/razor{ - pixel_y = 5 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/locker) -"qaK" = ( -/obj/machinery/atmospherics/pipe/simple/dark/visible{ - dir = 10 - }, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"qbf" = ( -/obj/effect/spawner/structure/window, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/cargo/miningoffice) -"qbu" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 24 - }, -/turf/open/floor/wood, -/area/service/library) -"qcF" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/techstorage/service, -/turf/open/floor/plasteel/dark, -/area/engineering/storage/tech) -"qcH" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/sign/warning/securearea{ - pixel_y = 30 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/construction/storage_wing) -"qda" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_y = -32 - }, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/command/heads_quarters/rd) -"qde" = ( -/obj/machinery/power/apc{ - areastring = "/area/commons/vacant_room/office"; - dir = 8; - name = "Vacant Office APC"; - pixel_x = -25 - }, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/turf/open/floor/wood, -/area/commons/vacant_room/office) -"qed" = ( -/obj/structure/table, -/obj/item/radio/intercom{ - dir = 4; - name = "Station Intercom (General)"; - pixel_x = 27 - }, -/obj/item/clothing/gloves/color/yellow, -/obj/item/t_scanner, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/storage/primary) -"qee" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"qfe" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/service/kitchen) -"qfi" = ( -/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/command/gateway) -"qfD" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/commons/storage/primary) -"qfP" = ( -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/structure/chair/comfy/black{ - dir = 8 - }, -/turf/open/floor/plasteel/chapel{ - dir = 4 - }, -/area/service/chapel/main) -"qfY" = ( -/obj/structure/chair/stool{ - pixel_y = 8 - }, -/turf/open/floor/wood, -/area/service/bar) -"qgb" = ( -/obj/structure/toilet/secret/low_loot{ - pixel_y = 8 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/button/door{ - id = "AuxToilet2"; - name = "Lock Control"; - normaldoorcontrol = 1; - pixel_x = 25; - specialfunctions = 4 - }, -/obj/machinery/newscaster{ - pixel_y = -32 - }, -/turf/open/floor/plasteel, -/area/commons/toilet/auxiliary) -"qgP" = ( -/obj/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/aisat/exterior) -"qgV" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/power/apc{ - areastring = "/area/commons/locker"; - name = "Locker Room APC"; - pixel_x = -1; - pixel_y = -26 - }, -/obj/structure/cable/yellow, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/commons/locker) -"qha" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engineering/atmos) -"qhe" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"qhx" = ( -/obj/structure/rack, -/obj/item/clothing/under/color/red, -/obj/item/clothing/ears/earmuffs, -/obj/item/clothing/neck/tie/red, -/obj/item/clothing/head/soft/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/commons/fitness/recreation) -"qin" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/obj/machinery/door/poddoor/preopen{ - id = "hosprivacy"; - name = "privacy shutters" - }, -/turf/open/floor/plating, -/area/command/heads_quarters/hos) -"qiA" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/engineering/break_room) -"qiH" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/command/gateway) -"qiT" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/manifold/cyan/visible, -/turf/open/floor/engine, -/area/engineering/main) -"qjf" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/closed/wall, -/area/commons/fitness/recreation) -"qjZ" = ( -/obj/item/radio/intercom{ - dir = 4; - name = "Station Intercom (General)"; - pixel_x = -28; - pixel_y = 23 - }, -/obj/machinery/status_display/supply{ - pixel_y = 32 - }, -/obj/machinery/conveyor{ - dir = 5; - id = "QMLoad2" - }, -/turf/open/floor/plating, -/area/cargo/storage) -"qka" = ( -/obj/machinery/power/apc/highcap/five_k{ - areastring = "/area/command/corporate_showroom"; - dir = 4; - name = "Nanotrasen Corporate Showroom APC"; - pixel_x = 24 - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/item/cigbutt, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/wood, -/area/command/corporate_showroom) -"qkm" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/engineering/supermatter) -"qkC" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/turf/open/floor/engine, -/area/engineering/main) -"qkQ" = ( -/obj/machinery/light{ - 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/engineering/storage/tech) -"qkZ" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/construction/storage_wing) -"qlI" = ( -/obj/structure/table/glass, -/obj/item/lightreplacer{ - pixel_y = 7 - }, -/obj/item/storage/belt/utility, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"qmj" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/command/heads_quarters/captain/private) -"qmn" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/office) -"qmw" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/firealarm{ - pixel_y = 27 - }, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"qmx" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 24 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/machinery/shower{ - dir = 8; - name = "emergency shower" - }, -/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/treatment_center) -"qmB" = ( -/obj/structure/table/wood, -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/obj/item/clipboard, -/obj/item/paper, -/turf/open/floor/wood, -/area/commons/vacant_room/office) -"qmK" = ( -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/obj/structure/table/wood, -/obj/item/paper, -/turf/open/floor/wood, -/area/commons/dorms) -"qmL" = ( -/obj/machinery/conveyor_switch/oneway{ - dir = 8; - id = "QMLoad"; - pixel_x = 6 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"qnv" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/machinery/door/poddoor/preopen{ - id = "bridge blast"; - name = "bridge blast door" - }, -/turf/open/floor/plating, -/area/command/bridge) -"qnE" = ( -/obj/item/reagent_containers/food/drinks/soda_cans/thirteenloko{ - pixel_y = 4 - }, -/obj/structure/table/glass, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"qnH" = ( -/obj/machinery/portable_atmospherics/canister/air, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"qoi" = ( -/obj/structure/sign/poster/official/random, -/turf/closed/wall, -/area/service/kitchen) -"qoA" = ( -/obj/structure/reagent_dispensers/water_cooler, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/commons/fitness/recreation) -"qoD" = ( -/obj/machinery/atmospherics/pipe/manifold/purple/visible, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"qoW" = ( -/obj/machinery/door/window/northleft{ - dir = 8; - name = "Magboot Storage"; - pixel_x = -1; - req_access_txt = "19" - }, -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/obj/structure/rack, -/obj/item/clothing/shoes/magboots{ - pixel_x = -4; - pixel_y = 3 - }, -/obj/item/clothing/shoes/magboots, -/obj/item/clothing/shoes/magboots{ - pixel_x = 4; - 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/ai_monitored/command/storage/eva) -"qpG" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "MiniSat Exterior - Fore Port"; - dir = 8; - network = list("minisat") - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/aisat/exterior) -"qpJ" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/machinery/door/poddoor/preopen{ - id = "bridge blast"; - name = "bridge blast door" - }, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/turf/open/floor/plating, -/area/command/bridge) -"qpQ" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/gravity_generator) -"qpV" = ( -/obj/structure/table, -/obj/item/screwdriver{ - pixel_y = 16 - }, -/obj/item/wirecutters, -/obj/item/multitool, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/storage/tech) -"qqb" = ( -/mob/living/simple_animal/chicken{ - name = "Featherbottom"; - real_name = "Featherbottom" - }, -/turf/open/floor/grass, -/area/service/hydroponics/garden) -"qqg" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/science/misc_lab) -"qqK" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/cargo/office) -"qqM" = ( -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"qrb" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/carpet, -/area/command/heads_quarters/captain/private) -"qrc" = ( -/turf/open/floor/plasteel/chapel, -/area/service/chapel/main) -"qrH" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel/chapel{ - dir = 4 - }, -/area/service/chapel/main) -"qrM" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_x = -26 - }, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel/dark, -/area/command/bridge) -"qsU" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/command/storage/eva) -"qsV" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, -/obj/structure/cable/yellow{ - 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 = 8 - }, -/turf/open/floor/plasteel/dark/corner{ - dir = 1 - }, -/area/engineering/atmos) -"qtw" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/circuit/green{ - luminosity = 2 - }, -/area/ai_monitored/command/nuke_storage) -"qtO" = ( -/turf/closed/wall/r_wall, -/area/engineering/storage/tcomms) -"qur" = ( -/turf/open/floor/wood, -/area/command/corporate_showroom) -"qvR" = ( -/obj/structure/chair/office/dark{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/dark, -/area/command/bridge) -"qwb" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock{ - name = "Locker Room" - }, -/turf/open/floor/plasteel, -/area/commons/locker) -"qwn" = ( -/obj/structure/closet/secure_closet/quartermaster, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/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/cargo/qm) -"qwv" = ( -/obj/structure/sign/painting/library{ - pixel_y = 32 - }, -/turf/open/floor/wood, -/area/service/library) -"qwP" = ( -/obj/structure/rack, -/obj/item/pickaxe{ - pixel_x = 5 - }, -/obj/item/shovel{ - pixel_x = -5 - }, -/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/cargo/miningoffice) -"qxd" = ( -/turf/closed/wall/r_wall, -/area/engineering/atmos) -"qxg" = ( -/obj/structure/table/wood/fancy/blue, -/obj/structure/table/wood/fancy/royalblue, -/obj/structure/sign/painting/library_secure{ - pixel_x = 32 - }, -/obj/machinery/door/window{ - dir = 8; - name = "Secure Art Exhibition"; - req_access_txt = "37" - }, -/turf/open/floor/wood, -/area/service/library) -"qxN" = ( -/obj/structure/table/wood, -/obj/item/camera_film{ - pixel_x = 6; - pixel_y = 7 - }, -/obj/item/camera_film{ - pixel_x = -3; - pixel_y = 5 - }, -/turf/open/floor/wood, -/area/commons/vacant_room/office) -"qyd" = ( -/obj/structure/bed/roller, -/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/treatment_center) -"qyf" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/commons/fitness/recreation) -"qzI" = ( -/obj/machinery/computer/security/qm{ - 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/cargo/qm) -"qAf" = ( -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/machinery/light_switch{ - pixel_x = -24 - }, -/obj/machinery/power/smes/engineering, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"qAr" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"qAz" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/turf/open/floor/wood, -/area/service/library) -"qAA" = ( -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/wood, -/area/command/corporate_showroom) -"qAG" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/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 - }, -/obj/machinery/atmospherics/pipe/simple/yellow/visible, -/obj/machinery/space_heater, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"qAS" = ( -/obj/machinery/plantgenes{ - pixel_y = 6 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/table, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"qBh" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/machinery/lapvend, -/turf/open/floor/plasteel/white, -/area/science/research) -"qBl" = ( -/obj/structure/noticeboard{ - desc = "A board for pinning important notices upon. Probably helpful for keeping track of requests."; - name = "requests board"; - pixel_x = 32; - pixel_y = 32 - }, -/obj/machinery/requests_console{ - department = "Cargo Bay"; - departmentType = 2; - pixel_y = 30 - }, -/obj/machinery/computer/bounty, -/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/cargo/office) -"qBq" = ( -/turf/closed/wall/mineral/plastitanium, -/area/hallway/secondary/entry) -"qBv" = ( -/obj/machinery/power/apc{ - areastring = "/area/science/robotics/mechbay"; - dir = 4; - name = "Mech Bay APC"; - pixel_x = 24 - }, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"qBy" = ( -/obj/machinery/hydroponics/constructable, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/service/hydroponics/garden) -"qBG" = ( -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/obj/structure/closet/crate/internals, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/commons/storage/primary) -"qCl" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/obj/effect/landmark/start/security_officer, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/office) -"qCB" = ( -/obj/machinery/microwave{ - pixel_y = 4 - }, -/obj/machinery/camera{ - c_tag = "Engineering - Foyer - Port"; - dir = 1 - }, -/obj/structure/table/glass, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/engineering/break_room) -"qCO" = ( -/obj/machinery/light_switch{ - pixel_x = 23 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/machinery/shower{ - dir = 8; - name = "emergency shower" - }, -/obj/structure/sign/warning/securearea{ - pixel_y = 32 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"qCY" = ( -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/turf/open/floor/wood, -/area/command/heads_quarters/captain/private) -"qDg" = ( -/obj/machinery/conveyor/inverted{ - dir = 10; - id = "QMLoad" - }, -/turf/open/floor/plating, -/area/cargo/storage) -"qDt" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/effect/spawner/structure/window/plasma/reinforced, -/turf/open/floor/plating, -/area/engineering/main) -"qDu" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/engineering/main) -"qDJ" = ( -/obj/machinery/portable_atmospherics/canister/nitrous_oxide, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"qEc" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/heat_exchanging/junction, -/turf/open/floor/plating, -/area/science/circuit) -"qEi" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel/white, -/area/command/heads_quarters/rd) -"qFr" = ( -/obj/structure/toilet/secret/low_loot{ - pixel_y = 13 - }, -/obj/machinery/light, -/obj/effect/landmark/start/captain, -/obj/machinery/light_switch{ - pixel_y = -25 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/command/heads_quarters/captain/private) -"qGg" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/obj/machinery/light_switch{ - pixel_x = -26 - }, -/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/service/hydroponics/garden) -"qGt" = ( -/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/engineering/gravity_generator) -"qGy" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/nitrous_output{ - dir = 8 - }, -/turf/open/floor/engine/n2o, -/area/engineering/atmos) -"qGP" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"qHe" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/commons/locker) -"qHn" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/dark/visible{ - dir = 9 - }, -/turf/open/floor/plating, -/area/engineering/atmos) -"qHT" = ( -/turf/open/floor/plasteel, -/area/cargo/miningoffice) -"qHV" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/service/library) -"qIn" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 24 - }, -/obj/structure/table/wood, -/obj/item/reagent_containers/food/snacks/pie/cream, -/turf/open/floor/wood, -/area/service/theater) -"qIp" = ( -/obj/machinery/computer/mecha{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/command/heads_quarters/rd) -"qIq" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/engineering/gravity_generator) -"qID" = ( -/obj/structure/sign/warning/securearea, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/closed/wall/r_wall, -/area/ai_monitored/command/nuke_storage) -"qIM" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/computer/rdconsole/production{ - dir = 1 - }, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"qJb" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering{ - name = "Engine Room"; - req_access_txt = "10" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/turf/open/floor/plasteel{ - dir = 1 - }, -/area/engineering/main) -"qJh" = ( -/obj/structure/table/wood, -/obj/item/storage/secure/briefcase{ - pixel_x = -2 - }, -/obj/item/book/manual/wiki/security_space_law, -/obj/item/cartridge/detective, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/hos) -"qJk" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/wood, -/area/service/bar) -"qJF" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"qJZ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/science/circuit) -"qKo" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/cargo/storage) -"qKC" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/white, -/area/medical/treatment_center) -"qLt" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/light_switch{ - pixel_x = -28 - }, -/obj/machinery/newscaster{ - 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/command/heads_quarters/cmo) -"qMs" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/office) -"qMA" = ( -/obj/structure/table, -/obj/machinery/power/apc{ - areastring = "/area/commons/storage/art"; - dir = 8; - name = "Art Storage APC"; - pixel_x = -25 - }, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/item/paper_bin, -/obj/item/stack/cable_coil/random, -/obj/item/stack/cable_coil/random, -/obj/item/stack/cable_coil/random, -/obj/item/stack/cable_coil/random, -/obj/item/stack/cable_coil/random, -/turf/open/floor/plasteel, -/area/commons/storage/art) -"qNe" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow, -/turf/open/floor/plating, -/area/security/office) -"qOc" = ( -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -28 - }, -/obj/structure/chair/office/dark{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel/dark, -/area/engineering/break_room) -"qOf" = ( -/obj/structure/sign/directions/supply{ - pixel_y = -5 - }, -/turf/closed/wall, -/area/cargo/office) -"qOI" = ( -/obj/structure/closet/crate, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/item/stack/ore/glass, -/turf/open/floor/plasteel, -/area/cargo/warehouse) -"qOT" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/service/bar) -"qPs" = ( -/obj/machinery/door/airlock{ - id_tag = "AuxToilet2"; - name = "Unit 2" - }, -/turf/open/floor/plasteel, -/area/commons/toilet/auxiliary) -"qPw" = ( -/obj/machinery/vr_sleeper, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"qQe" = ( -/obj/machinery/power/apc{ - areastring = "/area/cargo/warehouse"; - dir = 4; - name = "Warehouse APC"; - pixel_x = 24 - }, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/effect/landmark/blobstart, -/turf/open/floor/plasteel, -/area/cargo/warehouse) -"qQR" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/service/chapel/office) -"qRa" = ( -/obj/structure/table, -/obj/item/storage/crayons, -/turf/open/floor/plasteel, -/area/commons/dorms) -"qRd" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/commons/dorms) -"qRM" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 4 - }, -/turf/open/space, -/area/space/nearstation) -"qSc" = ( -/obj/machinery/vr_sleeper, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"qSJ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/service/kitchen) -"qSK" = ( -/obj/structure/closet/secure_closet/personal, -/obj/item/clothing/under/misc/assistantformal, -/obj/structure/sign/map/right{ - desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; - icon_state = "map-right-MS"; - pixel_y = 32 - }, -/obj/item/clothing/suit/hooded/wintercoat, -/obj/item/clothing/shoes/winterboots, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/commons/locker) -"qSW" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/effect/landmark/start/chaplain, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel/dark, -/area/service/chapel/office) -"qSY" = ( -/obj/machinery/door/poddoor/shutters{ - id = "teleshutter"; - name = "Teleporter Access Shutter" - }, -/obj/machinery/button/door{ - id = "teleshutter"; - name = "Teleporter Shutter Control"; - pixel_x = 30; - pixel_y = 5; - req_access_txt = "19" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/command/teleporter) -"qTB" = ( -/obj/item/paper_bin{ - pixel_x = -2; - pixel_y = 8 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/table/wood, -/obj/structure/noticeboard{ - 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/service/chapel/main) -"qTN" = ( -/obj/structure/chair/stool{ - pixel_y = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/commons/dorms) -"qTR" = ( -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/window{ - name = "MiniSat Walkway Access" - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/aisat/exterior) -"qTW" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/commons/toilet/restrooms) -"qUd" = ( -/obj/machinery/meter/atmos/distro_loop, -/obj/machinery/atmospherics/pipe/manifold4w/supply/visible, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel/dark/corner{ - dir = 1 - }, -/area/engineering/atmos) -"qUy" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/carpet, -/area/service/library) -"qUM" = ( -/obj/structure/sign/warning/nosmoking, -/turf/closed/wall/r_wall, -/area/engineering/main) -"qUY" = ( -/obj/structure/table/wood, -/obj/item/book/manual/wiki/security_space_law{ - pixel_x = -3; - pixel_y = 5 - }, -/turf/open/floor/wood, -/area/commons/vacant_room/office) -"qVi" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"qVE" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1; - name = "Mix to Distro" - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"qVT" = ( -/obj/machinery/holopad, -/obj/machinery/status_display/evac{ - pixel_y = 32 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/command/bridge) -"qVZ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/structure/chair/comfy/brown{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/command/heads_quarters/captain/private) -"qWe" = ( -/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/command/bridge) -"qWh" = ( -/obj/structure/tank_dispenser/oxygen{ - pixel_x = -1; - pixel_y = 2 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_x = 29 - }, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/turf/open/floor/plasteel{ - dir = 1 - }, -/area/command/gateway) -"qWu" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/wood, -/area/service/theater) -"qWR" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel/dark/corner, -/area/engineering/atmos) -"qXd" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/dorms) -"qXX" = ( -/obj/effect/landmark/start/lawyer, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/wood, -/area/service/lawoffice) -"qYO" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics/garden) -"qZf" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -27 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"qZg" = ( -/obj/structure/sign/warning/vacuum/external, -/turf/closed/wall, -/area/cargo/miningoffice) -"qZk" = ( -/obj/machinery/power/apc/highcap/five_k{ - areastring = "/area/hallway/secondary/exit/departure_lounge"; - dir = 1; - name = "Departure Lounge APC"; - pixel_y = 23 - }, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"qZB" = ( -/obj/effect/spawner/structure/window/reinforced/tinted, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/service/hydroponics/garden) -"qZD" = ( -/obj/structure/closet/crate, -/obj/item/stack/cable_coil, -/obj/item/crowbar, -/obj/item/screwdriver{ - pixel_y = 16 - }, -/obj/machinery/power/apc{ - areastring = "/area/command/teleporter"; - dir = 4; - name = "Teleporter APC"; - pixel_x = 24 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable/yellow{ - 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/command/teleporter) -"qZP" = ( -/obj/structure/table, -/obj/item/hand_tele, -/obj/item/beacon, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command/teleporter) -"ram" = ( -/obj/machinery/computer/arcade{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"rbc" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/oxygen_input{ - dir = 1 - }, -/turf/open/floor/engine/o2, -/area/engineering/atmos) -"rbq" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/plasteel, -/area/cargo/storage) -"rbw" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/commons/storage/primary) -"rbE" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/firealarm{ - pixel_y = -24 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"rbG" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/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/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/office) -"rbX" = ( -/obj/structure/musician/piano, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/sign/poster/random{ - pixel_y = 32 - }, -/turf/open/floor/carpet, -/area/service/theater) -"rcc" = ( -/obj/structure/window/reinforced, -/obj/machinery/computer/cargo/request{ - dir = 8 - }, -/turf/open/floor/wood, -/area/command/heads_quarters/hop) -"rcf" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "Teleport Access"; - req_one_access_txt = "17;19" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/command/teleporter) -"rcL" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"rcO" = ( -/obj/structure/table/wood, -/obj/item/folder/blue, -/obj/item/lighter, -/turf/open/floor/carpet, -/area/command/bridge) -"rcZ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/cafeteria, -/area/command/heads_quarters/cmo) -"rdg" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 4 - }, -/obj/machinery/door/airlock/atmos/glass{ - name = "Distribution Loop"; - req_access_txt = "24" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"rdv" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/vending/wardrobe/cargo_wardrobe, -/turf/open/floor/plasteel, -/area/cargo/storage) -"rdE" = ( -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = 21 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/dark, -/area/service/chapel/main) -"rdG" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/machinery/door/poddoor/preopen{ - id = "hosprivacy"; - name = "privacy shutters" - }, -/turf/open/floor/plating, -/area/command/heads_quarters/hos) -"rdR" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"rdV" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"reC" = ( -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/service/kitchen) -"reM" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel/white, -/area/medical/genetics) -"rfm" = ( -/obj/machinery/holopad, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/carpet, -/area/service/theater) -"rfr" = ( -/obj/structure/table/wood, -/obj/item/storage/photo_album, -/turf/open/floor/engine/cult, -/area/service/library) -"rfC" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/construction/storage_wing) -"rgc" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/closed/wall/r_wall, -/area/ai_monitored/aisat/exterior) -"rgr" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"rgM" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"rhx" = ( -/obj/machinery/light, -/obj/machinery/computer/security/telescreen/minisat{ - dir = 1; - pixel_y = -29 - }, -/obj/structure/bed/dogbed/renault, -/mob/living/simple_animal/pet/fox/Renault, -/turf/open/floor/carpet, -/area/command/heads_quarters/captain/private) -"rhS" = ( -/obj/machinery/power/apc{ - areastring = "/area/medical/cryo"; - dir = 1; - name = "Cryogenics APC"; - pixel_y = 23 - }, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/obj/item/reagent_containers/glass/beaker/cryoxadone{ - pixel_x = -2; - pixel_y = 9 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/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/item/reagent_containers/dropper, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/cryo) -"rhU" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 4; - name = "Cooling Loop Bypass" - }, -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/engine, -/area/engineering/main) -"rid" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/layer_manifold, -/turf/open/floor/plating, -/area/engineering/atmos) -"rii" = ( -/obj/machinery/vending/tool, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/storage/primary) -"rik" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "Council Chamber"; - req_access_txt = "19" - }, -/turf/open/floor/plasteel/dark, -/area/command/bridge) -"rio" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "Captain's Quarters"; - req_access_txt = "20" - }, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/captain/private) -"rjg" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/command/heads_quarters/rd) -"rjF" = ( -/obj/structure/table, -/obj/item/storage/dice, -/turf/open/floor/plasteel, -/area/commons/locker) -"rkx" = ( -/turf/closed/wall/r_wall, -/area/engineering/supermatter) -"rky" = ( -/obj/structure/closet/crate, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/obj/item/stack/ore/glass, -/obj/item/stack/ore/iron, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/cargo/storage) -"rkT" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/commons/locker) -"rlw" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/table/wood/poker, -/obj/item/toy/cards/deck{ - pixel_y = 4 - }, -/turf/open/floor/wood, -/area/service/bar) -"rlA" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/obj/machinery/status_display/supply{ - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/office) -"rlJ" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1; - name = "Air to Pure" - }, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"rlO" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/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/treatment_center) -"rms" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"rmu" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"rns" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/effect/landmark/start/security_officer, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/office) -"roa" = ( -/obj/structure/chair/stool, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"rom" = ( -/obj/structure/bed/roller, -/obj/machinery/vending/wallmed{ - pixel_x = -28 - }, -/obj/machinery/camera{ - c_tag = "Gateway - Atrium"; - dir = 4 - }, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/turf/open/floor/plasteel{ - dir = 1 - }, -/area/command/gateway) -"ros" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command/glass{ - name = "Bridge"; - req_access_txt = "19" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/command/bridge) -"rov" = ( -/obj/effect/spawner/structure/window, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/medical/treatment_center) -"row" = ( -/turf/closed/wall, -/area/commons/fitness/pool) -"roz" = ( -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"rqx" = ( -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/turf/open/floor/plating, -/area/commons/toilet/auxiliary) -"rqG" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/green/visible, -/turf/open/floor/engine, -/area/engineering/main) -"rrD" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/wood, -/area/commons/vacant_room/office) -"rrX" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/obj/machinery/door/poddoor/preopen{ - id = "rdprivacy"; - name = "privacy shutter" - }, -/turf/open/floor/plating, -/area/command/heads_quarters/rd) -"rsm" = ( -/obj/machinery/light, -/obj/machinery/vending/cola/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/commons/fitness/recreation) -"rta" = ( -/obj/machinery/door/airlock/external{ - dir = 2; - name = "Public Mining Dock" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"rtU" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"rtZ" = ( -/obj/item/phone{ - desc = "Supposedly a direct line to Nanotrasen Central Command. It's not even plugged in."; - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/cigbutt/cigarbutt{ - pixel_x = 5; - pixel_y = -1 - }, -/obj/structure/table/wood, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/carpet, -/area/command/heads_quarters/hos) -"ruc" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command/bridge) -"ruy" = ( -/obj/machinery/computer/prisoner/management, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/hos) -"ruI" = ( -/obj/machinery/door/poddoor/shutters{ - id = "qm_mine_warehouse"; - name = "Warehouse Shutters" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/cargo/miningoffice) -"ruP" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible, -/obj/machinery/power/rad_collector/anchored, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/structure/window/plasma/reinforced{ - dir = 1 - }, -/turf/open/floor/engine, -/area/engineering/supermatter) -"rvd" = ( -/obj/structure/rack, -/obj/item/flashlight, -/obj/effect/spawner/lootdrop/maintenance, -/obj/machinery/light/small, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"rvr" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/command/gateway) -"rvU" = ( -/obj/machinery/power/apc/highcap/ten_k{ - areastring = "/area/engineering/main"; - dir = 8; - name = "Engine Room APC"; - pixel_x = -25 - }, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"rwk" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ - dir = 8 - }, -/turf/open/floor/engine, -/area/engineering/main) -"rwx" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "MiniSat Exterior - Fore Starboard"; - dir = 4; - network = list("minisat") - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/aisat/exterior) -"rxl" = ( -/obj/machinery/camera{ - c_tag = "Atmospherics Tank - CO2"; - dir = 8 - }, -/turf/open/floor/engine/co2, -/area/engineering/atmos) -"rxt" = ( -/obj/structure/table, -/obj/item/storage/toolbox/mechanical{ - pixel_x = -2; - pixel_y = -1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/storage/primary) -"rxy" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/landmark/secequipment, -/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/security/office) -"rxK" = ( -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/green/visible, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"rxM" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/engine, -/area/engineering/supermatter) -"rye" = ( -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/nuclearbomb/beer{ - pixel_x = 2; - pixel_y = 6 - }, -/obj/structure/table/wood, -/turf/open/floor/carpet, -/area/command/corporate_showroom) -"ryl" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"ryM" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, -/obj/machinery/camera{ - c_tag = "Engineering - Foyer - Starboard"; - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"ryN" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white/corner, -/area/cargo/sorting) -"rze" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"rzp" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/chapel, -/area/service/chapel/main) -"rzt" = ( -/obj/machinery/holopad, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/storage/tcomms) -"rzz" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/commons/dorms) -"rzS" = ( -/obj/machinery/power/apc{ - areastring = "/area/medical/medbay/aft"; - dir = 4; - name = "Medbay Aft APC"; - pixel_x = 24 - }, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/structure/disposalpipe/junction, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/aft) -"rzT" = ( -/obj/machinery/door/window/southleft{ - name = "Bar Delivery"; - req_access_txt = "25" - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/service/bar) -"rzX" = ( -/obj/structure/chair/office/light{ - dir = 1; - pixel_y = 3 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/lab) -"rAS" = ( -/obj/machinery/camera{ - c_tag = "Atmospherics Tank - Air"; - dir = 8 - }, -/turf/open/floor/engine/air, -/area/engineering/atmos) -"rCg" = ( -/obj/item/stack/ore/silver, -/obj/item/stack/ore/silver, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/cargo/miningoffice) -"rCx" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/wood, -/area/service/lawoffice) -"rCH" = ( -/obj/machinery/door/airlock{ - name = "Kitchen Cold Room"; - req_access_txt = "28" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/showroomfloor, -/area/service/kitchen) -"rCK" = ( -/obj/item/stack/sheet/plasteel{ - amount = 10; - pixel_x = -2; - pixel_y = 2 - }, -/obj/structure/table, -/obj/item/stack/sheet/rglass{ - amount = 30; - pixel_x = 2; - pixel_y = -2 - }, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/turf/open/floor/plasteel{ - dir = 1 - }, -/area/engineering/main) -"rDr" = ( -/obj/structure/table, -/obj/item/reagent_containers/food/drinks/sillycup{ - pixel_x = -5; - pixel_y = 3 - }, -/obj/item/reagent_containers/food/drinks/sillycup, -/obj/item/reagent_containers/food/drinks/sillycup{ - pixel_x = 5; - pixel_y = 3 - }, -/obj/item/reagent_containers/food/drinks/sillycup{ - pixel_x = 5; - pixel_y = 3 - }, -/obj/item/reagent_containers/food/drinks/sillycup{ - pixel_x = 5; - 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 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/dark, -/area/commons/fitness/recreation) -"rEX" = ( -/obj/structure/filingcabinet/employment, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/turf/open/floor/wood, -/area/service/lawoffice) -"rGv" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/item/clothing/head/cone{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/clothing/head/cone{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/clothing/head/cone{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/clothing/head/cone{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/clothing/head/cone{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"rGC" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/poddoor/preopen{ - id = "hosprivacy"; - name = "privacy shutters" - }, -/turf/open/floor/plating, -/area/command/heads_quarters/hos) -"rGV" = ( -/obj/machinery/camera{ - c_tag = "Supermatter Chamber"; - dir = 4; - network = list("engine") - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/engine, -/area/engineering/supermatter) -"rHS" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/decal/cleanable/cobweb, -/obj/machinery/button/door{ - id = "Cabin4"; - name = "Cabin Bolt Control"; - normaldoorcontrol = 1; - pixel_x = -25; - specialfunctions = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/obj/structure/bed, -/obj/effect/spawner/lootdrop/bedsheet, -/turf/open/floor/carpet, -/area/commons/dorms) -"rIb" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/commons/locker) -"rIw" = ( -/obj/machinery/hydroponics/constructable, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"rJc" = ( -/turf/closed/wall, -/area/command/teleporter) -"rJL" = ( -/obj/machinery/camera{ - c_tag = "Chapel - Port"; - dir = 4 - }, -/obj/structure/chair/comfy/black{ - dir = 4 - }, -/turf/open/floor/plasteel/chapel{ - dir = 8 - }, -/area/service/chapel/main) -"rJO" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/wood, -/area/commons/dorms) -"rJT" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/light, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/newscaster{ - pixel_y = -32 - }, -/turf/open/floor/plasteel, -/area/commons/locker) -"rJX" = ( -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel/freezer, -/area/commons/toilet/restrooms) -"rKe" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters{ - id = "evashutter"; - name = "E.V.A. Storage Shutter" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/ai_monitored/command/storage/eva) -"rKs" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"rKB" = ( -/obj/machinery/computer/bank_machine, -/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/ai_monitored/command/nuke_storage) -"rLB" = ( -/obj/effect/turf_decal/tile/neutral{ - 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/light, -/obj/machinery/gear_painter, -/turf/open/floor/plasteel/dark, -/area/commons/locker) -"rLH" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -24 - }, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/wood, -/area/service/library) -"rLS" = ( -/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/command/gateway) -"rLU" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/commons/locker) -"rLV" = ( -/obj/structure/table, -/obj/item/folder, -/obj/item/paper/guides/jobs/hydroponics, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/item/pen, -/obj/item/storage/crayons, -/turf/open/floor/plasteel, -/area/security/prison) -"rMx" = ( -/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/commons/fitness/recreation) -"rMA" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "Distro to Waste" - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel/dark/corner{ - dir = 1 - }, -/area/engineering/atmos) -"rMU" = ( -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/cargo/office) -"rNc" = ( -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=8"; - dir = 8; - freq = 1400; - location = "Security" - }, -/obj/structure/plasticflaps/opaque, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/security/office) -"rNi" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/command/storage/satellite) -"rNT" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "Corporate Showroom"; - req_access_txt = "19" - }, -/turf/open/floor/wood, -/area/command/corporate_showroom) -"rNX" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/sign/poster/official/random{ - pixel_y = -32 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"rOP" = ( -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = 29 - }, -/obj/machinery/modular_computer/console/preset/engineering, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/command/bridge) -"rPB" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/commons/storage/primary) -"rQj" = ( -/obj/effect/landmark/start/cook, -/obj/machinery/holopad, -/turf/open/floor/plasteel/cafeteria, -/area/service/kitchen) -"rQv" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"rQy" = ( -/obj/effect/landmark/start/cargo_technician, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/cargo/storage) -"rQO" = ( -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/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/command/teleporter) -"rRz" = ( -/obj/item/storage/box/beakers{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/storage/box/syringes, -/obj/machinery/power/apc/highcap/five_k{ - areastring = "/area/medical/virology"; - dir = 1; - name = "Virology APC"; - pixel_y = 23 - }, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/structure/table/glass, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/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) -"rRZ" = ( -/obj/item/folder, -/obj/item/folder, -/obj/machinery/camera/autoname{ - dir = 1 - }, -/obj/structure/table/wood, -/obj/item/taperecorder, -/obj/item/tape, -/turf/open/floor/wood, -/area/service/library) -"rSx" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/engine, -/area/engineering/supermatter) -"rSB" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/construction/storage_wing) -"rSI" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"rSL" = ( -/obj/machinery/vending/snack/random, -/turf/open/floor/plasteel, -/area/science/mixing) -"rSO" = ( -/obj/structure/table/reinforced, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/window/westright{ - dir = 4; - name = "Hydroponics Desk"; - req_one_access_txt = "30;35" - }, -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/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, -/area/service/hydroponics) -"rTj" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "Council Chamber"; - req_access_txt = "19" - }, -/turf/open/floor/plasteel/dark, -/area/command/bridge) -"rTl" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - icon_state = "0-2" - }, -/turf/open/space, -/area/solars/starboard/fore) -"rTu" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/commons/dorms) -"rTM" = ( -/obj/machinery/door/window/southright{ - dir = 4; - name = "Engineering Deliveries"; - req_access_txt = "10" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/engineering/main) -"rTV" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - name = "Kitchen"; - req_access_txt = "28" - }, -/turf/open/floor/plasteel/cafeteria, -/area/service/kitchen) -"rUl" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/office) -"rUE" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/machinery/door/poddoor/preopen{ - id = "bridge blast"; - name = "bridge blast door" - }, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/turf/open/floor/plating, -/area/command/bridge) -"rUL" = ( -/obj/machinery/cryopod, -/turf/open/floor/plasteel/dark, -/area/commons/cryopod) -"rVu" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/commons/toilet/restrooms) -"rVx" = ( -/obj/structure/chair/comfy/black{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Chapel - Starboard"; - dir = 8 - }, -/turf/open/floor/plasteel/chapel{ - dir = 4 - }, -/area/service/chapel/main) -"rVI" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/dark/visible, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"rWl" = ( -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_x = 29 - }, -/obj/effect/turf_decal/delivery, -/obj/structure/closet/firecloset, -/obj/item/clothing/glasses/meson/engine, -/turf/open/floor/plasteel, -/area/engineering/main) -"rWE" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/service/theater) -"rXs" = ( -/obj/machinery/door/airlock{ - name = "Unit B" - }, -/turf/open/floor/plasteel/freezer, -/area/commons/toilet/restrooms) -"rYf" = ( -/obj/machinery/door/window{ - name = "MiniSat Walkway Access" - }, -/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/aisat/exterior) -"rYE" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel/dark, -/area/command/bridge) -"rYI" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/item/toy/cards/deck{ - pixel_y = 4 - }, -/obj/structure/table/wood/poker, -/turf/open/floor/wood, -/area/service/bar) -"rYK" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall, -/area/command/bridge) -"rZb" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/storage/primary) -"saf" = ( -/obj/structure/table, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/pen, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -27 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/commons/locker) -"sah" = ( -/obj/structure/chair/stool{ - pixel_y = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"saP" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/ai_monitored/aisat/exterior) -"saR" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/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/service/hydroponics/garden) -"saT" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"sbs" = ( -/obj/structure/closet/secure_closet/personal/cabinet, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/item/clothing/under/misc/assistantformal, -/turf/open/floor/wood, -/area/commons/dorms) -"sbt" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/obj/effect/turf_decal/bot_white/right, -/obj/structure/closet/crate/goldcrate, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/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/command/nuke_storage) -"sbD" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/item/radio/intercom{ - dir = 4; - name = "Station Intercom (General)"; - pixel_x = -27 - }, -/turf/open/floor/plasteel/dark, -/area/service/chapel/office) -"sbM" = ( -/obj/machinery/status_display/evac{ - pixel_x = 32; - pixel_y = 32 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/hos) -"sbQ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/green/visible, -/turf/open/floor/engine, -/area/engineering/main) -"sbU" = ( -/obj/structure/table, -/obj/item/cultivator, -/obj/item/hatchet, -/obj/structure/extinguisher_cabinet{ - pixel_x = -27 - }, -/obj/item/paper/guides/jobs/hydroponics, -/obj/item/coin/silver, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics/garden) -"sbY" = ( -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 2 - }, -/obj/machinery/suit_storage_unit/captain, -/turf/open/floor/wood, -/area/command/heads_quarters/captain/private) -"sbZ" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/security/office) -"scx" = ( -/obj/structure/plasticflaps, -/obj/machinery/conveyor{ - dir = 8; - id = "QMLoad" - }, -/turf/open/floor/plating, -/area/cargo/storage) -"scD" = ( -/obj/structure/sign/warning/securearea{ - pixel_y = 32 - }, -/obj/structure/closet/radiation, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/delivery, -/obj/item/clothing/glasses/meson/engine, -/turf/open/floor/plasteel, -/area/engineering/main) -"sdi" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/science/circuit) -"sdw" = ( -/obj/structure/window/reinforced, -/turf/open/space, -/area/space) -"sdQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/spawner/structure/window/plasma/reinforced, -/turf/open/floor/plating, -/area/engineering/main) -"sdX" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/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/ai_monitored/command/nuke_storage) -"seC" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/oil, -/turf/open/floor/wood, -/area/command/corporate_showroom) -"seD" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/service/bar) -"seS" = ( -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/pen, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/table/glass, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"sfb" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/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/service/hydroponics) -"sfl" = ( -/obj/machinery/status_display/evac{ - pixel_y = 32 - }, -/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/command/gateway) -"sfr" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/turf/open/floor/plating, -/area/construction/storage_wing) -"sfM" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/obj/item/beacon, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"sfV" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/dark/visible{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engineering/atmos) -"sgy" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -22 - }, -/turf/open/floor/plasteel/dark, -/area/service/chapel/office) -"sgH" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/commons/locker) -"shf" = ( -/obj/item/hand_labeler, -/obj/item/stack/packageWrap, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/table/wood, -/turf/open/floor/wood, -/area/command/heads_quarters/hop) -"shE" = ( -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/aisat/exterior) -"shK" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/closed/wall, -/area/engineering/atmos) -"siC" = ( -/obj/structure/plasticflaps/opaque, -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=4"; - dir = 4; - freq = 1400; - location = "Tool Storage" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/commons/storage/primary) -"siD" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/power/apc{ - areastring = "/area/hallway/secondary/entry"; - dir = 4; - name = "Arrivals APC"; - pixel_x = 24 - }, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/turf/open/floor/plasteel/white/corner, -/area/hallway/secondary/entry) -"siF" = ( -/obj/structure/grille, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"siT" = ( -/obj/structure/table, -/obj/machinery/recharger, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/turf/open/floor/plasteel{ - dir = 1 - }, -/area/command/gateway) -"siX" = ( -/obj/structure/closet/secure_closet/personal/cabinet, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/item/clothing/under/suit/burgundy, -/turf/open/floor/carpet, -/area/commons/dorms) -"sjK" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/command/bridge) -"sjN" = ( -/obj/machinery/light/small, -/obj/machinery/button/door{ - id = "chapel_shutters_space"; - name = "chapel shutters control"; - pixel_x = -6; - pixel_y = -25 - }, -/obj/machinery/light_switch{ - pixel_x = 6; - pixel_y = -25 - }, -/turf/open/floor/plasteel/chapel{ - dir = 1 - }, -/area/service/chapel/main) -"skb" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/eastleft{ - dir = 1; - name = "Kitchen Window"; - req_access_txt = "28" - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/item/paper, -/obj/machinery/door/window/eastleft{ - dir = 2; - name = "Hydroponics Window"; - req_one_access_txt = "30;35" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"skf" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/obj/effect/landmark/start/security_officer, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/office) -"skn" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 24 - }, -/obj/item/storage/fancy/donut_box, -/obj/structure/table/glass, -/turf/open/floor/plasteel/dark, -/area/command/bridge) -"skz" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/turf/open/floor/plasteel{ - dir = 1 - }, -/area/engineering/main) -"skB" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/plasteel, -/area/commons/storage/tools) -"skV" = ( -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/turf/open/floor/plating, -/area/engineering/main) -"skX" = ( -/turf/open/floor/plasteel, -/area/commons/storage/primary) -"slh" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/ai_monitored/aisat/exterior) -"sln" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/closed/wall, -/area/command/bridge) -"slA" = ( -/obj/structure/table/wood, -/obj/item/stamp/hos, -/turf/open/floor/carpet, -/area/command/heads_quarters/hos) -"smm" = ( -/obj/machinery/shower{ - dir = 4 - }, -/obj/machinery/button/door{ - id = "AuxShower"; - name = "Lock Control"; - normaldoorcontrol = 1; - pixel_y = 25; - specialfunctions = 4 - }, -/obj/item/soap/nanotrasen, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/commons/toilet/auxiliary) -"smu" = ( -/obj/machinery/computer/teleporter{ - dir = 4 - }, -/turf/open/floor/plating, -/area/command/teleporter) -"smA" = ( -/obj/machinery/vending/wardrobe/bar_wardrobe, -/turf/open/floor/wood, -/area/service/bar) -"smH" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/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/cafeteria, -/area/command/heads_quarters/cmo) -"smU" = ( -/turf/closed/wall, -/area/engineering/storage/tech) -"snq" = ( -/obj/machinery/door/window/northleft{ - dir = 8; - name = "Inner Pipe Access"; - req_access_txt = "24" - }, -/obj/machinery/atmospherics/pipe/simple/yellow/visible, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"snC" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/circuit/green{ - luminosity = 2 - }, -/area/ai_monitored/command/nuke_storage) -"snM" = ( -/obj/machinery/button/door{ - id = "transittube"; - name = "Transit Tube Lockdown"; - pixel_x = -24; - pixel_y = -5; - req_access_txt = "24" - }, -/obj/machinery/button/door{ - desc = "A remote control-switch for secure storage."; - id = "Secure Storage"; - name = "Engineering Secure Storage"; - pixel_x = -24; - pixel_y = 5; - req_access_txt = "11" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/ce) -"snU" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/wood, -/area/command/corporate_showroom) -"snY" = ( -/obj/structure/closet/wardrobe/pjs, -/obj/machinery/airalarm{ - pixel_y = 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/medical/treatment_center) -"sos" = ( -/obj/structure/mirror, -/turf/closed/wall, -/area/medical/surgery) -"spx" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/cargo/miningoffice) -"spA" = ( -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solars/port/fore) -"spG" = ( -/obj/structure/closet/crate/rcd{ - pixel_y = 4 - }, -/obj/machinery/door/window/northleft{ - dir = 4; - name = "RCD Storage"; - pixel_x = 1; - req_access_txt = "19" - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 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/ai_monitored/command/storage/eva) -"spO" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/yellow/visible, -/turf/open/floor/plating, -/area/engineering/atmos) -"spZ" = ( -/obj/structure/chair/stool, -/turf/open/floor/plasteel/chapel, -/area/service/chapel/main) -"sqe" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple, -/turf/open/space/basic, -/area/space/nearstation) -"sqh" = ( -/turf/closed/wall/r_wall, -/area/ai_monitored/command/storage/eva) -"sqM" = ( -/obj/structure/closet/toolcloset, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = 28 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/storage/tools) -"sra" = ( -/obj/structure/table, -/obj/item/paicard, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/locker) -"ssp" = ( -/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/command/nuke_storage) -"stk" = ( -/obj/machinery/camera{ - c_tag = "Captain's Office"; - dir = 8 - }, -/turf/open/floor/carpet, -/area/command/heads_quarters/captain/private) -"stG" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"stT" = ( -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/aisat/exterior) -"suE" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall/r_wall, -/area/engineering/storage/tcomms) -"suL" = ( -/obj/effect/landmark/start/cargo_technician, -/obj/structure/chair/office/dark{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/office) -"suQ" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/construction/storage_wing) -"swu" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/commons/dorms) -"swz" = ( -/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/structure/cable/yellow{ - icon_state = "1-2" - }, -/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/command/heads_quarters/hop) -"swK" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/command/bridge) -"swT" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command/glass{ - name = "Bridge"; - req_access_txt = "19" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/command/bridge) -"syi" = ( -/obj/machinery/door/airlock/external{ - name = "Escape Pod Three" - }, -/turf/open/floor/plating, -/area/commons/fitness/recreation) -"syk" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"syK" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/obj/structure/disposalpipe/junction/flip{ - dir = 4 - }, -/turf/open/floor/wood, -/area/service/bar) -"szz" = ( -/obj/structure/sign/warning/securearea, -/turf/closed/wall/r_wall, -/area/command/corporate_showroom) -"szK" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -24 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"szP" = ( -/obj/effect/spawner/structure/window/plasma/reinforced, -/turf/open/floor/plating, -/area/engineering/supermatter) -"sAy" = ( -/obj/structure/table, -/obj/item/storage/toolbox/emergency, -/obj/machinery/light_switch{ - pixel_x = -26 - }, -/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/commons/storage/tools) -"sAH" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/dark, -/area/command/bridge) -"sBc" = ( -/obj/structure/table/wood, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/pen/invisible, -/turf/open/floor/engine/cult, -/area/service/library) -"sBz" = ( -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/aisat/exterior) -"sBC" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/medical/paramedic) -"sCy" = ( -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/obj/structure/window/reinforced, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/aisat/exterior) -"sCD" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/status_display/ai{ - pixel_y = 32 - }, -/obj/structure/transit_tube/curved{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/break_room) -"sCL" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"sCN" = ( -/obj/item/clothing/suit/ianshirt, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"sCT" = ( -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/machinery/vending/games, -/turf/open/floor/wood, -/area/service/library) -"sDM" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/command/heads_quarters/rd) -"sEp" = ( -/obj/machinery/computer/communications{ - dir = 8 - }, -/obj/item/radio/intercom{ - dir = 8; - freerange = 1; - name = "Station Intercom (Captain)"; - pixel_x = 28 - }, -/obj/machinery/status_display/ai{ - pixel_y = 32 - }, -/obj/machinery/keycard_auth{ - pixel_x = 24; - pixel_y = 24 - }, -/turf/open/floor/wood, -/area/command/heads_quarters/captain/private) -"sEG" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/filingcabinet{ - pixel_x = 4 - }, -/turf/open/floor/wood, -/area/command/heads_quarters/captain/private) -"sEK" = ( -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/cargo/storage) -"sFb" = ( -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/machinery/power/apc{ - areastring = "/area/service/chapel/main"; - dir = 8; - name = "Chapel APC"; - pixel_x = -25 - }, -/turf/open/floor/carpet, -/area/service/chapel/main) -"sFd" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/dark, -/area/service/chapel/main) -"sFv" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "47" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"sFR" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solars/port/fore) -"sGh" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock/external{ - name = "Solar Maintenance"; - req_access_txt = "10; 13" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/fore) -"sGo" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/purple/visible, -/turf/open/floor/plating, -/area/engineering/atmos) -"sGF" = ( -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/cafeteria, -/area/command/heads_quarters/cmo) -"sGN" = ( -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/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/command/gateway) -"sHf" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Dormitories - Fore"; - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/commons/dorms) -"sHC" = ( -/obj/machinery/computer/security/wooden_tv{ - pixel_x = 1; - pixel_y = 6 - }, -/obj/structure/table/glass, -/turf/open/floor/plasteel/dark, -/area/command/bridge) -"sHG" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/plasteel, -/area/cargo/storage) -"sHU" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/locker) -"sIA" = ( -/obj/machinery/door/airlock/external{ - name = "Transport Airlock" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"sIL" = ( -/turf/open/floor/plasteel/dark, -/area/command/bridge) -"sIP" = ( -/obj/structure/chair/stool{ - pixel_y = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/locker) -"sJr" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/obj/machinery/camera{ - c_tag = "Atmospherics - Port-Aft"; - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel/dark/corner{ - dir = 1 - }, -/area/engineering/atmos) -"sJT" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/treatment_center) -"sKe" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 5 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"sKl" = ( -/turf/closed/wall/r_wall, -/area/command/heads_quarters/captain/private) -"sKp" = ( -/obj/structure/chair/comfy/black{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/commons/vacant_room/office) -"sKv" = ( -/turf/closed/wall, -/area/engineering/atmos) -"sKz" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/closed/wall/r_wall, -/area/engineering/main) -"sKT" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel/dark, -/area/command/bridge) -"sKV" = ( -/turf/open/space/basic, -/area/command/heads_quarters/captain) -"sLs" = ( -/obj/effect/decal/cleanable/cobweb, -/obj/machinery/field/generator, -/turf/open/floor/plating, -/area/engineering/main) -"sLW" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"sMk" = ( -/obj/machinery/power/apc{ - areastring = "/area/service/janitor"; - dir = 8; - name = "Custodial Closet APC"; - pixel_x = -25 - }, -/obj/structure/table, -/obj/item/clothing/gloves/color/orange, -/obj/item/storage/box/mousetraps, -/obj/item/storage/box/mousetraps, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/turf/open/floor/plasteel, -/area/service/janitor) -"sMN" = ( -/turf/closed/wall/r_wall, -/area/commons/storage/primary) -"sNj" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/obj/structure/chair/stool{ - pixel_y = 8 - }, -/turf/open/floor/wood, -/area/service/bar) -"sOy" = ( -/obj/structure/rack, -/obj/item/lighter, -/obj/item/clothing/glasses/meson, -/obj/machinery/button/door{ - id = "ceprivacy"; - name = "Privacy Shutters Control"; - pixel_y = -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/command/heads_quarters/ce) -"sOM" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/carpet, -/area/command/heads_quarters/hos) -"sOT" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/engineering/main) -"sPs" = ( -/obj/structure/table, -/obj/item/clothing/under/suit/sl{ - desc = "Whoever wears this makes the rules."; - name = "referee suit" - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"sPC" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/wood, -/area/service/lawoffice) -"sPH" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solars/port/aft) -"sPP" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/commons/storage/primary) -"sPW" = ( -/obj/effect/landmark/start/cook, -/turf/open/floor/plasteel/cafeteria, -/area/service/kitchen) -"sQx" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 8; - sortType = 10 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/cafeteria, -/area/command/heads_quarters/cmo) -"sQY" = ( -/obj/structure/rack, -/obj/machinery/status_display/ai{ - pixel_y = 31 - }, -/obj/effect/spawner/lootdrop/techstorage/medical, -/turf/open/floor/plasteel/dark, -/area/engineering/storage/tech) -"sRw" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - icon_state = "0-2" - }, -/turf/open/space, -/area/solars/port/aft) -"sRz" = ( -/obj/structure/table, -/obj/item/folder/red, -/obj/item/storage/secure/briefcase, -/turf/open/floor/plasteel, -/area/security/office) -"sRX" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"sSo" = ( -/obj/machinery/button/door{ - desc = "A remote control-switch for the engineering security doors."; - id = "Engineering"; - name = "Engineering Lockdown"; - pixel_x = -24; - pixel_y = -5; - req_access_txt = "10" - }, -/obj/machinery/button/door{ - id = "atmos"; - name = "Atmospherics Lockdown"; - pixel_x = -24; - pixel_y = 5; - req_access_txt = "24" - }, -/obj/machinery/light{ - 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/command/heads_quarters/ce) -"sTr" = ( -/obj/machinery/atmospherics/components/trinary/filter/atmos/co2{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"sTt" = ( -/obj/structure/sign/poster/random, -/turf/closed/wall, -/area/service/bar) -"sTB" = ( -/obj/machinery/portable_atmospherics/canister/nitrogen, -/obj/machinery/atmospherics/miner/nitrogen, -/turf/open/floor/engine/n2, -/area/engineering/atmos) -"sTV" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/structure/cable/yellow, -/turf/open/floor/plating, -/area/construction/storage_wing) -"sUa" = ( -/obj/structure/chair/stool{ - pixel_y = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/dorms) -"sUI" = ( -/obj/structure/table, -/obj/machinery/chem_dispenser/drinks/beer, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/service/bar) -"sUM" = ( -/obj/structure/sign/warning/vacuum/external{ - pixel_x = -32 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"sVv" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/commons/fitness/recreation) -"sVK" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/obj/effect/landmark/secequipment, -/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/security/office) -"sVS" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/landmark/start/security_officer, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/office) -"sVW" = ( -/obj/machinery/icecream_vat, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/service/kitchen) -"sWZ" = ( -/obj/machinery/atmospherics/pipe/manifold4w/cyan/visible, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"sXr" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/hos) -"sXS" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/green/visible{ - dir = 1 - }, -/turf/open/floor/engine, -/area/engineering/main) -"sYh" = ( -/obj/structure/chair/office/dark{ - dir = 4 - }, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/wood, -/area/service/library) -"sYL" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"sZf" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"sZg" = ( -/obj/machinery/air_sensor/atmos/mix_tank, -/turf/open/floor/engine/vacuum, -/area/engineering/atmos) -"sZz" = ( -/obj/structure/table, -/obj/item/paper/fluff/holodeck/disclaimer, -/obj/item/storage/firstaid/regular{ - pixel_x = 3; - pixel_y = -3 - }, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"sZJ" = ( -/obj/structure/table/reinforced, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/service/bar) -"sZM" = ( -/obj/machinery/power/apc{ - areastring = "/area/commons/storage/tools"; - dir = 1; - name = "Auxiliary Tool Storage APC"; - pixel_y = 23 - }, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/storage/tools) -"sZN" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plating, -/area/maintenance/port) -"sZQ" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solars/port/fore) -"sZV" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/engine, -/area/engineering/main) -"tac" = ( -/obj/machinery/atmospherics/pipe/manifold4w/general/visible, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"taj" = ( -/obj/structure/chair/office/dark{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -28 - }, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/qm) -"taH" = ( -/obj/machinery/firealarm{ - pixel_y = 32 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"taX" = ( -/obj/structure/noticeboard{ - desc = "A memorial wall for pinning up momentos"; - name = "memorial board"; - pixel_y = 32 - }, -/obj/item/storage/book/bible, -/obj/structure/table/wood, -/turf/open/floor/carpet, -/area/service/chapel/main) -"taZ" = ( -/obj/structure/table/wood, -/turf/open/floor/wood, -/area/commons/vacant_room/office) -"tbc" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solars/port/fore) -"tbN" = ( -/obj/machinery/status_display/ai{ - pixel_y = 32 - }, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/vending/wardrobe/cap_wardrobe, -/turf/open/floor/carpet, -/area/command/heads_quarters/captain/private) -"tcb" = ( -/obj/machinery/power/smes{ - charge = 5e+006 - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/engineering/gravity_generator) -"tde" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/locker) -"tdH" = ( -/obj/machinery/atmospherics/components/binary/pump{ - name = "Mix to Gas" - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/engine, -/area/engineering/main) -"tdK" = ( -/obj/structure/closet/secure_closet/freezer/kitchen, -/turf/open/floor/plasteel/showroomfloor, -/area/service/kitchen) -"tdP" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/computer/bounty{ - dir = 4 - }, -/turf/open/floor/wood, -/area/command/heads_quarters/hop) -"tdQ" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/recharger, -/obj/item/restraints/handcuffs, -/obj/structure/table/glass, -/turf/open/floor/plasteel/dark, -/area/command/bridge) -"tdS" = ( -/obj/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/aisat/exterior) -"tdX" = ( -/obj/structure/chair/stool, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/cargo/sorting) -"tej" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/structure/table/wood/poker, -/obj/item/storage/dice, -/turf/open/floor/wood, -/area/service/bar) -"teH" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/effect/turf_decal/loading_area{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"teJ" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -27 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"teM" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/plating, -/area/commons/fitness/pool) -"teR" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"teZ" = ( -/turf/closed/wall, -/area/commons/storage/art) -"tfk" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"tfs" = ( -/obj/machinery/light, -/obj/machinery/atmospherics/components/binary/valve{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"tfL" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/storage/tools) -"tfM" = ( -/obj/structure/table/wood, -/obj/item/camera_film{ - pixel_x = -3; - pixel_y = 5 - }, -/obj/item/camera_film{ - pixel_y = 9 - }, -/obj/item/radio/intercom{ - dir = 4; - name = "Station Intercom (General)"; - pixel_x = 27 - }, -/turf/open/floor/wood, -/area/service/library) -"tfR" = ( -/obj/structure/chair/comfy/black, -/turf/open/floor/carpet, -/area/command/bridge) -"tfS" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"tfX" = ( -/obj/structure/chair/wood/wings{ - dir = 8 - }, -/obj/machinery/light_switch{ - pixel_y = 28 - }, -/turf/open/floor/carpet, -/area/service/theater) -"tgn" = ( -/obj/structure/table, -/obj/item/stock_parts/subspace/transmitter, -/obj/item/stock_parts/subspace/transmitter, -/obj/item/stock_parts/subspace/amplifier, -/obj/item/stock_parts/subspace/amplifier, -/obj/item/stock_parts/subspace/amplifier, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/power/apc{ - areastring = "/area/engineering/storage/tcomms"; - dir = 8; - name = "Telecomms Storage APC"; - pixel_x = -25 - }, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/turf/open/floor/plasteel/dark, -/area/engineering/storage/tcomms) -"tgT" = ( -/obj/machinery/door/poddoor{ - id = "chapelgun"; - name = "Chapel Launcher Door" - }, -/obj/structure/fans/tiny, -/turf/open/floor/plating, -/area/service/chapel/main) -"thc" = ( -/obj/structure/window/reinforced, -/turf/open/floor/grass, -/area/service/hydroponics/garden) -"thi" = ( -/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/engineering/atmos) -"thm" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"thq" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"tie" = ( -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 1; - name = "Nitrogen Outlet" - }, -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"tij" = ( -/obj/machinery/computer/station_alert, -/obj/structure/sign/map/right{ - desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; - icon_state = "map-right-MS"; - 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/engineering/main) -"til" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "kitchen"; - name = "Serving Hatch" - }, -/obj/item/reagent_containers/food/condiment/saltshaker{ - pixel_x = -3 - }, -/obj/item/reagent_containers/food/condiment/peppermill{ - pixel_x = 3 - }, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/service/kitchen) -"tim" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/command/gateway) -"tiE" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible, -/obj/machinery/camera{ - c_tag = "Atmospherics - Aft"; - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"tiH" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/light_switch{ - pixel_x = 25 - }, -/turf/open/floor/plasteel/dark, -/area/service/chapel/office) -"tiN" = ( -/obj/structure/chair/comfy/brown, -/obj/effect/landmark/blobstart, -/turf/open/floor/engine/cult, -/area/service/library) -"tiT" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"tjd" = ( -/obj/structure/table, -/obj/item/aicard, -/obj/item/circuitboard/aicore{ - pixel_x = -2; - pixel_y = 4 - }, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/command/heads_quarters/rd) -"tjr" = ( -/obj/machinery/door/window{ - dir = 4; - name = "Mass Driver"; - req_access_txt = "22" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/service/chapel/main) -"tjG" = ( -/obj/machinery/shieldgen, -/turf/open/floor/plating, -/area/engineering/main) -"tjW" = ( -/turf/closed/wall, -/area/cargo/qm) -"tkr" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics/garden) -"tkC" = ( -/obj/machinery/atmospherics/components/binary/pump{ - name = "Mix to Ports" - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"tkS" = ( -/obj/machinery/atmospherics/pipe/manifold4w/general/visible, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"tkT" = ( -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/command/heads_quarters/rd) -"tlc" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/command/storage/eva) -"tlp" = ( -/obj/item/candle, -/obj/machinery/light_switch{ - pixel_x = -27 - }, -/obj/effect/decal/cleanable/cobweb, -/obj/structure/table/wood, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/service/chapel/main) -"tlF" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/grunge{ - name = "Club" - }, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/service/bar) -"tmg" = ( -/turf/closed/wall, -/area/command/bridge) -"tmr" = ( -/obj/structure/table, -/obj/item/cartridge/quartermaster{ - pixel_x = -4; - pixel_y = 7 - }, -/obj/item/cartridge/quartermaster{ - pixel_x = 6; - pixel_y = 5 - }, -/obj/item/cartridge/quartermaster, -/obj/item/gps{ - gpstag = "QM0" - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/machinery/keycard_auth{ - pixel_y = 23 - }, -/obj/item/clipboard, -/turf/open/floor/plasteel, -/area/cargo/qm) -"tmB" = ( -/obj/structure/cable/yellow{ - 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/service/chapel/main) -"tnh" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"tnA" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/commons/locker) -"tnE" = ( -/obj/machinery/smartfridge, -/turf/closed/wall, -/area/service/hydroponics) -"toC" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/command/storage/eva) -"toN" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock/engineering/glass{ - name = "Power Monitoring"; - req_access_txt = "32" - }, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/turf/open/floor/plasteel{ - dir = 1 - }, -/area/engineering/main) -"tpe" = ( -/obj/structure/table, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/service/kitchen) -"tpO" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"tqm" = ( -/obj/machinery/photocopier{ - pixel_y = 3 - }, -/turf/open/floor/plasteel, -/area/security/office) -"tqG" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/carpet, -/area/command/heads_quarters/captain/private) -"tqV" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "CO2 Outlet Pump" - }, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"tre" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/port) -"trj" = ( -/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/engineering/gravity_generator) -"trn" = ( -/obj/machinery/door/poddoor/preopen{ - id = "atmos"; - name = "Atmospherics Blast Door" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"tsn" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/commons/storage/primary) -"tsx" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"tsF" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/commons/storage/primary) -"tsH" = ( -/turf/closed/wall/r_wall, -/area/command/heads_quarters/hos) -"ttx" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/command/teleporter) -"ttF" = ( -/obj/machinery/door/morgue{ - name = "Chapel Garden" - }, -/turf/open/floor/plasteel/cult, -/area/service/chapel/main) -"ttQ" = ( -/obj/machinery/camera{ - c_tag = "Auxiliary Tool Storage"; - dir = 8 - }, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/storage/tools) -"ttU" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/obj/machinery/portable_atmospherics/scrubber, -/obj/machinery/status_display/evac{ - pixel_y = 30 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/commons/locker) -"tuB" = ( -/obj/machinery/door/airlock{ - name = "Theatre Backstage"; - req_access_txt = "46" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/wood, -/area/service/theater) -"txb" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel/dark/corner, -/area/engineering/break_room) -"txh" = ( -/obj/machinery/door/airlock/hatch{ - name = "Telecomms Control Room"; - req_one_access_txt = "19; 61" - }, -/turf/open/floor/plasteel/dark, -/area/tcommsat/computer) -"txj" = ( -/obj/structure/chair/office/light{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"txq" = ( -/obj/structure/table/wood/fancy/blue, -/obj/structure/table/wood/fancy/royalblue, -/obj/structure/sign/painting/library_secure{ - pixel_x = 32 - }, -/obj/machinery/door/window{ - dir = 8; - name = "Secure Art Exhibition"; - req_access_txt = "37" - }, -/obj/structure/window/reinforced/spawner, -/turf/open/floor/wood, -/area/service/library) -"txP" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/structure/disposalpipe/junction{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/commons/locker) -"tyt" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/aisat/exterior) -"tyC" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"tyM" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"tyY" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/service/theater) -"tzk" = ( -/obj/effect/turf_decal/tile/neutral{ - 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/commons/fitness/recreation) -"tzl" = ( -/obj/structure/table/wood, -/obj/item/staff/broom, -/obj/item/wrench, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/obj/structure/sign/poster/random{ - pixel_y = 32 - }, -/turf/open/floor/wood, -/area/service/theater) -"tzp" = ( -/obj/effect/landmark/xeno_spawn, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solars/starboard/fore) -"tAp" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics/garden) -"tBW" = ( -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/cargo/sorting) -"tCA" = ( -/obj/machinery/disposal/bin{ - pixel_x = -2; - pixel_y = -2 - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/light_switch{ - pixel_y = -28 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"tCH" = ( -/obj/structure/filingcabinet/filingcabinet, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/office) -"tDG" = ( -/obj/machinery/power/terminal, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/engineering/main) -"tDJ" = ( -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/aisat/exterior) -"tDZ" = ( -/obj/machinery/computer/cryopod{ - dir = 4; - pixel_x = -26 - }, -/turf/open/floor/plasteel/dark, -/area/commons/cryopod) -"tEo" = ( -/obj/structure/table/wood, -/obj/item/paper_bin{ - pixel_x = 1; - pixel_y = 9 - }, -/obj/item/pen, -/obj/structure/window/reinforced, -/turf/open/floor/wood, -/area/command/heads_quarters/captain/private) -"tFp" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/airlock{ - name = "Dormitories" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/commons/dorms) -"tFA" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 0; - name = "External to Filter" - }, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/engineering/atmos) -"tFH" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"tFJ" = ( -/obj/structure/bodycontainer/morgue{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"tGc" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/obj/structure/cable/yellow{ - 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/security/office) -"tGD" = ( -/obj/structure/closet/crate, -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 3; - name = "3maintenance loot spawner" - }, -/turf/open/floor/plasteel, -/area/cargo/warehouse) -"tHe" = ( -/obj/structure/closet/wardrobe/pjs, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/medical/treatment_center) -"tHs" = ( -/obj/machinery/hydroponics/constructable, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"tHz" = ( -/obj/effect/landmark/start/cargo_technician, -/turf/open/floor/plasteel, -/area/cargo/storage) -"tHP" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"tHZ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/wood, -/area/service/library) -"tIh" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/white, -/area/medical/treatment_center) -"tIB" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/window/westleft{ - dir = 4; - name = "Hydroponics Desk"; - req_one_access_txt = "30;35" - }, -/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, -/area/service/hydroponics) -"tID" = ( -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 4; - name = "Space Loop Out" - }, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"tIF" = ( -/obj/item/storage/belt/utility, -/obj/item/radio/off, -/obj/item/radio/off, -/obj/item/radio/off, -/obj/structure/rack, -/obj/machinery/button/door{ - id = "gateshutter"; - name = "Gateway Shutter Control"; - pixel_y = -26; - req_access_txt = "19" - }, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/turf/open/floor/plasteel{ - dir = 1 - }, -/area/command/gateway) -"tJe" = ( -/obj/structure/table/wood, -/obj/item/flashlight/lamp/green{ - pixel_x = 1; - pixel_y = 5 - }, -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 2 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/item/bikehorn/rubberducky, -/obj/machinery/light_switch{ - pixel_x = -28 - }, -/turf/open/floor/wood, -/area/command/heads_quarters/captain/private) -"tJj" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/engineering/main) -"tJG" = ( -/obj/structure/cable/yellow, -/obj/machinery/power/apc{ - areastring = "/area/maintenance/department/science/xenobiology"; - dir = 4; - name = "Test Chamber Maintenance APC"; - pixel_x = 24 - }, -/turf/open/floor/plating, -/area/maintenance/department/science/xenobiology) -"tJQ" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/command/heads_quarters/captain/private) -"tJR" = ( -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = 21 - }, -/obj/machinery/camera{ - c_tag = "Engineering - Fore" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"tKr" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable/yellow{ - 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/construction/storage_wing) -"tKM" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/showroomfloor, -/area/service/kitchen) -"tLi" = ( -/turf/closed/wall, -/area/commons/storage/primary) -"tLk" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/commons/locker) -"tLu" = ( -/obj/structure/table/wood, -/obj/item/flashlight/lamp, -/turf/open/floor/wood, -/area/commons/vacant_room/office) -"tLZ" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/conveyor{ - dir = 1; - id = "QMLoad2" - }, -/turf/open/floor/plating, -/area/cargo/storage) -"tMe" = ( -/obj/structure/sign/plaques/kiddie/perfect_drone{ - pixel_y = 32 - }, -/obj/structure/table/wood, -/obj/item/storage/backpack/duffelbag/drone, -/obj/structure/window/reinforced, -/turf/open/floor/carpet, -/area/command/corporate_showroom) -"tMo" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/commons/fitness/recreation) -"tMD" = ( -/turf/closed/wall/r_wall, -/area/engineering/storage/tech) -"tMJ" = ( -/obj/structure/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/wood, -/area/service/library) -"tMN" = ( -/turf/open/floor/plasteel, -/area/engineering/break_room) -"tMO" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/commons/locker) -"tNq" = ( -/obj/structure/table, -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/item/clothing/neck/stethoscope, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/power/apc{ - areastring = "/area/medical/patients_rooms/room_a"; - dir = 8; - name = "Patient Room A APC"; - pixel_x = -25 - }, -/obj/structure/cable/yellow{ - icon_state = "0-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/patients_rooms/room_a) -"tNF" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"tNG" = ( -/obj/structure/table/reinforced, -/obj/item/paper, -/turf/open/floor/plasteel, -/area/security/office) -"tNR" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"tNX" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -24 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"tNY" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/holopad/secure, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/aisat/exterior) -"tOg" = ( -/obj/structure/table, -/obj/item/storage/fancy/donut_box, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/turf/open/floor/plasteel{ - dir = 1 - }, -/area/command/gateway) -"tOA" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/landmark/start/cargo_technician, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/cargo/office) -"tOX" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/button/door{ - id = "qm_warehouse"; - name = "Warehouse Door Control"; - pixel_y = -24; - req_access_txt = "50" - }, -/turf/open/floor/plasteel, -/area/cargo/warehouse) -"tPJ" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/engineering/gravity_generator) -"tPT" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/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/commons/fitness/recreation) -"tQs" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/landmark/start/atmospheric_technician, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel/dark/corner{ - dir = 1 - }, -/area/engineering/atmos) -"tQK" = ( -/obj/structure/table, -/obj/item/stack/sheet/metal/fifty, -/obj/item/stack/sheet/glass/fifty, -/obj/machinery/power/apc{ - areastring = "/area/ai_monitored/command/storage/satellite"; - name = "MiniSat Maint APC"; - pixel_y = -26 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow, -/obj/item/stack/sheet/mineral/plasma{ - amount = 35 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/command/storage/satellite) -"tQS" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/office) -"tRh" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - name = "Unisex Restrooms" - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/freezer, -/area/commons/toilet/restrooms) -"tRj" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/obj/machinery/camera{ - c_tag = "Chapel - Funeral Parlour"; - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/service/chapel/main) -"tRn" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/wood, -/area/service/bar) -"tSa" = ( -/obj/machinery/atmospherics/pipe/simple/yellow/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"tTX" = ( -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/structure/chair/stool{ - pixel_y = 8 - }, -/turf/open/floor/wood, -/area/service/bar) -"tUa" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 - }, -/obj/machinery/portable_atmospherics/canister/air, -/turf/open/floor/plating, -/area/maintenance/port) -"tUr" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/engine/co2, -/area/engineering/atmos) -"tUN" = ( -/obj/machinery/conveyor_switch/oneway{ - id = "packageSort2"; - pixel_x = -8; - pixel_y = -2 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/cargo/storage) -"tUP" = ( -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=8"; - dir = 8; - freq = 1400; - location = "QM #4" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/door/window/southleft, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/cargo/storage) -"tUY" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/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/service/hydroponics) -"tVt" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/construction/storage_wing) -"tVM" = ( -/obj/structure/cable/yellow{ - 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/engineering/storage/tech) -"tVY" = ( -/obj/structure/closet/crate, -/obj/item/target/alien, -/obj/item/target/alien, -/obj/item/target/clown, -/obj/item/target/clown, -/obj/item/target/syndicate, -/obj/item/target/syndicate, -/obj/item/gun/energy/laser/practice, -/obj/item/gun/energy/laser/practice, -/turf/open/floor/plasteel, -/area/science/circuit) -"tWo" = ( -/obj/effect/landmark/xeno_spawn, -/obj/item/soap/deluxe, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/obj/machinery/shower{ - pixel_y = 12 - }, -/obj/structure/curtain, -/turf/open/floor/plasteel/white, -/area/command/heads_quarters/captain/private) -"tWp" = ( -/obj/structure/closet{ - name = "spare parts locker" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/obj/item/rack_parts, -/obj/item/rack_parts, -/obj/item/wrench, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/service/kitchen) -"tXp" = ( -/obj/machinery/status_display/evac{ - pixel_y = 32 - }, -/obj/structure/table/glass, -/obj/item/paper_bin{ - pixel_x = -2; - pixel_y = 8 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/cafeteria, -/area/command/heads_quarters/cmo) -"tXH" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/machinery/atmospherics/components/trinary/filter/flipped/critical, -/turf/open/floor/engine, -/area/engineering/main) -"tXK" = ( -/obj/machinery/air_sensor/atmos/toxins_mixing_tank, -/turf/open/floor/engine/vacuum, -/area/science/mixing) -"tXO" = ( -/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 = 8 - }, -/turf/open/floor/engine, -/area/engineering/supermatter) -"tXR" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/aisat/exterior) -"tXZ" = ( -/obj/machinery/food_cart, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/service/kitchen) -"tYa" = ( -/obj/machinery/button/crematorium{ - id = "crematoriumChapel"; - pixel_x = -26; - req_access_txt = "27" - }, -/turf/open/floor/plasteel/dark, -/area/service/chapel/office) -"tYf" = ( -/obj/structure/chair{ - pixel_y = -2 - }, -/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/service/chapel/main) -"tYn" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/reagent_dispensers/peppertank{ - pixel_x = -32 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/office) -"tZe" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"tZi" = ( -/obj/effect/spawner/structure/window/plasma/reinforced, -/turf/open/floor/plating, -/area/engineering/main) -"tZV" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"uar" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/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/commons/fitness/recreation) -"uaH" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Library Maintenance"; - req_one_access_txt = "12;37" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/port) -"ubJ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/toilet/auxiliary) -"ubO" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 5 - }, -/turf/closed/wall/r_wall, -/area/engineering/supermatter) -"uch" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/turf/open/floor/wood, -/area/service/library) -"uck" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/commons/locker) -"ucp" = ( -/obj/structure/table, -/obj/item/clipboard, -/obj/item/folder/yellow, -/obj/item/folder/yellow, -/obj/item/multitool, -/obj/item/pen/red, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/office) -"ucy" = ( -/obj/machinery/door/airlock/command{ - name = "Command Desk"; - req_access_txt = "19" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command/bridge) -"ucP" = ( -/obj/machinery/button/door{ - id = "engsm"; - name = "Radiation Shutters Control"; - pixel_x = 24; - req_access_txt = "10" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ - dir = 8 - }, -/turf/open/floor/engine, -/area/engineering/main) -"ucR" = ( -/obj/structure/bed/roller, -/obj/item/radio/intercom{ - broadcasting = 1; - frequency = 1485; - listening = 0; - name = "Station Intercom (Medbay)"; - pixel_x = -30 - }, -/obj/machinery/camera{ - c_tag = "Medbay Sleepers"; - dir = 4; - network = list("ss13","medbay") - }, -/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/white, -/area/medical/treatment_center) -"ucX" = ( -/obj/machinery/recharger, -/obj/item/storage/secure/safe{ - pixel_x = 34 - }, -/obj/structure/table/wood, -/turf/open/floor/wood, -/area/command/heads_quarters/hop) -"uds" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/carpet, -/area/service/theater) -"uew" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - 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/commons/locker) -"ufk" = ( -/obj/item/storage/secure/safe{ - pixel_x = 6; - pixel_y = 30 - }, -/obj/machinery/camera{ - c_tag = "Chief Engineer's Office" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/ce) -"ufW" = ( -/obj/machinery/power/apc{ - areastring = "/area/command/heads_quarters/cmo"; - dir = 4; - name = "CMO's Office APC"; - pixel_x = 24 - }, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/machinery/camera{ - c_tag = "CMO's Office"; - dir = 8; - network = list("ss13","medbay") - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/cafeteria, -/area/command/heads_quarters/cmo) -"ugm" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/rack, -/obj/item/clothing/suit/hazardvest, -/obj/item/clothing/suit/hazardvest, -/obj/item/clothing/suit/hazardvest, -/obj/item/clothing/gloves/color/black, -/obj/item/clothing/gloves/color/black, -/obj/item/clothing/gloves/color/black, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas, -/turf/open/floor/plasteel/cafeteria, -/area/engineering/atmos) -"uhi" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/engineering/storage/tech) -"uhB" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/engineering/atmos) -"uia" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/engine, -/area/engineering/main) -"uih" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/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/engineering/storage/tech) -"uim" = ( -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/space/nearstation) -"uit" = ( -/obj/structure/closet/wardrobe/pjs, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/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/commons/dorms) -"uiF" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/command/bridge) -"uiQ" = ( -/obj/machinery/light_switch{ - pixel_x = 28 - }, -/turf/open/floor/wood, -/area/service/library) -"ujb" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engineering/gravity_generator) -"ujE" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/commons/locker) -"ukJ" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/commons/dorms) -"ulG" = ( -/obj/effect/turf_decal/stripes/line, -/obj/structure/table, -/obj/item/flashlight, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"umv" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"umz" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 24 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/rnd/production/techfab/department/cargo, -/turf/open/floor/plasteel, -/area/cargo/storage) -"umO" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/dorms) -"unm" = ( -/obj/structure/table, -/obj/item/stock_parts/subspace/filter, -/obj/item/stock_parts/subspace/filter, -/obj/item/stock_parts/subspace/filter, -/obj/item/stock_parts/subspace/filter, -/obj/item/stock_parts/subspace/filter, -/turf/open/floor/plasteel/dark, -/area/engineering/storage/tcomms) -"unn" = ( -/obj/machinery/requests_console{ - department = "Kitchen"; - departmentType = 2; - pixel_x = 30 - }, -/obj/machinery/processor, -/turf/open/floor/plasteel/cafeteria, -/area/service/kitchen) -"unK" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/service/kitchen) -"unQ" = ( -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_x = -30 - }, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/computer/atmos_alert, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark/corner{ - dir = 1 - }, -/area/engineering/atmos) -"uot" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/machinery/power/port_gen/pacman, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/engineering/gravity_generator) -"uoM" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "atmos"; - name = "Atmospherics Blast Door" - }, -/obj/structure/cable/yellow, -/turf/open/floor/plating, -/area/engineering/atmos) -"upd" = ( -/obj/structure/cable, -/obj/machinery/power/solar{ - id = "forestarboard"; - name = "Fore-Starboard Solar Array" - }, -/turf/open/floor/plasteel/airless/solarpanel, -/area/solars/starboard/fore) -"upN" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/science/circuit) -"upO" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/service/bar) -"uqh" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/construction/storage_wing) -"uqB" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/light_switch{ - pixel_x = -26 - }, -/turf/open/floor/wood, -/area/service/theater) -"url" = ( -/obj/structure/closet/wardrobe/mixed, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/commons/locker) -"urs" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"urv" = ( -/turf/closed/wall/mineral/plastitanium, -/area/security/prison) -"urB" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/chair/stool, -/turf/open/floor/plasteel/chapel{ - dir = 1 - }, -/area/service/chapel/main) -"urI" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/open/space, -/area/solars/starboard/aft) -"usb" = ( -/obj/machinery/light/built{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/fitness/pool) -"usd" = ( -/obj/machinery/computer/security/telescreen/entertainment, -/turf/closed/wall, -/area/service/kitchen) -"usf" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/turf/open/floor/plating, -/area/maintenance/port) -"usx" = ( -/obj/machinery/status_display/supply, -/turf/closed/wall, -/area/security/checkpoint/supply) -"usB" = ( -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/obj/machinery/power/emitter/anchored{ - dir = 1; - state = 2 - }, -/turf/open/floor/plating, -/area/engineering/main) -"usC" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 9 - }, -/turf/closed/wall/r_wall, -/area/engineering/atmos) -"usL" = ( -/obj/machinery/door/firedoor, -/obj/machinery/mineral/ore_redemption, -/turf/open/floor/plasteel/dark, -/area/cargo/office) -"usM" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"utH" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/cargo/storage) -"utI" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/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/treatment_center) -"utQ" = ( -/obj/structure/chair/stool{ - pixel_y = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/commons/dorms) -"uuf" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/airlock/engineering/glass{ - name = "Supermatter Engine"; - req_access_txt = "10" - }, -/turf/open/floor/plating, -/area/engineering/main) -"uun" = ( -/obj/machinery/vending/assist, -/turf/open/floor/plasteel, -/area/science/mixing) -"uuu" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/command/bridge) -"uuU" = ( -/obj/effect/spawner/structure/window/reinforced/tinted, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/commons/dorms) -"uvm" = ( -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/wood, -/area/service/library) -"uvH" = ( -/obj/structure/window/reinforced, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/aisat/exterior) -"uvZ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/effect/landmark/start/janitor, -/turf/open/floor/plasteel, -/area/service/janitor) -"uwx" = ( -/obj/structure/table, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -26 - }, -/obj/machinery/chem_dispenser/drinks, -/obj/structure/sign/barsign{ - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/service/bar) -"uwH" = ( -/obj/machinery/atmospherics/pipe/simple/dark/visible{ - dir = 10 - }, -/turf/closed/wall/r_wall, -/area/engineering/atmos) -"uxs" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/structure/cable/yellow, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/construction/storage_wing) -"uxT" = ( -/obj/machinery/door/window/eastright{ - base_state = "left"; - dir = 8; - icon_state = "left"; - name = "Security Delivery"; - req_access_txt = "1" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/security/office) -"uyl" = ( -/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/engineering/storage/tech) -"uyq" = ( -/obj/structure/table/wood, -/obj/structure/mirror{ - pixel_x = -28 - }, -/obj/item/lipstick/black, -/obj/item/lipstick/jade{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/lipstick/purple{ - pixel_x = -2; - pixel_y = -2 - }, -/turf/open/floor/wood, -/area/service/theater) -"uyH" = ( -/obj/machinery/atmospherics/pipe/simple/orange/visible, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/engineering/main) -"uzi" = ( -/obj/structure/chair, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"uzX" = ( -/obj/structure/displaycase/captain{ - pixel_y = 5 - }, -/obj/machinery/status_display/evac{ - pixel_y = 32 - }, -/turf/open/floor/wood, -/area/command/heads_quarters/captain/private) -"uzY" = ( -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/wood, -/area/service/bar) -"uBW" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"uCe" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/carpet, -/area/command/heads_quarters/captain/private) -"uCj" = ( -/obj/structure/rack, -/obj/item/storage/briefcase, -/obj/item/storage/briefcase{ - pixel_x = 4; - pixel_y = -2 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/commons/locker) -"uCo" = ( -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/office) -"uDl" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/command/bridge) -"uDy" = ( -/obj/structure/lattice/catwalk, -/turf/closed/wall/r_wall, -/area/engineering/atmos) -"uDX" = ( -/obj/structure/table/wood, -/obj/item/paper_bin{ - pixel_x = -2; - pixel_y = 4 - }, -/obj/item/stamp/hop{ - pixel_x = -4; - pixel_y = 4 - }, -/turf/open/floor/wood, -/area/command/heads_quarters/hop) -"uEe" = ( -/obj/structure/bookcase, -/turf/open/floor/wood, -/area/command/corporate_showroom) -"uEu" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/landmark/start/assistant, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"uEC" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/open/floor/wood, -/area/commons/vacant_room/office) -"uED" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ - dir = 1 - }, -/turf/open/floor/plating, -/area/engineering/atmos) -"uFM" = ( -/obj/machinery/power/emitter, -/obj/machinery/light/small, -/turf/open/floor/plating, -/area/engineering/main) -"uGe" = ( -/turf/open/floor/plating, -/area/commons/fitness/recreation) -"uGl" = ( -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/obj/machinery/power/emitter/anchored{ - dir = 1; - state = 2 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engineering/main) -"uGn" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/turf/open/floor/carpet, -/area/command/heads_quarters/hop) -"uGy" = ( -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command/bridge) -"uGB" = ( -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=14.8-Dorms-Lockers"; - location = "14.5-Recreation" - }, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"uGW" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"uHc" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"uHd" = ( -/obj/structure/chair/comfy/black, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/hos) -"uHq" = ( -/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/spawner/lootdrop/maintenance, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/cargo/sorting) -"uIA" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"uIN" = ( -/obj/structure/table/wood, -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/turf/open/floor/wood, -/area/commons/vacant_room/office) -"uIY" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics/garden) -"uJq" = ( -/obj/effect/turf_decal/tile/neutral{ - 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/holopad/secure, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"uJM" = ( -/obj/structure/rack, -/obj/item/electronics/apc, -/obj/item/electronics/airlock, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/spawner/lootdrop/maintenance, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/storage/tools) -"uJR" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/machinery/light_switch{ - pixel_x = -22 - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"uJU" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/starboard) -"uKL" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/engineering/atmos) -"uLh" = ( -/turf/open/floor/engine/air, -/area/engineering/atmos) -"uLo" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/dark, -/area/engineering/break_room) -"uLv" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 10 - }, -/turf/open/floor/engine, -/area/engineering/main) -"uLG" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/service/kitchen) -"uMQ" = ( -/obj/machinery/camera{ - c_tag = "Bar" - }, -/obj/machinery/requests_console{ - department = "Bar"; - departmentType = 2; - pixel_y = 30; - receive_ore_updates = 1 - }, -/obj/structure/table, -/obj/item/book/manual/wiki/barman_recipes{ - pixel_y = 5 - }, -/obj/item/reagent_containers/food/drinks/shaker, -/obj/item/reagent_containers/rag{ - pixel_y = 5 - }, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/service/bar) -"uOc" = ( -/obj/effect/landmark/start/captain, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/chair/comfy/brown{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/command/heads_quarters/captain/private) -"uOg" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"uOv" = ( -/obj/structure/sign/directions/evac, -/obj/structure/sign/directions/medical{ - pixel_y = 8 - }, -/obj/structure/sign/directions/science{ - pixel_y = -8 - }, -/turf/closed/wall, -/area/service/library) -"uPN" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/gravity_generator) -"uPZ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/commons/locker) -"uQP" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solars/port/aft) -"uQY" = ( -/obj/machinery/door/airlock{ - id_tag = "Toilet3"; - name = "Unit 3" - }, -/turf/open/floor/plasteel/freezer, -/area/commons/toilet/restrooms) -"uRL" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/aisat/exterior) -"uRM" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"uSn" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/hos) -"uSt" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/warning/vacuum/external, -/turf/open/floor/plating, -/area/cargo/storage) -"uTa" = ( -/obj/structure/chair, -/obj/effect/landmark/start/chaplain, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/grimy, -/area/service/chapel/office) -"uTg" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/closed/wall, -/area/engineering/atmos) -"uTn" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - icon_state = "0-4" - }, -/turf/open/floor/plating, -/area/engineering/gravity_generator) -"uTS" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/item/kirbyplants{ - icon_state = "plant-10" - }, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"uUx" = ( -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_x = -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/command/heads_quarters/ce) -"uVj" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=14.5-Recreation"; - location = "14.3-Lockers-Dorms" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/locker) -"uVk" = ( -/obj/structure/table, -/obj/item/folder/red, -/obj/item/book/manual/wiki/security_space_law{ - pixel_x = -3; - pixel_y = 5 - }, -/obj/item/clothing/mask/gas/sechailer, -/turf/open/floor/plasteel, -/area/security/office) -"uVl" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics/garden) -"uVQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/closed/wall, -/area/cargo/sorting) -"uWi" = ( -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=8"; - dir = 8; - freq = 1400; - location = "QM #1" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/door/window/northleft, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/mob/living/simple_animal/bot/mulebot{ - beacon_freq = 1400; - home_destination = "QM #1"; - suffix = "#1" - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"uWj" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/button/door{ - id = "bridge blast"; - name = "Bridge Access Blast Door Control"; - pixel_x = -24; - pixel_y = -24; - req_access_txt = "19" - }, -/turf/open/floor/plasteel/dark, -/area/command/bridge) -"uWO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/wood, -/area/command/corporate_showroom) -"uXM" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/machinery/door/poddoor/preopen{ - id = "hosspace"; - name = "space shutters" - }, -/turf/open/floor/plating, -/area/command/heads_quarters/hos) -"uXT" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"uYc" = ( -/obj/structure/table, -/obj/item/stock_parts/subspace/analyzer, -/obj/item/stock_parts/subspace/analyzer, -/obj/item/stock_parts/subspace/analyzer, -/obj/machinery/light_switch{ - pixel_y = 26 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/storage/tcomms) -"uYg" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/turf/open/floor/plating, -/area/engineering/main) -"uYk" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"uYl" = ( -/obj/machinery/light_switch{ - pixel_y = -28 - }, -/obj/machinery/vending/wardrobe/law_wardrobe, -/turf/open/floor/wood, -/area/service/lawoffice) -"uZi" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/computer/security/telescreen{ - desc = "Used for monitoring the engine."; - dir = 8; - name = "Engine Monitor"; - network = list("engine"); - 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/command/heads_quarters/ce) -"uZF" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/aisat/exterior) -"uZH" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/dark, -/area/command/bridge) -"uZM" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, -/turf/open/floor/engine, -/area/engineering/main) -"vaA" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/engineering/supermatter) -"vbx" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plasteel/chapel{ - dir = 8 - }, -/area/service/chapel/main) -"vbz" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/command/gateway) -"vbR" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"vbZ" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/commons/dorms) -"vcj" = ( -/obj/structure/sign/warning/vacuum/external{ - pixel_y = -32 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/engineering/atmos) -"vck" = ( -/obj/structure/table, -/obj/machinery/microwave{ - pixel_x = -3; - pixel_y = 6 - }, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/light_switch{ - pixel_y = 28 - }, -/turf/open/floor/plasteel, -/area/cargo/warehouse) -"vda" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 9 - }, -/turf/open/space, -/area/space/nearstation) -"vdd" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/engineering/main) -"vdw" = ( -/obj/machinery/power/apc{ - areastring = "/area/maintenance/solars/port/aft"; - dir = 8; - name = "Port Quarter Solar APC"; - pixel_x = -25; - pixel_y = 3 - }, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/solars/port/aft) -"vdx" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/loading_area{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/cargo/warehouse) -"vdB" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/reagent_dispensers/peppertank{ - pixel_x = 30 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 27; - pixel_y = 29 - }, -/obj/machinery/suit_storage_unit/hos, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/hos) -"veq" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/table, -/obj/item/paper_bin{ - pixel_x = -2; - pixel_y = 8 - }, -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/yellow/visible{ - dir = 9 - }, -/turf/open/floor/plasteel/dark/corner, -/area/engineering/atmos) -"ver" = ( -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/service/chapel/main) -"veI" = ( -/obj/structure/bookcase/random/adult, -/turf/open/floor/wood, -/area/service/library) -"veT" = ( -/obj/machinery/atmospherics/pipe/simple/yellow/visible{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"vfd" = ( -/obj/machinery/shieldwallgen, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command/teleporter) -"vfj" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/turf/open/floor/plating, -/area/security/office) -"vfr" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/carpet, -/area/service/library) -"vfw" = ( -/obj/structure/closet/crate, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/item/radio/intercom{ - dir = 4; - name = "Station Intercom (General)"; - pixel_x = 27 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/cargo/miningoffice) -"vfz" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/wood, -/area/command/heads_quarters/hop) -"vfK" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/commons/locker) -"vfZ" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/shower{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -27 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"vgD" = ( -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/transit_tube/curved/flipped, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/aisat/exterior) -"vgI" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/engineering/main) -"vgW" = ( -/obj/structure/table, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/miningoffice) -"vhg" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/obj/structure/disposalpipe/segment, -/turf/open/floor/wood, -/area/service/bar) -"vhj" = ( -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/machinery/power/apc{ - areastring = "/area/maintenance/port/fore"; - dir = 4; - name = "Port Bow Maintenance APC"; - pixel_x = 24 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, -/area/maintenance/port/fore) -"vhq" = ( -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solars/starboard/fore) -"vhG" = ( -/obj/structure/table/glass, -/obj/machinery/camera/autoname{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/misc_lab) -"vhM" = ( -/obj/machinery/teleport/hub, -/turf/open/floor/plating, -/area/command/teleporter) -"vic" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel/freezer, -/area/commons/toilet/restrooms) -"viK" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow, -/obj/machinery/door/poddoor/preopen{ - id = "hop"; - name = "privacy shutters" - }, -/turf/open/floor/plating, -/area/command/heads_quarters/hop) -"viO" = ( -/obj/structure/closet/emcloset, -/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/cargo/miningoffice) -"vjq" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/obj/effect/landmark/xmastree, -/turf/open/floor/carpet, -/area/service/chapel/main) -"vjC" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solars/port/fore) -"vjL" = ( -/obj/item/paper_bin{ - pixel_y = 7 - }, -/obj/structure/table, -/obj/machinery/newscaster{ - pixel_y = -30 - }, -/obj/item/stamp/rd{ - pixel_x = 3; - pixel_y = -2 - }, -/obj/item/folder/white{ - pixel_x = 9; - pixel_y = -1 - }, -/obj/item/pen, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/command/heads_quarters/rd) -"vkg" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/cargo/office) -"vkn" = ( -/obj/item/storage/crayons, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/table/wood, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/turf/open/floor/plasteel/grimy, -/area/service/chapel/office) -"vkY" = ( -/obj/machinery/requests_console{ - announcementConsole = 1; - department = "Bridge"; - departmentType = 5; - name = "Bridge RC"; - pixel_x = 32 - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/machinery/computer/cargo/request, -/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/command/bridge) -"vla" = ( -/obj/machinery/power/apc{ - areastring = "/area/security/execution/education"; - dir = 1; - name = "Prisoner Education Chamber APC"; - pixel_y = 23 - }, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/obj/structure/closet/secure_closet/injection{ - name = "educational injections"; - pixel_x = 2 - }, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/security/execution/education) -"vls" = ( -/obj/machinery/door/airlock{ - id_tag = "AuxToilet3"; - name = "Unit 3" - }, -/turf/open/floor/plating, -/area/commons/toilet/auxiliary) -"vmb" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel/dark, -/area/command/bridge) -"vmm" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"vms" = ( -/obj/machinery/atmospherics/pipe/simple/purple/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"vmE" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/aisat/exterior) -"vnr" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/cargo/warehouse) -"vnL" = ( -/obj/effect/spawner/structure/window/reinforced/tinted, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/commons/dorms) -"vnS" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/cargo/storage) -"voc" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/commons/storage/tools) -"vos" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"voB" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/obj/machinery/portable_atmospherics/pump, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/firealarm{ - pixel_y = 27 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/commons/locker) -"voK" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/mining{ - name = "Cargo Bay"; - req_one_access_txt = "48;50" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/construction/storage_wing) -"voY" = ( -/obj/structure/closet/crate/coffin, -/turf/open/floor/plating, -/area/service/chapel/main) -"vpQ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/sign/warning/securearea{ - pixel_x = 32 - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"vqd" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/service/theater) -"vqv" = ( -/obj/structure/table/wood, -/obj/machinery/newscaster{ - pixel_x = 29; - pixel_y = 1 - }, -/obj/item/paper, -/turf/open/floor/wood, -/area/commons/dorms) -"vqN" = ( -/obj/machinery/gateway/centerstation{ - dir = 0 - }, -/turf/open/floor/plasteel/dark, -/area/command/gateway) -"vre" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/light_switch{ - pixel_y = -26 - }, -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/showroomfloor, -/area/service/kitchen) -"vrr" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"vsk" = ( -/obj/structure/table/wood, -/obj/item/flashlight/lamp/green{ - pixel_x = 1; - pixel_y = 5 - }, -/obj/machinery/requests_console{ - department = "Law office"; - pixel_y = 32 - }, -/obj/machinery/newscaster{ - pixel_x = -31 - }, -/turf/open/floor/wood, -/area/service/lawoffice) -"vss" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/holopad, -/turf/open/floor/carpet, -/area/command/corporate_showroom) -"vsz" = ( -/obj/structure/sign/warning/securearea, -/turf/closed/wall/r_wall, -/area/command/bridge) -"vsD" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/office) -"vsF" = ( -/obj/item/folder/yellow, -/obj/item/folder/yellow, -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/sign/warning/securearea{ - pixel_y = 32 - }, -/obj/structure/table/glass, -/obj/item/storage/firstaid/fire{ - pixel_y = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"vsJ" = ( -/obj/machinery/door/airlock{ - id_tag = "Toilet2"; - name = "Unit 2" - }, -/turf/open/floor/plasteel/freezer, -/area/commons/toilet/restrooms) -"vsV" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/engineering/main) -"vtk" = ( -/obj/machinery/atmospherics/components/trinary/filter/atmos/o2{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"vtZ" = ( -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/machinery/computer/security/mining, -/obj/machinery/keycard_auth{ - pixel_y = 24 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/command/bridge) -"vvt" = ( -/obj/structure/disposalpipe/segment{ - 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/office) -"vvA" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Primary Tool Storage" - }, -/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/commons/storage/primary) -"vvU" = ( -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = 21 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"vwK" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/mining{ - name = "Cargo Bay"; - req_one_access_txt = "48;50" - }, -/obj/effect/turf_decal/delivery, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/construction/storage_wing) -"vwZ" = ( -/obj/machinery/atmospherics/pipe/manifold4w/general{ - color = "#0000ff" - }, -/turf/open/floor/plasteel/dark/side{ - dir = 1 - }, -/area/medical/surgery) -"vxg" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ - dir = 8 - }, -/turf/open/floor/plating, -/area/engineering/atmos) -"vxN" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -26 - }, -/obj/machinery/camera{ - c_tag = "Locker Room Port"; - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/commons/locker) -"vyp" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/table/wood, -/obj/item/folder{ - pixel_y = 2 - }, -/turf/open/floor/plasteel/grimy, -/area/service/chapel/office) -"vyx" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"vyB" = ( -/obj/effect/turf_decal/loading_area{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/sorting) -"vyC" = ( -/obj/structure/rack, -/obj/item/circuitboard/machine/telecomms/bus, -/obj/item/circuitboard/machine/telecomms/broadcaster, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/camera{ - c_tag = "Telecomms - Storage"; - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/storage/tcomms) -"vyZ" = ( -/obj/machinery/newscaster{ - pixel_x = -32 - }, -/turf/open/floor/wood, -/area/service/library) -"vzb" = ( -/obj/structure/chair/office/dark{ - dir = 4 - }, -/obj/effect/landmark/start/atmospheric_technician, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"vzO" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/machinery/computer/gateway_control{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/command/gateway) -"vAp" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/commons/locker) -"vAr" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/sorting/mail{ - sortType = 4 - }, -/obj/effect/landmark/start/station_engineer, -/turf/open/floor/plasteel, -/area/engineering/main) -"vBd" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"vBv" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/service/bar) -"vBW" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/engineering/atmos) -"vCd" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel/freezer, -/area/commons/toilet/restrooms) -"vCf" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/power/apc{ - areastring = "/area/engineering/break_room"; - name = "Engineering Foyer APC"; - pixel_x = -1; - pixel_y = -26 - }, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/machinery/light, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"vCg" = ( -/obj/machinery/door/airlock/command{ - name = "Captain's Quarters"; - req_access_txt = "20" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/carpet, -/area/command/heads_quarters/captain/private) -"vCi" = ( -/obj/effect/landmark/start/botanist, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"vCw" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "corporate_privacy"; - name = "showroom shutters" - }, -/turf/open/floor/plating, -/area/command/corporate_showroom) -"vCM" = ( -/obj/structure/table/wood, -/obj/item/taperecorder{ - pixel_x = -4 - }, -/obj/item/radio/off{ - pixel_y = 3 - }, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/hos) -"vDn" = ( -/obj/machinery/newscaster/security_unit{ - pixel_x = 32 - }, -/obj/machinery/computer/security/mining{ - dir = 8 - }, -/turf/open/floor/wood, -/area/command/heads_quarters/hop) -"vDo" = ( -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/carpet, -/area/command/heads_quarters/hop) -"vDJ" = ( -/obj/machinery/light_switch{ - pixel_x = 28 - }, -/obj/structure/dresser, -/obj/item/storage/secure/safe{ - pixel_x = 6; - pixel_y = 28 - }, -/turf/open/floor/wood, -/area/command/heads_quarters/captain/private) -"vDS" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/obj/effect/turf_decal/loading_area{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"vEl" = ( -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=1"; - dir = 8; - freq = 1400; - location = "Bar" - }, -/obj/structure/plasticflaps/opaque, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/turf/open/floor/plasteel{ - dir = 1 - }, -/area/service/bar) -"vFz" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/storage/primary) -"vGa" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/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 Officer's 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/command/heads_quarters/cmo) -"vGe" = ( -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -28 - }, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/service/bar) -"vGk" = ( -/obj/machinery/power/terminal, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"vGw" = ( -/obj/machinery/status_display/evac{ - pixel_y = 32 - }, -/obj/effect/landmark/xmastree/rdrod, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/command/heads_quarters/rd) -"vGM" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/wood, -/area/service/lawoffice) -"vGP" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"vHq" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/air_input{ - dir = 1 - }, -/turf/open/floor/engine/air, -/area/engineering/atmos) -"vHG" = ( -/obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/shaker, -/turf/open/floor/carpet, -/area/command/heads_quarters/captain/private) -"vIz" = ( -/obj/structure/table/wood, -/obj/item/folder, -/obj/item/folder, -/obj/item/pen, -/turf/open/floor/wood, -/area/service/library) -"vIC" = ( -/obj/structure/reflector/single/anchored{ - dir = 9 - }, -/turf/open/floor/plating, -/area/engineering/main) -"vJf" = ( -/obj/machinery/door/airlock{ - id_tag = "Cabin7"; - name = "Cabin 1" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/wood, -/area/commons/dorms) -"vJE" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/chem_master/condimaster{ - desc = "Used to separate out liquids - useful for purifying botanical extracts. Also dispenses condiments."; - name = "BrewMaster 2199"; - pixel_x = -4 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"vKw" = ( -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/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/cafeteria, -/area/command/heads_quarters/cmo) -"vKy" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/service/chapel/main) -"vLD" = ( -/obj/structure/lattice, -/turf/open/space/basic, -/area/space) -"vLV" = ( -/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/white, -/area/medical/treatment_center) -"vMm" = ( -/obj/machinery/conveyor_switch/oneway{ - id = "packageSort2"; - pixel_x = -2; - pixel_y = 12 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/cargo/sorting) -"vMu" = ( -/obj/structure/table/wood, -/obj/item/folder, -/turf/open/floor/wood, -/area/commons/vacant_room/office) -"vMG" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/item/kirbyplants{ - icon_state = "plant-05" - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"vNg" = ( -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/machinery/deepfryer, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/service/kitchen) -"vNi" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/carpet, -/area/command/heads_quarters/captain/private) -"vNm" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/storage/tech) -"vNx" = ( -/obj/machinery/computer/security, -/obj/machinery/computer/security/telescreen{ - desc = "Used for watching Prison Wing holding areas."; - name = "Prison Monitor"; - network = list("prison"); - 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/security/office) -"vNy" = ( -/obj/machinery/computer/station_alert{ - dir = 1 - }, -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/machinery/computer/security/telescreen/minisat{ - dir = 1; - pixel_y = -29 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/command/storage/satellite) -"vNU" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/cargo/storage) -"vOr" = ( -/obj/machinery/meter, -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/purple/visible{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/engineering/atmos) -"vOz" = ( -/obj/machinery/atmospherics/pipe/manifold/green/visible{ - dir = 1 - }, -/obj/machinery/meter, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"vOQ" = ( -/obj/structure/girder/reinforced, -/turf/open/floor/plating/airless, -/area/engineering/atmos) -"vPE" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"vPR" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/effect/turf_decal/loading_area{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"vQX" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/commons/vacant_room/office) -"vRu" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"vSm" = ( -/obj/machinery/power/emitter, -/turf/open/floor/plating, -/area/engineering/main) -"vSp" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/storage/primary) -"vSv" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"vSE" = ( -/obj/structure/chair/stool{ - pixel_y = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/commons/dorms) -"vSG" = ( -/obj/structure/table, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/item/storage/box/donkpockets, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/service/kitchen) -"vTo" = ( -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/carpet, -/area/service/theater) -"vTw" = ( -/obj/machinery/button/door{ - id = "bridge blast"; - name = "Bridge Access Blast Door Control"; - pixel_x = -1; - pixel_y = -24; - req_access_txt = "19" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/obj/machinery/button/door{ - id = "council blast"; - name = "Council Chamber Blast Door Control"; - pixel_x = -1; - pixel_y = -34; - req_access_txt = "19" - }, -/obj/machinery/camera{ - c_tag = "Bridge - Command Chair"; - dir = 1 - }, -/turf/open/floor/carpet, -/area/command/bridge) -"vTM" = ( -/obj/machinery/door/poddoor{ - id = "QMLoaddoor2"; - name = "Supply Dock Loading Door" - }, -/obj/machinery/conveyor{ - dir = 4; - id = "QMLoad2" - }, -/turf/open/floor/plating, -/area/cargo/storage) -"vTY" = ( -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/obj/machinery/power/apc{ - areastring = "/area/service/lawoffice"; - dir = 1; - name = "Law Office APC"; - pixel_y = 23 - }, -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, -/turf/open/floor/wood, -/area/service/lawoffice) -"vUh" = ( -/obj/machinery/shower{ - dir = 4 - }, -/obj/machinery/door/window/eastright{ - base_state = "left"; - dir = 2; - icon_state = "left"; - name = "shower" - }, -/turf/open/floor/plasteel/freezer, -/area/commons/fitness/recreation) -"vWf" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel/dark, -/area/command/bridge) -"vWi" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/service/kitchen) -"vWm" = ( -/obj/machinery/camera{ - c_tag = "Research Division - Server Room"; - network = list("ss13","rd"); - pixel_x = 22 - }, -/obj/machinery/power/apc{ - areastring = "/area/science/server"; - dir = 1; - name = "Research Division Server Room APC"; - pixel_y = 23 - }, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/turf/open/floor/plasteel/dark, -/area/science/server) -"vWI" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/wood, -/area/service/library) -"vWO" = ( -/turf/closed/wall, -/area/service/kitchen) -"vXa" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/machinery/door/poddoor/preopen{ - id = "rdprivacy"; - name = "privacy shutter" - }, -/turf/open/floor/plating, -/area/command/heads_quarters/rd) -"vXk" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/cafeteria, -/area/command/heads_quarters/cmo) -"vXp" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/carpet, -/area/service/library) -"vYs" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/heat_exchanging/simple, -/turf/open/space, -/area/space/nearstation) -"vYJ" = ( -/obj/structure/table, -/obj/machinery/microwave{ - pixel_x = -3; - pixel_y = 6 - }, -/obj/machinery/button/door{ - id = "kitchen"; - name = "Kitchen Shutters Control"; - pixel_x = -4; - pixel_y = 26; - req_access_txt = "28" - }, -/obj/machinery/light_switch{ - pixel_x = 6; - pixel_y = 26 - }, -/turf/open/floor/plasteel/cafeteria, -/area/service/kitchen) -"vZd" = ( -/obj/machinery/power/apc{ - areastring = "/area/security/checkpoint/customs"; - dir = 1; - name = "Customs APC"; - pixel_y = 23 - }, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/customs) -"vZm" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/engineering/main) -"vZo" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"vZw" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/junction/flip{ - dir = 2 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"vZL" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/ai_monitored/command/storage/eva) -"wad" = ( -/obj/structure/bed, -/obj/machinery/button/door{ - id = "Cabin2"; - name = "Cabin Bolt Control"; - normaldoorcontrol = 1; - pixel_x = 25; - specialfunctions = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/spawner/lootdrop/bedsheet, -/turf/open/floor/carpet, -/area/commons/dorms) -"waL" = ( -/obj/structure/table, -/obj/item/clothing/head/hardhat/cakehat, -/obj/machinery/newscaster{ - pixel_x = -30 - }, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/service/bar) -"waU" = ( -/obj/machinery/power/apc{ - areastring = "/area/ai_monitored/turret_protected/aisat_interior"; - dir = 4; - name = "MiniSat Antechamber APC"; - pixel_x = 24 - }, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"wbh" = ( -/obj/structure/window/reinforced, -/obj/structure/showcase/mecha/ripley, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/carpet, -/area/command/corporate_showroom) -"wbv" = ( -/obj/structure/chair/stool{ - pixel_y = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"wbK" = ( -/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, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/obj/item/grenade/chem_grenade/antiweed, -/obj/structure/table/glass, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"wbZ" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/service/bar) -"wcl" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/landmark/start/head_of_security, -/obj/machinery/holopad/secure, -/turf/open/floor/carpet, -/area/command/heads_quarters/hos) -"wcY" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel{ - dir = 1 - }, -/area/engineering/main) -"wda" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/dark/visible{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"wdd" = ( -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solars/port/aft) -"wdu" = ( -/obj/structure/grille, -/obj/structure/lattice, -/turf/open/floor/plating, -/area/space/nearstation) -"wdy" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/command/teleporter) -"wdP" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/power/apc{ - areastring = "/area/command/heads_quarters/ce"; - dir = 4; - name = "CE Office APC"; - pixel_x = 24 - }, -/obj/structure/cable/yellow, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/light_switch{ - pixel_x = 26; - pixel_y = 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/command/heads_quarters/ce) -"wdQ" = ( -/obj/machinery/door/airlock{ - id_tag = "Cabin6"; - name = "Cabin 2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/wood, -/area/commons/dorms) -"wep" = ( -/turf/closed/wall, -/area/service/bar) -"weB" = ( -/turf/closed/wall, -/area/commons/fitness/recreation) -"weG" = ( -/obj/machinery/shower{ - dir = 8 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/freezer, -/area/commons/toilet/restrooms) -"weN" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/door/window/brigdoor{ - name = "Command Desk"; - req_access_txt = "19" - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command/bridge) -"wfx" = ( -/turf/closed/wall, -/area/commons/dorms) -"wfE" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/commons/storage/primary) -"wfT" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/carpet, -/area/service/chapel/main) -"wfY" = ( -/obj/structure/toilet/secret/low_loot{ - pixel_y = 8 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/button/door{ - id = "AuxToilet1"; - name = "Lock Control"; - normaldoorcontrol = 1; - pixel_x = 25; - specialfunctions = 4 - }, -/obj/machinery/newscaster{ - pixel_y = -32 - }, -/turf/open/floor/plasteel, -/area/commons/toilet/auxiliary) -"wgw" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/maintenance/disposal/incinerator) -"wgD" = ( -/obj/machinery/vending/snack/random, -/obj/machinery/newscaster{ - pixel_y = -29 - }, -/turf/open/floor/carpet, -/area/service/bar) -"wgN" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/visible, -/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/engineering/atmos) -"whB" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/engineering/storage/tech) -"whD" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/aisat/exterior) -"whE" = ( -/obj/structure/table/wood, -/obj/machinery/recharger{ - pixel_y = 4 - }, -/turf/open/floor/wood, -/area/command/heads_quarters/captain/private) -"wim" = ( -/obj/structure/table, -/obj/item/stock_parts/micro_laser, -/obj/item/stock_parts/manipulator, -/obj/item/stock_parts/manipulator, -/obj/item/stock_parts/manipulator, -/obj/item/stock_parts/manipulator, -/obj/item/stock_parts/capacitor, -/obj/item/stock_parts/micro_laser/high, -/obj/item/stock_parts/micro_laser/high, -/obj/item/stock_parts/micro_laser/high, -/obj/item/stock_parts/micro_laser/high, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/storage/tcomms) -"wiv" = ( -/obj/machinery/vending/assist, -/turf/open/floor/plasteel/dark, -/area/engineering/storage/tech) -"wiZ" = ( -/obj/machinery/door/airlock/external{ - name = "Security External Airlock"; - req_access_txt = "1" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/turf/open/floor/plating, -/area/security/prison) -"wjD" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/table/wood, -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/obj/item/lighter, -/turf/open/floor/wood, -/area/commons/dorms) -"wjH" = ( -/obj/structure/mirror{ - pixel_x = 28 - }, -/obj/machinery/shower{ - dir = 8 - }, -/turf/open/floor/plasteel/freezer, -/area/commons/toilet/restrooms) -"wjR" = ( -/turf/open/floor/plasteel, -/area/commons/dorms) -"wki" = ( -/obj/effect/spawner/structure/window, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/commons/storage/primary) -"wku" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/green/visible, -/obj/machinery/atmospherics/pipe/simple/dark/visible{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engineering/atmos) -"wkC" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/cargo/sorting) -"wlC" = ( -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"wlF" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/service/kitchen) -"wlH" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/radio/intercom{ - pixel_y = -28 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"wlK" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/obj/machinery/door/poddoor/preopen{ - id = "hosprivacy"; - name = "privacy shutters" - }, -/turf/open/floor/plating, -/area/command/heads_quarters/hos) -"wmt" = ( -/obj/effect/decal/cleanable/flour, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"wmB" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/machinery/power/apc/highcap/five_k{ - areastring = "/area/science/storage"; - dir = 1; - name = "Toxins Storage APC"; - pixel_y = 23 - }, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/storage) -"wmK" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/command/corporate_showroom) -"wmO" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/photocopier{ - pixel_y = 3 - }, -/turf/open/floor/wood, -/area/service/library) -"wmX" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/commons/dorms) -"wnb" = ( -/obj/structure/table, -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/item/pen, -/obj/machinery/power/apc{ - areastring = "/area/medical/treatment_center"; - dir = 1; - name = "Sleeper Room APC"; - pixel_y = 23 - }, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/obj/item/clothing/neck/stethoscope, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/medical/treatment_center) -"wni" = ( -/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 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/service/kitchen) -"wnk" = ( -/obj/structure/table, -/obj/item/storage/box/lights/mixed, -/obj/item/storage/box/lights/mixed, -/obj/item/grenade/chem_grenade/cleaner, -/obj/item/grenade/chem_grenade/cleaner, -/obj/item/grenade/chem_grenade/cleaner, -/turf/open/floor/plasteel, -/area/service/janitor) -"wnJ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/command/teleporter) -"wox" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"woJ" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "council blast"; - name = "Council Blast Doors" - }, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/turf/open/floor/plating, -/area/command/bridge) -"woN" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"woQ" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - icon_state = "0-2" - }, -/turf/open/space, -/area/solars/starboard/aft) -"wpo" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/engineering/storage/tcomms) -"wpz" = ( -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/obj/machinery/portable_atmospherics/canister, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"wpD" = ( -/obj/structure/bed, -/obj/machinery/button/door{ - id = "Cabin6"; - name = "Dorm Bolt Control"; - normaldoorcontrol = 1; - pixel_x = -25; - specialfunctions = 4 - }, -/obj/effect/decal/cleanable/cobweb, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/effect/spawner/lootdrop/bedsheet, -/turf/open/floor/carpet, -/area/commons/dorms) -"wpE" = ( -/obj/machinery/smartfridge/drinks{ - icon_state = "boozeomat" - }, -/turf/closed/wall, -/area/service/bar) -"wqi" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/green/visible, -/turf/open/floor/plating, -/area/engineering/atmos) -"wqj" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command/bridge) -"wqs" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engineering/atmos) -"wqG" = ( -/obj/machinery/portable_atmospherics/canister, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"wqL" = ( -/obj/structure/table, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -28 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/computer/monitor{ - dir = 1 - }, -/obj/structure/cable/yellow, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/command/storage/satellite) -"wqU" = ( -/obj/effect/landmark/xeno_spawn, -/obj/structure/cable, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solars/port/aft) -"wrq" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 9 - }, -/obj/machinery/meter, -/turf/closed/wall/r_wall, -/area/engineering/supermatter) -"wrH" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command/glass{ - name = "Bridge"; - req_access_txt = "19" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/command/bridge) -"wrY" = ( -/obj/structure/table/wood, -/obj/item/folder/yellow, -/obj/machinery/firealarm{ - pixel_y = 28 - }, -/turf/open/floor/plasteel/dark, -/area/command/bridge) -"wsX" = ( -/obj/structure/closet/wardrobe/grey, -/obj/effect/turf_decal/tile/neutral{ - 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/poster/official/fashion{ - pixel_y = -32 - }, -/obj/structure/sign/poster/official/fashion{ - pixel_y = -32 - }, -/turf/open/floor/plasteel/dark, -/area/commons/locker) -"wts" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/office) -"wtx" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"wtF" = ( -/obj/item/radio/intercom{ - dir = 4; - name = "Station Intercom (General)" - }, -/turf/closed/wall, -/area/service/library) -"wtG" = ( -/obj/structure/sign/plaques/atmos{ - pixel_y = 32 - }, -/obj/machinery/light_switch{ - pixel_x = 26 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/computer/atmos_control, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/checker, -/area/engineering/atmos) -"wtK" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering/glass{ - name = "Supermatter Engine"; - req_access_txt = "10" - }, -/turf/open/floor/plating, -/area/engineering/main) -"wtU" = ( -/obj/structure/chair/wood/wings{ - dir = 8 - }, -/turf/open/floor/wood, -/area/service/theater) -"wud" = ( -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/obj/machinery/camera{ - c_tag = "Gateway - Access"; - dir = 8 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/command/gateway) -"wul" = ( -/obj/structure/table/wood, -/obj/item/paper, -/obj/structure/sign/poster/official/random{ - pixel_y = -32 - }, -/turf/open/floor/wood, -/area/commons/vacant_room/office) -"wuo" = ( -/obj/effect/spawner/structure/window, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plating, -/area/medical/treatment_center) -"wuz" = ( -/obj/structure/table, -/obj/item/destTagger{ - pixel_x = 4; - pixel_y = 3 - }, -/obj/machinery/light_switch{ - pixel_x = 27 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white/corner, -/area/cargo/sorting) -"wuN" = ( -/obj/structure/chair, -/obj/effect/landmark/start/assistant, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"wuS" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel/dark, -/area/engineering/storage/tcomms) -"wvO" = ( -/obj/machinery/power/apc{ - areastring = "/area/medical/genetics"; - dir = 1; - name = "Genetics Lab APC"; - pixel_y = 23 - }, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/storage/pill_bottle/mutadone, -/obj/item/storage/pill_bottle/mannitol{ - pixel_x = 5 - }, -/obj/structure/table/glass, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/medical/genetics) -"wvY" = ( -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/power/apc{ - areastring = "/area/commons/dorms"; - dir = 1; - name = "Dormitories APC"; - pixel_y = 23 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/commons/dorms) -"wwD" = ( -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solars/port/fore) -"wxd" = ( -/obj/machinery/suit_storage_unit/standard_unit, -/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/ai_monitored/command/storage/eva) -"wxA" = ( -/obj/machinery/hydroponics/constructable, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"wxF" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Vacant Office Maintenance"; - req_access_txt = "32" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/port) -"wxP" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/dark/visible{ - dir = 5 - }, -/turf/closed/wall/r_wall, -/area/engineering/atmos) -"wxW" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/service/chapel/main) -"wyt" = ( -/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/commons/dorms) -"wyJ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/components/trinary/filter/flipped/critical, -/turf/open/floor/engine, -/area/engineering/main) -"wzm" = ( -/obj/machinery/holopad, -/turf/open/floor/plasteel, -/area/cargo/storage) -"wzo" = ( -/obj/structure/showcase/perfect_employee, -/obj/structure/sign/plaques/kiddie/perfect_man{ - pixel_y = 32 - }, -/obj/structure/window/reinforced, -/turf/open/floor/carpet, -/area/command/corporate_showroom) -"wzp" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/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/command/gateway) -"wzY" = ( -/obj/machinery/vending/cigarette, -/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/commons/fitness/recreation) -"wAs" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"wAX" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/engineering/main) -"wBE" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/obj/machinery/camera{ - c_tag = "Engineering - Transit Tube Access"; - dir = 8 - }, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/plasteel/dark, -/area/engineering/break_room) -"wBK" = ( -/obj/machinery/holopad, -/turf/open/floor/plasteel, -/area/commons/storage/primary) -"wBL" = ( -/obj/machinery/vending/hydronutrients, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"wBP" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/command/gateway) -"wCb" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/item/radio/intercom{ - dir = 4; - name = "Station Intercom (General)"; - pixel_x = 27 - }, -/obj/structure/table, -/obj/item/folder/yellow, -/obj/item/folder/yellow, -/obj/item/paper, -/obj/item/paper, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"wCr" = ( -/obj/structure/mirror{ - pixel_x = -28 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/shower{ - dir = 4 - }, -/turf/open/floor/plasteel/freezer, -/area/commons/toilet/restrooms) -"wCs" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/service/kitchen) -"wCQ" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel/freezer, -/area/commons/toilet/restrooms) -"wCV" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = 26 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/office) -"wDJ" = ( -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_x = 29 - }, -/turf/open/floor/plasteel/chapel, -/area/service/chapel/main) -"wDZ" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/obj/machinery/button/door{ - id = "evashutter"; - name = "E.V.A. Storage Shutter Control"; - pixel_y = -24; - req_access_txt = "19" - }, -/obj/machinery/button/door{ - id = "gateshutter"; - name = "Gateway Shutter Control"; - pixel_y = -34; - req_access_txt = "19" - }, -/turf/open/floor/carpet, -/area/command/bridge) -"wEG" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/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/effect/landmark/xeno_spawn, -/turf/open/floor/plating, -/area/commons/toilet/auxiliary) -"wEJ" = ( -/obj/structure/filingcabinet/chestdrawer, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -29 - }, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/command/heads_quarters/rd) -"wER" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command/bridge) -"wFc" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/machinery/camera{ - c_tag = "Engineering Supermatter Starboard"; - dir = 4; - network = list("ss13","engine") - }, -/obj/machinery/atmospherics/pipe/simple/cyan/visible, -/turf/open/floor/engine, -/area/engineering/main) -"wFu" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"wFB" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel/chapel{ - dir = 4 - }, -/area/service/chapel/main) -"wFE" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/freezer, -/area/commons/toilet/restrooms) -"wFH" = ( -/obj/machinery/power/apc/highcap/five_k{ - areastring = "/area/maintenance/aft"; - name = "Aft Maintenance APC"; - pixel_y = -24 - }, -/obj/structure/cable/yellow, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"wFX" = ( -/obj/machinery/portable_atmospherics/canister/air, -/turf/open/floor/engine/air, -/area/engineering/atmos) -"wGp" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/engine, -/area/engineering/main) -"wGq" = ( -/obj/machinery/computer/slot_machine{ - pixel_y = 2 - }, -/turf/open/floor/carpet, -/area/service/bar) -"wGv" = ( -/obj/machinery/computer/atmos_control/tank/toxin_tank{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/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 - }, -/obj/machinery/atmospherics/pipe/simple/yellow/visible, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"wGw" = ( -/obj/machinery/holopad, -/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/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/office) -"wGD" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/command/storage/eva) -"wGU" = ( -/obj/structure/sign/warning/securearea, -/turf/closed/wall/r_wall, -/area/ai_monitored/command/nuke_storage) -"wIf" = ( -/obj/effect/landmark/blobstart, -/obj/machinery/power/apc{ - areastring = "/area/maintenance/central"; - dir = 4; - name = "Central Maintenance APC"; - pixel_x = 24 - }, -/obj/structure/cable/yellow, -/turf/open/floor/plating, -/area/maintenance/central) -"wIw" = ( -/turf/open/floor/carpet, -/area/command/heads_quarters/captain/private) -"wIB" = ( -/obj/machinery/keycard_auth{ - pixel_x = -25; - pixel_y = 25 - }, -/obj/machinery/status_display/evac{ - pixel_y = 32 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -27 - }, -/obj/machinery/computer/apc_control, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/ce) -"wIS" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/commons/locker) -"wJb" = ( -/obj/machinery/atmospherics/pipe/simple, -/obj/machinery/meter{ - name = "Mixed Air Tank In" - }, -/obj/structure/grille, -/turf/closed/wall/r_wall, -/area/engineering/atmos) -"wJv" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/landmark/start/shaft_miner, -/turf/open/floor/plasteel, -/area/cargo/miningoffice) -"wKg" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/closed/wall, -/area/engineering/atmos) -"wKo" = ( -/obj/effect/turf_decal/stripes/line, -/turf/closed/wall, -/area/science/circuit) -"wKu" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plasteel/grimy, -/area/security/office) -"wKY" = ( -/obj/machinery/light_switch{ - pixel_y = 28 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/cargo/sorting) -"wLu" = ( -/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/command/nuke_storage) -"wMe" = ( -/obj/item/taperecorder, -/obj/item/camera, -/obj/structure/table/wood, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -29 - }, -/turf/open/floor/engine/cult, -/area/service/library) -"wMJ" = ( -/obj/machinery/atmospherics/components/binary/pump{ - name = "Air to Mix" - }, -/obj/machinery/atmospherics/pipe/simple/purple/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"wNF" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/office) -"wNI" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"wNL" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/cargo/office) -"wNQ" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 10 - }, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"wOW" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/table/glass, -/obj/item/phone{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/cigbutt/cigarbutt{ - pixel_x = 5; - pixel_y = -1 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/break_room) -"wOY" = ( -/obj/structure/fans/tiny/invisible, -/turf/open/space/basic, -/area/space) -"wPd" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/carpet, -/area/service/library) -"wPk" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"wPl" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/mining{ - name = "Mining Office"; - req_access_txt = "48" - }, -/turf/open/floor/plasteel, -/area/cargo/miningoffice) -"wQo" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/engineering/glass{ - name = "Laser Room"; - req_access_txt = "10" - }, -/turf/open/floor/plating, -/area/engineering/main) -"wQw" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "corporate_privacy"; - name = "showroom shutters" - }, -/turf/open/floor/plating, -/area/command/corporate_showroom) -"wQF" = ( -/obj/item/stack/sheet/metal/fifty, -/obj/item/stack/sheet/metal/fifty, -/obj/structure/table, -/obj/item/stack/sheet/plasteel{ - amount = 10 - }, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -22 - }, -/obj/item/stack/sheet/glass/fifty, -/obj/item/stack/sheet/glass/fifty, -/obj/item/crowbar, -/obj/item/wrench, -/obj/item/storage/toolbox/electrical{ - pixel_x = 1; - pixel_y = -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/ai_monitored/command/storage/eva) -"wQJ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/cargo/office) -"wQM" = ( -/obj/effect/turf_decal/stripes/line, -/obj/structure/reagent_dispensers/watertank/high, -/obj/item/reagent_containers/glass/bucket, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"wQW" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 4 - }, -/obj/structure/grille, -/turf/closed/wall/r_wall, -/area/engineering/atmos) -"wRy" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/science/misc_lab) -"wRz" = ( -/obj/effect/landmark/xeno_spawn, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/obj/machinery/light/small, -/turf/open/floor/wood, -/area/commons/dorms) -"wRE" = ( -/obj/machinery/light/small, -/obj/structure/sign/poster/official/random{ - pixel_y = -32 - }, -/turf/open/floor/plating, -/area/commons/toilet/auxiliary) -"wRK" = ( -/obj/effect/landmark/start/bartender, -/turf/open/floor/wood, -/area/service/bar) -"wSs" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/commons/dorms) -"wSt" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/chapel{ - dir = 8 - }, -/area/service/chapel/main) -"wSx" = ( -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"wSJ" = ( -/obj/structure/table, -/obj/item/stack/cable_coil{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/stack/cable_coil, -/obj/item/stock_parts/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/storage/tech) -"wST" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/command/heads_quarters/rd) -"wTi" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/command/storage/eva) -"wTk" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/aisat/exterior) -"wTI" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/office) -"wUF" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/camera{ - c_tag = "Crew Quarters Entrance" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/commons/locker) -"wUI" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/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/service/hydroponics/garden) -"wUL" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/cargo/sorting) -"wVf" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"wVN" = ( -/obj/machinery/light_switch{ - pixel_x = 11; - pixel_y = 23 - }, -/obj/effect/turf_decal/tile/neutral{ - 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/vehicle/ridden/wheelchair, -/turf/open/floor/plasteel/dark, -/area/medical/treatment_center) -"wVV" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/carpet, -/area/commons/dorms) -"wWO" = ( -/obj/structure/cable/yellow{ - 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/security/office) -"wWR" = ( -/obj/machinery/light/small{ - 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/engineering/storage/tech) -"wXi" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/obj/machinery/door/poddoor/preopen{ - id = "bridge blast"; - name = "bridge blast door" - }, -/turf/open/floor/plating, -/area/command/bridge) -"wXC" = ( -/obj/machinery/light_switch{ - pixel_y = 28 - }, -/turf/open/floor/circuit/green{ - luminosity = 2 - }, -/area/ai_monitored/command/nuke_storage) -"wYa" = ( -/obj/structure/table, -/obj/item/stack/cable_coil{ - pixel_x = 3; - pixel_y = -7 - }, -/obj/item/stack/cable_coil, -/obj/item/electronics/airlock, -/obj/item/electronics/airlock, -/obj/item/clothing/ears/earmuffs{ - pixel_x = -3; - pixel_y = -2 - }, -/obj/item/clothing/ears/earmuffs{ - pixel_x = -5; - pixel_y = 6 - }, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/obj/item/rcl/pre_loaded, -/obj/item/rcl/pre_loaded, -/turf/open/floor/plasteel{ - dir = 1 - }, -/area/engineering/main) -"wYd" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/commons/storage/art) -"wYi" = ( -/obj/machinery/power/apc{ - areastring = "/area/service/hydroponics/garden"; - dir = 4; - name = "Garden APC"; - pixel_x = 24; - pixel_y = 2 - }, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/machinery/disposal/bin, -/obj/machinery/camera{ - c_tag = "Garden"; - dir = 8 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics/garden) -"wYu" = ( -/obj/structure/table, -/obj/item/analyzer, -/obj/machinery/power/apc{ - areastring = "/area/commons/storage/primary"; - name = "Tool Storage APC"; - pixel_y = -27 - }, -/obj/structure/cable/yellow, -/obj/item/wrench, -/obj/structure/sign/poster/official/random{ - pixel_x = -32 - }, -/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/commons/storage/primary) -"wYA" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/locker) -"wZn" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/closet/secure_closet/engineering_electrical, -/turf/open/floor/plasteel, -/area/engineering/main) -"wZw" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/command/storage/satellite) -"wZB" = ( -/obj/effect/turf_decal/loading_area{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"wZC" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solars/port/fore) -"wZK" = ( -/obj/structure/table, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/syndicatebomb/training, -/turf/open/floor/plasteel, -/area/security/office) -"wZL" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/commons/storage/primary) -"wZM" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/commons/locker) -"wZX" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/table/reinforced, -/obj/item/stamp/denied{ - pixel_x = 4; - pixel_y = -2 - }, -/obj/item/stamp{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/pen/red, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/office) -"wZY" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Library" - }, -/turf/open/floor/wood, -/area/service/library) -"xaj" = ( -/obj/machinery/teleport/station, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -24 - }, -/turf/open/floor/plating, -/area/command/teleporter) -"xar" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/carpet, -/area/service/chapel/main) -"xaR" = ( -/obj/machinery/atmospherics/pipe/manifold/yellow/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"xaV" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/locker) -"xaX" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/office) -"xbd" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"xbz" = ( -/obj/machinery/atmospherics/pipe/simple/dark/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, -/turf/closed/wall/r_wall, -/area/engineering/atmos) -"xbB" = ( -/mob/living/simple_animal/hostile/retaliate/goat{ - name = "Pete" - }, -/turf/open/floor/plasteel/showroomfloor, -/area/service/kitchen) -"xbM" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/obj/item/storage/box/donkpockets, -/turf/open/floor/plasteel, -/area/cargo/warehouse) -"xbR" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 10 - }, -/turf/closed/wall/r_wall, -/area/engineering/atmos) -"xbT" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/engineering/main) -"xca" = ( -/obj/machinery/door/poddoor/preopen{ - id = "atmos"; - name = "Atmospherics Blast Door" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"xcA" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/cargo/sorting) -"xcR" = ( -/obj/machinery/pool/filter{ - pixel_y = 16 - }, -/turf/open/pool, -/area/commons/fitness/pool) -"xdX" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/table/glass, -/obj/item/folder/blue{ - pixel_y = 3 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/item/pen, -/obj/machinery/computer/security/telescreen/minisat{ - dir = 1; - pixel_y = -28 - }, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel/dark, -/area/engineering/break_room) -"xel" = ( -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"xet" = ( -/obj/structure/table, -/obj/item/camera_film, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 28 - }, -/turf/open/floor/plasteel, -/area/commons/storage/art) -"xeF" = ( -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/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/command/bridge) -"xfI" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"xgw" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics/garden) -"xgL" = ( -/obj/structure/table/wood, -/obj/item/toy/plush/carpplushie{ - color = "red"; - name = "Nanotrasen wildlife department space carp plushie" - }, -/turf/open/floor/carpet, -/area/command/corporate_showroom) -"xgN" = ( -/obj/structure/cable, -/obj/machinery/power/tracker, -/turf/open/floor/plating/airless, -/area/solars/port/aft) -"xhk" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/cargo/office) -"xhF" = ( -/obj/structure/sign/directions/command{ - dir = 1; - pixel_y = -8 - }, -/turf/closed/wall/r_wall, -/area/command/heads_quarters/captain/private) -"xhM" = ( -/obj/machinery/door/airlock{ - id_tag = "Cabin2"; - name = "Cabin 4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/wood, -/area/commons/dorms) -"xiO" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/break_room) -"xjs" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/commons/toilet/auxiliary) -"xjY" = ( -/obj/machinery/holopad, -/turf/open/floor/wood, -/area/service/library) -"xkG" = ( -/obj/item/integrated_electronics/wirer, -/obj/structure/table/reinforced, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"xlc" = ( -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_y = -29 - }, -/obj/machinery/suit_storage_unit/ce, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/ce) -"xlv" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel, -/area/cargo/sorting) -"xlH" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 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, -/area/service/hydroponics) -"xlU" = ( -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, -/area/service/library) -"xlW" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/commons/locker) -"xmb" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/sign/map/left{ - desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; - icon_state = "map-left-MS"; - pixel_y = -32 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"xmc" = ( -/obj/structure/table, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/pen, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"xmv" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/wood, -/area/service/library) -"xnc" = ( -/obj/machinery/light_switch{ - pixel_y = 25 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/table/wood, -/obj/item/clothing/shoes/laceup, -/obj/item/clothing/under/suit/black_really, -/obj/item/clothing/glasses/sunglasses, -/obj/machinery/camera{ - c_tag = "Corporate Showroom" - }, -/turf/open/floor/wood, -/area/command/corporate_showroom) -"xnd" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/command/storage/eva) -"xns" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/camera{ - c_tag = "Security - Office - Port"; - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/office) -"xnt" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"xnG" = ( -/obj/structure/bookcase/random/reference, -/turf/open/floor/wood, -/area/service/library) -"xoe" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/machinery/rnd/production/protolathe/department/engineering, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"xof" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "council blast"; - name = "Council Blast Doors" - }, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/command/bridge) -"xos" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/mining{ - name = "Cargo Bay"; - req_one_access_txt = "48;50" - }, -/obj/effect/turf_decal/delivery, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/construction/storage_wing) -"xou" = ( -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/commons/locker) -"xov" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"xpy" = ( -/obj/effect/landmark/xeno_spawn, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/commons/dorms) -"xpD" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/commons/cryopod) -"xpY" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/mob/living/simple_animal/hostile/retaliate/bat{ - desc = "A fierce companion for any person of power, this spider has been carefully trained by Nanotrasen specialists. Its beady, staring eyes send shivers down your spine."; - emote_hear = list("chitters"); - faction = list("spiders"); - harm_intent_damage = 3; - health = 200; - icon_dead = "guard_dead"; - icon_gib = "guard_dead"; - icon_living = "guard"; - icon_state = "guard"; - maxHealth = 250; - max_co2 = 5; - max_tox = 2; - melee_damage_lower = 15; - melee_damage_upper = 20; - min_oxy = 5; - movement_type = 1; - name = "Sergeant Araneus"; - real_name = "Sergeant Araneus"; - response_help_continuous = "pets"; - response_help_simple = "pet"; - turns_per_move = 10 - }, -/turf/open/floor/carpet, -/area/command/heads_quarters/hos) -"xqi" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/engineering/atmos) -"xqv" = ( -/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/solars/starboard/aft) -"xqM" = ( -/obj/item/storage/bag/plants/portaseeder, -/obj/structure/table, -/obj/machinery/light, -/obj/item/plant_analyzer, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics/garden) -"xqW" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/visible, -/turf/open/floor/plating, -/area/engineering/atmos) -"xrc" = ( -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/wood, -/area/service/library) -"xrw" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/visible, -/turf/open/floor/engine, -/area/engineering/main) -"xrJ" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/turf/open/floor/wood, -/area/command/heads_quarters/captain/private) -"xsc" = ( -/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/office) -"xse" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/aft) -"xsj" = ( -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solars/starboard/fore) -"xsO" = ( -/obj/effect/spawner/lootdrop/maintenance, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/cargo/storage) -"xsT" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/command/teleporter) -"xti" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 10 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"xtl" = ( -/obj/structure/table, -/obj/machinery/cell_charger, -/obj/item/stock_parts/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/engineering/main) -"xtF" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/engine, -/area/engineering/main) -"xtS" = ( -/obj/effect/landmark/carpspawn, -/turf/open/space, -/area/space/station_ruins) -"xuF" = ( -/obj/structure/chair/comfy/black, -/obj/effect/landmark/start/assistant, -/turf/open/floor/wood, -/area/service/library) -"xuP" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1; - name = "N2 to Pure" - }, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"xvf" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/techstorage/security, -/turf/open/floor/plasteel/dark, -/area/engineering/storage/tech) -"xvg" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "0-4" - }, -/turf/open/floor/plating, -/area/engineering/gravity_generator) -"xwg" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering{ - name = "Tech Storage"; - req_one_access_txt = "23;30" - }, -/obj/structure/cable/yellow{ - 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/engineering/storage/tech) -"xww" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/cargo/qm) -"xwN" = ( -/obj/structure/rack, -/obj/item/electronics/apc, -/obj/item/stock_parts/cell{ - maxcharge = 2000 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 24 - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plasteel, -/area/cargo/warehouse) -"xxf" = ( -/obj/machinery/atmospherics/pipe/manifold/yellow/visible{ - dir = 1 - }, -/obj/machinery/meter, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"xxq" = ( -/obj/structure/table/wood, -/obj/item/book/manual/wiki/security_space_law, -/obj/item/book/manual/wiki/security_space_law, -/obj/item/pen/red, -/obj/machinery/computer/security/telescreen{ - desc = "Used for watching Prison Wing holding areas."; - name = "Prison Monitor"; - network = list("prison"); - pixel_y = 30 - }, -/turf/open/floor/wood, -/area/service/lawoffice) -"xyp" = ( -/obj/docking_port/stationary{ - dheight = 1; - dir = 8; - dwidth = 12; - height = 17; - id = "syndicate_nw"; - name = "northwest of station"; - width = 23 - }, -/turf/open/space/basic, -/area/space/nearstation) -"xze" = ( -/turf/closed/wall, -/area/service/theater) -"xzr" = ( -/obj/machinery/photocopier, -/obj/machinery/power/apc{ - areastring = "/area/command/heads_quarters/hos"; - dir = 4; - name = "Head of Security's Office APC"; - pixel_x = 24 - }, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/machinery/button/door{ - id = "hosprivacy"; - name = "Privacy Shutters Control"; - pixel_x = 26; - pixel_y = -26 - }, -/obj/machinery/computer/security/telescreen/entertainment{ - 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/command/heads_quarters/hos) -"xzD" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/components/trinary/filter/flipped/critical{ - filter_type = "n2" - }, -/turf/open/floor/engine, -/area/engineering/main) -"xzM" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/wood, -/area/service/library) -"xAp" = ( -/obj/structure/chair/comfy, -/turf/open/floor/plasteel, -/area/science/misc_lab) -"xAs" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/grunge{ - name = "Quiet Room" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/wood, -/area/service/library) -"xAR" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plasteel/white, -/area/medical/treatment_center) -"xAW" = ( -/obj/machinery/photocopier, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/office) -"xBK" = ( -/obj/effect/landmark/start/station_engineer, -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/sign/warning/electricshock{ - pixel_x = -31 - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"xCf" = ( -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/turf/open/floor/plating, -/area/engineering/main) -"xCx" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/carpet, -/area/service/theater) -"xCC" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/command/corporate_showroom) -"xCI" = ( -/obj/structure/girder, -/turf/open/floor/plating/airless, -/area/engineering/atmos) -"xCP" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solars/port/aft) -"xDn" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/turf/open/floor/plating, -/area/maintenance/port) -"xDD" = ( -/obj/machinery/door/airlock{ - id_tag = "AuxShower"; - name = "Shower" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/commons/toilet/auxiliary) -"xDL" = ( -/obj/machinery/hydroponics/constructable, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -29 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"xDS" = ( -/obj/structure/rack, -/obj/item/tank/internals/oxygen, -/obj/item/tank/internals/oxygen, -/obj/item/radio/off, -/obj/item/radio/off, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - 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/command/teleporter) -"xDT" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/obj/item/radio/intercom{ - dir = 4; - name = "Station Intercom (General)"; - pixel_x = 27 - }, -/turf/open/floor/wood, -/area/service/library) -"xDY" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/ai_monitored/aisat/exterior) -"xDZ" = ( -/obj/effect/landmark/start/librarian, -/obj/structure/chair/office/dark{ - dir = 1 - }, -/turf/open/floor/wood, -/area/service/library) -"xEf" = ( -/obj/structure/table, -/obj/item/flashlight/lamp{ - on = 0 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"xEu" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/turf/open/floor/wood, -/area/service/lawoffice) -"xEM" = ( -/turf/open/floor/plating, -/area/commons/toilet/auxiliary) -"xFb" = ( -/obj/machinery/computer/security/mining{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/miningoffice) -"xFk" = ( -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/effect/landmark/start/station_engineer, -/turf/open/floor/plasteel, -/area/engineering/main) -"xFE" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/storage/primary) -"xFW" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"xGi" = ( -/obj/machinery/cell_charger, -/obj/item/stock_parts/cell/crap, -/obj/structure/table/wood, -/turf/open/floor/carpet, -/area/command/corporate_showroom) -"xGp" = ( -/obj/structure/rack, -/obj/item/storage/toolbox/mechanical{ - pixel_x = -2; - pixel_y = -1 - }, -/obj/item/storage/toolbox/mechanical{ - pixel_x = 4; - pixel_y = -4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/commons/locker) -"xGw" = ( -/obj/machinery/light/small, -/turf/open/floor/wood, -/area/service/library) -"xGy" = ( -/obj/structure/bed, -/obj/machinery/button/door{ - id = "Cabin3"; - name = "Cabin Bolt Control"; - normaldoorcontrol = 1; - pixel_x = 25; - specialfunctions = 4 - }, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/spawner/lootdrop/bedsheet, -/turf/open/floor/wood, -/area/commons/dorms) -"xGF" = ( -/obj/structure/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/commons/vacant_room/office) -"xGK" = ( -/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/dark, -/area/command/bridge) -"xGN" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, -/turf/open/floor/plasteel/dark/corner{ - dir = 1 - }, -/area/engineering/atmos) -"xGS" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/mob/living/simple_animal/chicken{ - name = "Kentucky"; - real_name = "Kentucky" - }, -/turf/open/floor/grass, -/area/service/hydroponics/garden) -"xHd" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/commons/dorms) -"xHm" = ( -/obj/machinery/holopad, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"xHA" = ( -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 8; - name = "Space Loop In" - }, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"xHQ" = ( -/obj/machinery/disposal/bin, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -24 - }, -/obj/machinery/light_switch{ - pixel_x = -24; - pixel_y = -20 - }, -/obj/structure/disposalpipe/trunk{ - 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/command/heads_quarters/hos) -"xIi" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel, -/area/security/prison) -"xIv" = ( -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -26 - }, -/turf/open/floor/carpet, -/area/command/heads_quarters/captain/private) -"xIJ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"xJf" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/lattice, -/turf/open/space, -/area/ai_monitored/aisat/exterior) -"xJi" = ( -/obj/structure/chair/office/dark{ - dir = 1 - }, -/obj/effect/landmark/start/librarian, -/turf/open/floor/wood, -/area/service/library) -"xJj" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/warehouse) -"xKw" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/service/bar) -"xKG" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering/glass{ - name = "Engineering Storage"; - req_access_txt = "32" - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/turf/open/floor/plasteel{ - dir = 1 - }, -/area/engineering/main) -"xKQ" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"xLe" = ( -/obj/machinery/chem_master/condimaster{ - desc = "Looks like a knock-off chem-master. Perhaps useful for separating liquids when mixing drinks precisely. Also dispenses condiments."; - name = "HoochMaster Deluxe"; - pixel_x = -4 - }, -/turf/open/floor/wood, -/area/service/bar) -"xLg" = ( -/obj/structure/table, -/obj/item/folder/red, -/obj/item/storage/fancy/cigarettes, -/obj/item/clothing/mask/gas/sechailer, -/turf/open/floor/plasteel, -/area/security/office) -"xLn" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/commons/locker) -"xLL" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/obj/structure/sign/map/right{ - desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; - icon_state = "map-right-MS"; - pixel_y = -32 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"xLR" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"xMe" = ( -/obj/machinery/light, -/turf/open/floor/plasteel/dark, -/area/commons/cryopod) -"xMh" = ( -/obj/machinery/newscaster{ - pixel_x = -1; - pixel_y = -29 - }, -/turf/open/floor/wood, -/area/service/library) -"xMk" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall/r_wall, -/area/ai_monitored/aisat/exterior) -"xMl" = ( -/obj/machinery/computer/atmos_control/tank/mix_tank{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/visible, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"xMA" = ( -/obj/machinery/camera{ - c_tag = "Atmospherics Tank - O2"; - dir = 8 - }, -/turf/open/floor/engine/o2, -/area/engineering/atmos) -"xML" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -22 - }, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/turf/open/floor/plasteel{ - dir = 1 - }, -/area/engineering/main) -"xMW" = ( -/obj/machinery/light/small, -/obj/machinery/power/apc{ - areastring = "/area/service/library"; - dir = 8; - name = "Library APC"; - pixel_x = -25 - }, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/wood, -/area/service/library) -"xNe" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"xNj" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/carpet, -/area/service/theater) -"xNr" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/turf/closed/wall/r_wall, -/area/engineering/atmos) -"xNC" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/landmark/start/shaft_miner, -/turf/open/floor/plasteel, -/area/cargo/miningoffice) -"xNY" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/landmark/xeno_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/engineering/storage/tech) -"xOe" = ( -/obj/structure/kitchenspike, -/turf/open/floor/plasteel/showroomfloor, -/area/service/kitchen) -"xOk" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/window/westleft{ - name = "Cargo Desk"; - req_access_txt = "50" - }, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/pen, -/turf/open/floor/plasteel, -/area/cargo/office) -"xOn" = ( -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/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/office) -"xOF" = ( -/obj/structure/closet/emcloset, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plating, -/area/commons/fitness/recreation) -"xPf" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/plasteel, -/area/cargo/sorting) -"xPm" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/commons/dorms) -"xPz" = ( -/obj/machinery/door/poddoor/preopen{ - id = "Engineering"; - name = "Engineering Security Doors" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"xPG" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/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/commons/fitness/recreation) -"xPQ" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Dormitories - Aft"; - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/commons/dorms) -"xQv" = ( -/obj/structure/table/wood, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/hos) -"xQC" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/hatch{ - name = "MiniSat Access"; - req_one_access_txt = "32;19" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/dark, -/area/engineering/break_room) -"xQP" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/item/storage/fancy/candle_box{ - pixel_y = 5 - }, -/obj/structure/table/wood, -/turf/open/floor/plasteel/grimy, -/area/service/chapel/office) -"xQZ" = ( -/turf/open/floor/plasteel/dark, -/area/commons/fitness/recreation) -"xRM" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/aisat/exterior) -"xRR" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/commons/storage/primary) -"xSp" = ( -/obj/structure/table/wood, -/obj/item/folder/red, -/obj/item/folder/red, -/obj/item/folder/red, -/obj/item/clothing/glasses/sunglasses/big, -/turf/open/floor/wood, -/area/service/lawoffice) -"xSr" = ( -/obj/machinery/shower{ - dir = 8 - }, -/obj/effect/landmark/start/assistant, -/turf/open/floor/plasteel/freezer, -/area/commons/toilet/restrooms) -"xSU" = ( -/obj/machinery/vending/coffee, -/turf/open/floor/carpet, -/area/service/bar) -"xTt" = ( -/obj/structure/table, -/obj/item/stack/sheet/metal/fifty, -/obj/item/stack/sheet/metal/fifty, -/obj/item/stack/sheet/metal/fifty, -/obj/item/stack/sheet/glass/fifty, -/obj/item/stack/sheet/glass/fifty, -/obj/item/stack/sheet/glass/fifty, -/obj/item/crowbar, -/obj/item/grenade/chem_grenade/smart_metal_foam, -/obj/item/grenade/chem_grenade/smart_metal_foam, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/turf/open/floor/plasteel{ - dir = 1 - }, -/area/engineering/main) -"xTE" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/commons/locker) -"xTO" = ( -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/machinery/conveyor{ - dir = 4; - id = "packageSort2" - }, -/obj/structure/disposaloutlet{ - dir = 4 - }, -/turf/open/floor/plating, -/area/cargo/sorting) -"xTU" = ( -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -22 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/break_room) -"xUs" = ( -/obj/machinery/conveyor_switch/oneway{ - dir = 8; - id = "packageExternal"; - pixel_y = 18 - }, -/obj/effect/turf_decal/loading_area{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/sorting) -"xUO" = ( -/turf/open/space, -/area/space/nearstation) -"xVh" = ( -/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/ai_monitored/aisat/exterior) -"xVl" = ( -/turf/closed/wall, -/area/hallway/secondary/service) -"xVy" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/landmark/start/paramedic, -/turf/open/floor/plasteel/white, -/area/medical/treatment_center) -"xVP" = ( -/obj/machinery/light, -/obj/structure/sign/poster/official/random{ - pixel_y = -32 - }, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"xVW" = ( -/turf/closed/wall/r_wall, -/area/ai_monitored/aisat/exterior) -"xWg" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/turf/open/floor/carpet, -/area/service/library) -"xWZ" = ( -/obj/machinery/light, -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_y = -32 - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/office) -"xXd" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/mix_output{ - dir = 8 - }, -/turf/open/floor/engine/vacuum, -/area/engineering/atmos) -"xXs" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/engineering/gravity_generator) -"xXI" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/dark, -/area/command/bridge) -"xXR" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/light_switch{ - pixel_x = -26 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"xXU" = ( -/obj/structure/table/wood, -/obj/item/phone{ - desc = "Supposedly a direct line to Nanotrasen Central Command. It's not even plugged in."; - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/cigbutt/cigarbutt{ - pixel_x = 5; - pixel_y = -1 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = 21 - }, -/turf/open/floor/wood, -/area/command/corporate_showroom) -"xYn" = ( -/obj/machinery/light/small, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/commons/dorms) -"xYE" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/sink/kitchen{ - pixel_y = 28 - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/service/kitchen) -"xYH" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/computer/monitor{ - name = "Bridge Power Monitoring Console" - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/command/bridge) -"xYV" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/turf/open/floor/carpet, -/area/service/theater) -"xZj" = ( -/obj/machinery/camera{ - c_tag = "Theatre - Backstage"; - dir = 1 - }, -/obj/structure/sign/poster/contraband/random{ - pixel_y = -32 - }, -/obj/structure/closet/crate/wooden/toy, -/turf/open/floor/wood, -/area/service/theater) -"xZy" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/storage/primary) -"yah" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -26 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/commons/dorms) -"yar" = ( -/obj/effect/landmark/start/security_officer, -/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/office) -"yaS" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/storage/primary) -"yaU" = ( -/obj/machinery/camera{ - c_tag = "Engineering - Storage" - }, -/obj/machinery/suit_storage_unit/engine, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/turf/open/floor/plasteel{ - dir = 1 - }, -/area/engineering/main) -"ycy" = ( -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"ycU" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command/bridge) -"ycX" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/obj/machinery/modular_computer/console/preset/command, -/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/command/bridge) -"ydn" = ( -/obj/structure/table, -/obj/item/reagent_containers/food/condiment/saltshaker{ - pixel_x = -3 - }, -/obj/item/reagent_containers/food/condiment/peppermill{ - pixel_x = 3 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"ydB" = ( -/obj/structure/showcase/machinery/microwave{ - dir = 1; - pixel_y = 2 - }, -/obj/structure/table/wood, -/turf/open/floor/carpet, -/area/command/corporate_showroom) -"ydE" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/commons/fitness/pool) -"ydK" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/grimy, -/area/service/chapel/office) -"yei" = ( -/obj/structure/table/wood, -/obj/item/reagent_containers/food/snacks/grown/poppy{ - pixel_y = 2 - }, -/obj/item/reagent_containers/food/snacks/grown/poppy{ - pixel_y = 2 - }, -/obj/item/reagent_containers/food/snacks/grown/poppy{ - pixel_y = 2 - }, -/obj/item/reagent_containers/food/snacks/grown/poppy{ - pixel_y = 2 - }, -/obj/item/reagent_containers/food/snacks/grown/poppy{ - pixel_y = 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/service/chapel/main) -"yet" = ( -/obj/structure/table, -/obj/item/clothing/gloves/color/fyellow, -/obj/item/gps{ - gpstag = "AUX0" - }, -/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/commons/storage/primary) -"yeJ" = ( -/obj/structure/table, -/obj/item/hatchet, -/obj/item/cultivator, -/obj/item/crowbar, -/obj/item/reagent_containers/glass/bucket, -/obj/item/plant_analyzer, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics/garden) -"yeW" = ( -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = 21 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"yeX" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/cargo/storage) -"yfg" = ( -/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/dark, -/area/commons/fitness/recreation) -"yfh" = ( -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/storage/tools) -"yfk" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 6 - }, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"yfq" = ( -/obj/structure/rack, -/obj/item/book/manual/chef_recipes{ - pixel_x = 2; - pixel_y = 6 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/item/stack/packageWrap, -/obj/item/storage/box/donkpockets, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/service/kitchen) -"yfu" = ( -/obj/structure/chair/comfy/black{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/commons/vacant_room/office) -"yfL" = ( -/obj/machinery/door/airlock/silver{ - name = "Bathroom" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/command/heads_quarters/captain/private) -"yfO" = ( -/obj/structure/chair/comfy/black, -/obj/effect/landmark/start/head_of_security, -/turf/open/floor/plasteel, -/area/security/office) -"yfW" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock/external{ - name = "Solar Maintenance"; - req_access_txt = "10; 13" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/solars/port/aft) -"ygd" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/engineering/main) -"ygg" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/oxygen_output{ - dir = 1 - }, -/turf/open/floor/engine/o2, -/area/engineering/atmos) -"ygk" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/circuit) -"yhn" = ( -/obj/machinery/power/apc/highcap/five_k{ - areastring = "/area/tcommsat/computer"; - dir = 4; - name = "Telecomms Control Room APC"; - pixel_x = 24 - }, -/obj/machinery/computer/telecomms/server{ - dir = 8; - network = "tcommsat" - }, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/turf/open/floor/plasteel/grimy, -/area/tcommsat/computer) -"yho" = ( -/obj/structure/chair/comfy/black{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/command/bridge) -"yhD" = ( -/obj/structure/table/wood, -/obj/machinery/newscaster{ - pixel_x = -32 - }, -/turf/open/floor/wood, -/area/service/library) -"yhY" = ( -/turf/open/floor/carpet, -/area/service/library) -"yib" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/obj/machinery/rnd/production/circuit_imprinter, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"yiZ" = ( -/obj/machinery/camera{ - c_tag = "Chapel Office - Backroom"; - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/service/chapel/office) -"yjZ" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/button/door{ - id = "qm_mine_warehouse"; - name = "Warehouse Door Control"; - pixel_x = -24; - pixel_y = 28; - req_access_txt = "48" - }, -/obj/effect/turf_decal/loading_area{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/warehouse) -"yko" = ( -/obj/structure/table/wood, -/obj/item/paicard, -/turf/open/floor/wood, -/area/service/library) -"ykx" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solars/port/fore) -"ykE" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 10 - }, -/turf/open/space, -/area/space/nearstation) -"ykH" = ( -/obj/structure/chair/stool{ - pixel_y = 8 - }, -/turf/open/floor/plasteel, -/area/commons/locker) -"ykI" = ( -/obj/machinery/hydroponics/constructable, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"ylb" = ( -/obj/structure/sign/warning/electricshock, -/turf/closed/wall/r_wall, -/area/engineering/supermatter) -"ylE" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/obj/item/clothing/suit/hooded/wintercoat/engineering, -/obj/effect/turf_decal/delivery, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engineering/main) - -(1,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(2,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(3,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(4,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(5,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(6,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(7,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(8,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(9,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(10,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(11,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(12,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(13,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(14,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(15,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(16,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(17,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(18,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(19,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(20,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(21,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(22,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -xtS -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(23,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(24,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(25,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(26,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(27,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(28,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(29,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(30,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(31,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -anT -aaa -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(32,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -anT -aaa -aaa -aaa -aaf -aaa -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(33,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aqB -anS -aaf -aaf -aaa -anS -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaa -aaa -aaf -aaa -aaa -aaa -aaa -aaa -pBY -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(34,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaa -aaa -anT -aaa -aaa -anS -aaf -anS -aaf -aaf -aaf -anS -aaf -aaa -aaa -aaa -aaf -aaa -aaa -aaa -aaa -aaf -aaf -aaf -aaf -aaf -aVs -rta -aVs -aaf -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaf -aaf -aaf -aaf -aaa -aaa -aaa -aaa -aaa -aaf -aaf -aaf -aaf -aaf -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(35,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaa -aaa -aqB -anS -anS -anS -anS -anS -aaf -anS -anS -anS -aaf -aaf -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaa -aaf -aVs -pAD -aVs -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaf -aaa -aaa -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaf -aaa -aaa -aaf -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(36,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaa -anS -aaf -aaf -anS -anS -apq -anS -aaf -anS -anS -anS -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -qBq -aRA -aRA -aRA -aRA -aVs -lcv -aVs -aVs -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aVs -aVs -aVs -aVs -aVs -aaa -aaa -aaa -aaa -aaa -aVs -aVs -aVs -aVs -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(37,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaa -anS -anS -anS -anS -anS -anS -anS -aaf -anS -anS -anS -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -wOY -aSH -aUb -aVt -mdt -vMG -aVs -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaf -aVs -bvB -aWT -aVs -aaa -aaa -aaa -aaa -aaa -aVs -bKS -aWT -aVs -aVs -aVs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(38,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaa -aaf -aaf -aaf -anS -anS -anS -anS -anS -anS -anS -aaf -aaf -aaf -aaa -aaa -aaa -aaa -aaa -cSP -aaa -aaa -aaa -abu -bsk -aUc -aVu -bvF -lvm -aVs -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaa -aYC -aVu -aWU -aRA -aaa -aaa -aaa -aaa -aaa -aRA -btS -aWU -bOd -bPA -dYu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(39,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaa -aaf -aqB -anS -anS -anS -anS -anS -anS -apq -anS -aaf -aaf -aaf -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -wOY -aSI -aRA -aVv -bvF -ulG -aVs -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaf -aVs -aVw -aWU -aVs -aaa -aaa -aaa -aaa -aaa -aVs -aVw -aWU -bOd -aZZ -dYu -oRL -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(40,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaa -anS -aaf -anS -aaf -anS -anS -anS -anS -anS -anS -aaf -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaa -qBq -aRA -aRA -aRA -aRA -cZf -aWV -kHw -aVs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aRA -bvC -bxt -aYC -aaa -aaa -aaa -aaa -aaa -aYC -bKT -aWU -aVs -aVs -aVs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(41,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaa -anS -anS -anS -anS -anS -avI -anS -anS -anS -anS -anS -aaf -anS -aaa -aaf -aaa -aaa -aaf -aaf -aaf -aaf -aaa -aaf -aaf -aRA -aVx -aWU -aVs -aVs -aVs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aVs -aVs -aVs -bvD -aWU -aVs -aaa -aaa -aaa -aaa -aaa -aVs -aVw -aWU -aVs -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ctm -anT -aai -anT -aai -anT -anT -anT -aqB -anT -anT -anT -anT -aqB -anT -aaf -aaa -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(42,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -anS -anS -anS -apq -anS -anS -aaf -anS -anS -anS -aaf -anS -aDb -aDb -aDb -aDb -aDb -aDb -aDb -aDb -aDb -aDb -aDb -aDb -aDb -aDb -aVu -aWU -djz -aZZ -djC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -djz -bsk -djC -aVu -bxu -aRA -aaa -aaa -aaa -aaa -aaa -aRA -aVu -aWU -aVs -aaf -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -anT -aaa -aaa -aaf -aaf -aaa -aaa -aaf -aaf -aaa -aaa -aaf -aaf -aaa -aaa -aai -aaa -aaa -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(43,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -xyp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -anT -aaf -aaf -aaf -aaf -anS -anS -anS -anS -azg -anS -anS -aDb -aDa -aDa -aDa -aDa -aDa -aDa -aDa -aDa -aDa -cWK -aRD -aSJ -aDb -aVy -aWU -aVs -aVs -aVs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aVs -aVs -aVs -aVu -bxv -aVs -aaa -aaa -aaa -aaa -aaa -aVs -aVu -bMu -aRA -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -anT -aaa -ehp -xCP -mSL -aaf -ehp -xCP -mSL -aaf -ehp -xCP -mSL -aaa -aaa -anT -aaf -aaf -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(44,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaa -aaa -anS -aaf -aqB -anS -anS -aaf -anS -anS -aaf -aai -aDb -aDa -aDa -aDa -aDa -aDa -aDa -aDa -aDa -aDa -cWK -aRE -aSK -cYL -aVz -aWW -aWT -baa -aVs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aVs -bsl -btO -bvE -bxw -aVs -aaa -aaa -aaa -aaa -aaa -aVs -bKU -bMv -aVs -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaf -aaf -aaf -aaa -ehp -hci -mSL -aaa -ehp -hci -mSL -aaa -ehp -hci -mSL -aaf -aaa -anT -aaa -aaa -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(45,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaa -anS -anS -aaf -anS -auC -anS -anS -ayf -anS -aaf -aaa -aDb -aDa -aDa -aDa -aDa -aDa -aDa -aDa -aDa -aDa -cWK -aRE -aSK -cYL -aVz -bvF -aWU -baa -aVs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aVs -bsm -aVu -bvF -bxw -aVs -aaa -aaa -aaa -aaa -aaa -aVs -aVu -bMw -aRA -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaa -aaa -aai -aaf -ehp -hci -mSL -aaf -ehp -hci -mSL -aaf -ehp -hci -mSL -aaf -aaa -anT -aaa -aaa -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(46,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -anS -anS -anS -anS -anS -anS -anS -anS -anS -anS -anS -aaf -aDb -aDa -aDa -aDa -aDa -aDa -aDa -aDa -aDa -aDa -cWK -cXE -aIf -aDb -cZh -bvF -aWU -bab -aVs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aVs -baa -btP -aWX -bxx -aRA -aaa -aaa -aaa -aaa -aaa -aRA -btS -bxw -aVs -aaf -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaf -aaa -aaa -anT -aaa -ehp -hci -mSL -aaf -ehp -hci -mSL -aaa -ehp -hci -mSL -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(47,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaa -apq -anS -anS -aaf -aaf -anS -anS -aaf -anS -anS -aaf -aDb -aDa -aDa -aDa -aDa -obX -aDa -aDa -aDa -lGS -cWM -cXR -cYG -cYP -aVA -aWY -aYE -bac -aVs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aVs -bsn -btQ -bvG -bxw -aVs -aaa -aaa -cVx -aaa -aaa -aVs -aVu -bxw -aRA -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ehp -hci -mSL -aaf -ehp -hci -mSL -aaf -ehp -hci -mSL -aaa -aaa -aaa -anT -anT -anT -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(48,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -anS -anS -anS -aaf -aaf -dne -cfA -dne -aaf -aaf -aaf -aaf -aDb -aDa -aDa -aDa -aDa -aDa -aDa -aDa -aDa -aDa -cWK -cYE -cYK -cYQ -aVB -aWZ -aVs -aVs -aVs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aVs -aVs -aVs -bvH -bxy -aRA -aaf -bCG -bEl -aVs -aaf -aRA -bKV -bMx -aRA -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaa -aai -aaa -aaf -hKV -aaa -aaa -aaf -hKV -aaa -aaa -aaf -hKV -aaa -aaa -aaa -aaa -aaf -aaa -anT -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(49,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaa -anS -aaa -aaa -aaf -dne -avL -dne -aaf -aaa -aaf -aaa -aDb -aDa -aDa -aDa -aDa -aDa -aDa -aDa -aDa -aDa -cWK -dDJ -aSL -aDb -cZq -aWZ -djz -aZZ -djC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -djz -bsk -djC -bvH -bMw -aRA -aVs -aVs -bEm -aVs -aVs -aRA -btS -bMy -alK -alK -alK -alK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaf -aaf -aaf -aaf -anT -aaf -aaf -wdd -wdd -dLs -wdd -wdd -fXZ -sPH -wqU -wdd -fXZ -sPH -sPH -sPH -xgN -aaf -anT -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(50,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -xtS -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaf -dne -avK -dne -aaf -aaf -dne -dne -aDb -aDa -aDa -aDa -aDa -aDa -aDa -aDa -aDa -aDa -cWK -dDK -aSM -aDb -cZq -aWZ -aVs -aVs -aVs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aVs -aVs -aVs -bBl -bxz -aRA -bBc -aVs -sIA -aVs -bHH -aRA -aVu -bMz -bOe -bPC -bRc -alK -aaf -aaf -aaf -aaf -aai -anT -aai -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaa -aaa -aaa -aaa -anT -aaa -aaf -prg -aaa -aaa -aaf -prg -aaf -aaa -aaf -prg -aaa -aaf -aaa -aaa -aaf -aaa -anT -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(51,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaf -aaf -aaa -aaf -dne -dne -pzj -dne -dne -aip -dne -dnk -aDb -aDa -aDa -aDa -aDa -aDa -aDa -aDa -aDa -aDa -cWK -aRF -aSN -aDb -aVC -aXa -aYF -aVs -aaa -aaa -aaa -aaa -djM -aaa -aaa -aaa -aaa -aVs -btR -bvI -bxA -bCN -bbI -bbI -bbI -bbI -bbI -nWb -btT -bMA -alK -bPD -asa -alK -aaa -aaa -aaf -aaa -aaa -aaa -aaf -aaa -aaf -aaa -aaa -aaf -aaa -aaa -aaf -aaa -aaa -aaa -aaa -aaf -aaa -ehp -kDI -mSL -aaf -ehp -kDI -mSL -aaf -ehp -kDI -mSL -aaa -aaa -aaa -anT -anT -anT -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(52,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaf -dne -dne -aip -dne -auD -avL -awM -ako -dqe -doA -dnk -aDb -aDb -aDb -aDb -aDb -aDb -aDb -aDb -aDb -aDb -aDb -aDb -aDb -aDb -aVD -aXb -aYG -aRA -aRA -aRA -aVs -aVs -aVs -aVs -aVs -aRA -aRA -aRA -bxL -bvJ -bxB -bCQ -bCH -bCH -bEn -dic -bHI -bJo -bKW -bMB -alK -dio -asa -alK -bTn -bTn -bTn -bTn -bTn -aaa -aaf -aaa -aaf -aai -anT -anT -aai -anT -aai -anT -aai -anT -anT -aaf -aaf -ehp -kDI -mSL -aaa -ehp -kDI -mSL -aaa -ehp -kDI -mSL -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(53,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaf -dne -aqC -arW -ato -auE -avM -avT -avT -avT -avT -aJi -avT -dss -avM -avT -avT -avT -avT -avT -avT -avT -avT -avT -dtl -aUd -aVE -aXc -aYH -bad -bbI -bbI -bbI -bbI -biu -bjV -bjV -bnK -bqb -bbI -bJr -bvK -bxC -alK -alK -alK -alK -alK -alK -dQg -alK -alK -alK -bPF -asa -bPL -bTn -vdw -bVQ -bXt -bYC -bYC -bYC -bYC -aaa -aaf -aaa -aaa -aaa -aaa -aaf -aaa -aaa -aaa -aaa -aaf -aaa -ehp -kDI -mSL -aaf -ehp -kDI -mSL -aaf -ehp -kDI -mSL -aaf -aaa -anT -aaa -aaa -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(54,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aip -aqD -arX -dne -dne -dne -aRG -aoc -drQ -dne -aip -dne -dst -aDc -dhE -aRG -aRG -cWA -auG -dnd -dhK -dnk -aRG -aSP -dne -dhM -aXd -aYI -bae -bbJ -bcV -bbJ -bgv -biv -bjW -blT -bso -bqc -bso -bso -bvL -bxD -bzw -tre -bCI -bEo -bJj -bbL -bJq -bbL -bbL -bbL -bPG -usf -bSn -bTo -bUO -bVR -bXu -bYD -bZN -jyQ -yfW -kKl -sRw -sPH -fFY -wdd -wdd -wdd -sRw -sPH -kKl -wdd -wdd -sRw -sPH -kDI -mSL -aaa -ehp -kDI -mSL -aaf -ehp -kDI -mSL -aaf -aaf -anT -aaf -aaf -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(55,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -dne -dne -arY -dne -aaf -dne -dne -aip -dne -dne -aaa -dne -dne -dne -dne -aip -dne -dne -dne -dne -dne -dne -aip -dne -dne -aRA -aRA -dne -baf -bbK -bcW -beK -bbK -biw -bjX -blU -aiT -siD -bHJ -lFR -iSt -mcS -alK -auF -bCJ -tUa -alK -apz -aob -alC -aqK -aqO -alC -aGN -bSo -bTp -bUP -bVS -bXv -bTn -bTn -bTn -bTn -row -ydE -ydE -row -row -aaf -aaf -aaa -aaf -aaa -aaa -aaf -aaa -ehp -uQP -mSL -aaf -ehp -uQP -mSL -aaf -ehp -uQP -mSL -aaa -aaa -anT -aaa -aaf -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -xtS -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(56,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aqE -arZ -atp -aaf -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaf -aaa -aaa -aaa -aaf -aaf -aaa -aaa -dne -arZ -bbK -bcX -beL -bgw -bix -bjY -bqd -baE -baE -baE -baE -bqd -nhy -alK -djW -bNd -sZN -alK -amZ -aob -aob -oWR -aob -bPH -aob -bSo -bTn -bTn -bTn -bTn -bTn -oIi -jGg -nBx -usb -jGg -nBx -pXC -row -aaa -lMJ -aaa -aaa -aaa -aaa -aaf -aaa -aaa -aaf -aaa -aaa -aaf -aaf -aaa -aaf -aaf -aaf -aaa -aaa -aaa -aqB -aaa -aaf -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(57,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aqF -doJ -atq -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -dne -doJ -bbK -vZd -beM -bgx -biy -bjZ -blW -ajk -afZ -bHM -ajs -jBe -pHS -kYv -kYv -kYv -kYv -kYv -kYv -kYv -kYv -kYv -kYv -kYv -alC -mEe -alK -dix -aob -amB -jLE -oMe -flY -flY -flY -flY -flY -kTS -ydE -aaa -lMJ -aaa -aaa -aaa -aaf -aaf -aaf -anT -aaf -anT -anT -anT -aqB -anT -aqB -anT -anT -aqB -anT -aqB -anT -aaf -aaf -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(58,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaa -aaa -aaa -aaa -aaf -aaa -aaa -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aqF -doJ -atq -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -dne -bag -bbK -bcZ -beN -bgy -biz -bka -blX -bnR -ahT -ahT -bKX -jPu -rbE -vQX -jUo -uEC -lVL -vMu -qUY -igf -qde -tLu -gCM -kYv -amZ -bSq -bTr -bUQ -bVT -aob -row -jGg -xcR -flY -fVD -flY -flY -jGg -ydE -aaa -lMJ -aaa -aaa -aaa -aaf -aaa -aaa -aaa -aaf -aaa -aaa -aaa -aaf -aaa -aaa -aaa -aaa -aaf -aaa -aaa -aaf -aaa -aaa -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(59,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaj -aag -aag -aag -aai -aag -aag -aag -aaj -aag -aag -aai -aag -aag -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaf -aqF -doJ -atq -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aip -doJ -bbK -bda -beO -bgz -biA -bka -blY -aeD -agQ -ahT -aeD -kQP -rNX -kYv -lZv -lZv -lZv -lZv -kXR -mbl -fmJ -efp -wul -kYv -auF -bSo -alK -bJs -bVU -bXx -row -oao -flY -kea -flY -jjF -flY -jGg -ydE -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaa -aaa -aaa -aaf -aaa -aaa -aaa -aaf -aaf -aaa -aaa -aaf -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(60,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aac -aaa -aaa -aai -aaa -aaf -aaf -aaf -aaa -aaf -aaf -aaf -aaa -aaf -aaf -aaa -aaa -aag -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aqF -doJ -atq -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aip -asi -bbK -bdb -beP -bgA -biz -bkb -blZ -bnR -ahT -ahT -bKX -aju -syk -eBu -hBP -hBP -hBP -hBP -fmJ -sKp -yfu -lZv -uIN -kYv -aoa -bSo -alK -bUR -alK -alK -row -teM -jGg -jGg -klN -gQu -klN -lCe -row -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaa -aaa -aaf -aaa -aaa -aaa -aaf -aaa -aaa -aaa -aaf -aaa -aaa -aaa -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(61,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaa -aaa -aaa -aaj -aaa -nmO -tbc -dDj -aaa -nmO -tbc -dDj -aaa -nmO -tbc -dDj -aaf -aag -aaf -aaa -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaf -aqF -doJ -atq -aaf -aaa -aaa -aaa -aaa -aAA -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aip -doJ -bbK -bdc -beQ -bpt -bcW -bkc -bma -bBh -bEt -aiW -dig -amv -wlH -kYv -tLu -taZ -lZv -lZv -lZv -hKm -irH -rrD -rrD -wxF -bRd -ghM -alK -alK -alK -bXy -row -row -row -row -jji -egv -fTb -row -row -ckN -ckN -ckN -ckN -ckN -ckN -ckN -ckN -aaa -aaf -aaa -aaf -aai -anT -aaf -aaf -aai -anT -anT -aai -anT -anT -aaf -aaf -aaf -aai -anT -aaf -aai -anT -aai -aaa -aaa -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(62,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaa -aaa -aaa -aag -aaf -nmO -ykx -dDj -aaa -nmO -ykx -dDj -aaa -nmO -ykx -dDj -aaf -aaf -aaf -aaf -aaf -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aqG -asb -atr -aaf -aaa -aaf -fKG -fKG -kff -fKG -fKG -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -dne -daX -bbK -bbK -beR -bbK -bcW -dhP -bqd -baE -baE -baE -baE -bqd -xfI -kYv -qmB -lZE -lZv -lZv -lZv -nTV -xGF -efp -uIN -kYv -bRe -xDn -aSO -bUS -bVV -bXz -bYE -bYE -cbp -row -eHR -eSC -lRU -row -cjp -ckO -cmg -cnh -ckN -cpQ -crg -cjt -ckN -aaa -aaf -aaf -aaf -aaa -aaf -aaa -aaa -aaf -aaa -aaf -aaa -aaf -aaa -aaa -aaf -aaa -aaa -aaa -aaf -aaa -aaa -aaf -aaa -aaa -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(63,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaa -aaa -aaf -aag -aaf -nmO -ykx -dDj -aaf -nmO -ykx -dDj -aaf -nmO -ykx -dDj -aaf -aaa -aaf -aaa -aaa -aaf -aaa -aaa -aaa -aaa -aaf -aaf -aaf -aaa -aaf -aaf -aaf -aaf -aaf -dne -dne -asc -dne -aaf -aaa -aaf -fKG -mYU -qHT -rCg -fKG -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -cUZ -aaa -aaa -aaa -aaa -aaa -aaf -dne -baj -dhO -bdd -beS -bgC -biB -bkd -bmb -bEp -bGj -bJp -eiS -jBe -xmb -kYv -qxN -ePx -kSt -lZv -lZv -mmJ -edM -gCM -gdH -kYv -aqO -bSt -dux -dux -dux -dux -dux -dux -cbq -row -row -iUw -row -row -cjq -ckP -ckS -ckP -ckP -ckP -cjt -crh -ckN -aaa -aaf -aaf -lMJ -aaa -aaf -aaa -aaa -cBR -cBR -cBR -cBR -cBR -cDE -cBR -cBR -cBR -cBR -cBR -cBR -aaf -aaf -aaf -aaa -aaa -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(64,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaa -aaa -aaf -aaa -aaa -nmO -ykx -dDj -aaa -nmO -ykx -dDj -aaa -nmO -ykx -dDj -aaf -aaa -aaf -aaa -aaa -aaf -aaf -aaf -aaa -aaa -aaf -aaa -aaf -aaa -aaf -aaa -aaa -aaf -aaa -aip -dnO -asd -dne -aaf -aaa -aaf -fKG -vfw -qHT -hIg -fKG -aaf -aaf -aaf -aaf -uSt -vTM -otk -uSt -otk -eDG -uSt -aaf -aaf -aaf -aaf -dne -asb -bbM -bde -beT -bgD -biC -bke -bmc -bnS -bqj -bsu -btY -maP -xLL -kYv -kYv -kYv -kYv -kYv -kYv -kYv -kYv -kYv -kYv -kYv -alK -bSo -dux -bUT -bVW -bXA -diy -dux -cbr -bYE -cem -avW -cbp -dux -diE -ckQ -ckP -cni -cjt -dbq -ckQ -cjt -ckN -aaf -ack -cwf -ack -aaf -aaf -aaa -aaa -cBR -cCK -cDA -cEE -cFy -cGq -cHl -cIp -cJg -cKe -cKS -cBR -aaf -aaa -aaf -aai -aag -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(65,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaj -aag -aaj -aaa -aaa -nmO -ykx -dDj -aaa -nmO -ykx -dDj -aaa -nmO -ykx -dDj -aaf -aaf -aaf -aaf -aaf -aaf -aaa -aaf -aaf -aaf -aaf -aaf -ahp -aif -ahp -ahq -ahp -ahp -ahp -ahp -aqH -ase -dne -aaf -aaf -aaf -ixL -ixL -lQC -qZg -ixL -fKG -fKG -ixL -aaf -lMK -cMn -osR -lMK -omS -scx -lMK -aaf -aaf -pcd -pcd -pcd -bak -icr -uVQ -beU -lJu -ooH -bkf -bmd -bnT -bqk -bsv -btZ -bvV -bxN -mei -nzp -xEM -mei -smm -iYz -mei -bLb -bME -bOi -bPJ -alK -mEe -dux -iLj -dvt -bXE -abk -dux -dux -dux -cen -dux -cbq -dux -cjs -ckR -cmh -cnj -cjt -ckP -cjt -diJ -dux -dux -dux -cwg -dux -dux -aaf -aaa -aaa -cBR -cCL -cDB -cEF -cFz -cGr -cHm -cIq -cJh -cKf -cKT -dBV -aaf -aaa -aaa -aaa -aai -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(66,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aag -aaa -aaf -aaa -aaa -aaf -wwD -aaf -aaf -aaf -wwD -aaf -aaa -aaf -wwD -aaf -aaa -aaf -aaa -aaa -aaa -aaf -aaa -aaa -aaa -aaa -aaf -aaa -ahp -aig -ajc -akf -alx -amO -anU -ahp -dne -asf -dne -dne -dne -dne -joY -viO -pxg -pxg -fFq -xFb -nPL -ixL -lMK -lMK -vTM -dMm -pcd -dMm -eDG -lMK -lMK -pcd -geZ -hhN -fQn -joV -icr -xTO -xcA -fCh -icr -icr -icr -bnU -bql -bsw -baE -mei -ePg -mei -nzp -xjs -xDD -iZl -nWX -mei -bLc -aod -aGN -aqK -alK -dit -dux -ydn -wmt -bXC -bYH -dux -cbs -cdb -ceo -dux -cdc -dux -diF -cjt -cjt -cjt -ckP -ckP -crh -dxv -ctn -dux -sUM -cwh -dyw -dux -aaf -aaf -aaf -dBN -dBO -cDC -cEG -cFA -dBS -cHn -cEE -cEE -cEE -cEE -cBR -cMt -cNr -aaa -aaa -aaa -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(67,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aai -aaa -lPr -wZC -wZC -bID -kQW -kQW -kQW -kfT -kQW -kQW -dSe -kQW -kQW -kQW -mLH -wZC -wZC -wZC -wZC -sZQ -aaa -aaa -aaf -aaf -aaf -aaa -ahq -ahq -ahp -blt -ahp -amP -anV -apr -aqI -asg -ats -dnu -dne -awP -ixL -kvd -jty -qHT -qHT -gqN -vgW -ixL -qjZ -tLZ -fTZ -sEK -dVV -sEK -ewZ -nKi -nKi -mex -nKi -qDg -wZB -yeX -jRj -kAz -xcA -emC -gub -hZR -nzZ -bnV -bBG -bsx -bua -mei -jKl -ubJ -htO -lrJ -mei -mei -mei -mei -bLd -aof -aob -alC -alK -bSu -dux -bUW -bXE -bXD -bYI -bZO -cbt -oZg -dux -dux -csT -dux -cxQ -ckS -pbc -cnk -ckP -cmi -dvt -csf -cto -dux -cfF -mSd -cxb -dux -aaa -aaa -aaa -cBR -cCM -cDD -cEH -cFB -cGt -cHo -cIr -cJh -cKg -cKT -dBV -cMu -aaf -aaa -aaa -aaa -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(68,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aag -aaa -aaf -aaa -aaf -aaf -spA -aaf -aaa -aaf -spA -aaf -aaa -aaf -spA -aaf -aaa -aaf -aaa -aaa -aaa -vjC -aaf -aaa -aaf -aaa -aaf -aaa -ahq -aih -ajd -akh -aly -amP -anW -aps -aqJ -ash -att -dqe -dne -dne -ixL -jBD -spx -iFO -wJv -jrn -qwP -qbf -jda -dUL -wNI -wNI -wNI -wNI -wNI -wNI -qmL -wNI -wNI -wNI -jTb -ycy -pXj -jmU -lxw -vyB -xUs -mKn -jRj -bnW -bqn -bsy -bub -hyy -wEG -nfs -hVs -jQR -hVs -rqx -wRE -mei -bLe -bMF -apz -aob -alK -bSr -dux -bUX -bUU -gqA -xEf -dux -mWg -cdd -dux -cfC -cdc -dux -cjv -diG -dux -cnl -cox -dux -diI -diK -dux -dux -dux -cwi -dux -dux -dux -dux -aaa -cBR -cCK -cDA -cEE -cFC -cGu -cHp -dBT -cJi -cKh -cKS -cBR -cMv -cNs -aaf -aaa -aaf -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(69,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aai -aaj -aaj -aaa -aaf -nmO -grC -dDj -aaa -nmO -grC -dDj -aaa -nmO -grC -dDj -aaa -aaf -aaa -aaa -aaa -vjC -aaa -aaa -aaa -aaa -aaf -aaa -ahq -aii -ajg -aki -alz -amP -anX -apt -dnk -doJ -atu -aRG -dnZ -awQ -ayk -dKP -xNC -fVa -phk -eHv -jGw -wPl -xIJ -hqy -ifM -mIE -tHz -mIE -mIE -mIE -ifM -mIE -nwc -wzm -hZC -tUN -jRj -kAz -tdX -xPf -emH -nAD -uHq -bnX -bqo -bsz -buc -mei -dkr -mei -nry -mei -qPs -mei -vls -mei -bLf -bJs -aLd -bPK -bRf -bSv -dux -dux -hIt -dux -dux -dux -dux -cde -dux -dux -cdc -dux -dux -dux -dux -bXF -bXF -dux -dux -csh -dux -cuf -cvk -cwh -bXE -bXE -dvq -dux -aaa -cBR -cBR -cDE -cEE -cFD -cGv -cHq -cIs -cJj -cJj -cKU -cLN -cMw -cBR -aaf -aaa -aai -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -xtS -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(70,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -nmO -grC -dDj -aaf -nmO -grC -dDj -aaa -nmO -grC -dDj -aaa -aaf -aaa -aaa -aaa -vjC -aaf -aaf -aaf -aaf -aaf -aaa -ahq -aij -ajf -akj -alA -amQ -anY -ahp -dhu -doJ -atu -dnk -dnk -doJ -ixL -mcu -kEQ -pSm -glp -htx -kTx -ixL -kuG -hqy -jPn -mIE -xsO -mIE -rQy -mIE -jPn -ofI -mIE -mIE -hZC -oUJ -icr -jmU -vMm -wUL -iuZ -ryN -iyy -bnY -bql -bsA -baE -mei -mei -mei -wfY -mei -qgb -mei -etM -mei -bLg -bLf -amU -bPL -alK -bOf -bOv -alC -qhe -dux -bYK -bZP -cbv -cdf -cep -dux -cgI -chZ -chZ -chZ -cBr -chZ -chZ -cpS -chZ -csi -chZ -chZ -cvl -cbx -cfD -ceu -dux -mqC -aaa -aaa -cBR -rRz -cEI -cFE -cGw -cHr -cIt -cEE -cKi -cKV -cLO -cMx -cBR -aaf -aaf -aag -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(71,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaa -aaa -aaa -aag -aaf -nmO -grC -dDj -aaa -nmO -grC -dDj -aaf -nmO -grC -dDj -aaf -aaf -aaf -aaf -aaf -vjC -aaa -aaa -aaa -aaf -aaf -aaf -ahq -aik -anZ -akk -alB -amR -aoO -ahp -aqL -asi -atu -auG -avN -doJ -ixL -ixL -ruI -ixL -ixL -ixL -ixL -ixL -oqK -lvr -rky -mKW -qKo -mKW -dRx -mKW -nUn -mKW -mXL -ieA -fbn -nSP -icr -kPl -icr -tBW -wkC -odb -icr -bnZ -bql -bsB -alK -aoe -bxS -mei -mei -mei -mei -mei -mei -mei -alK -alK -alK -alK -alK -alC -bSs -bzC -bWb -dux -bYL -bZQ -cbw -cdg -ceq -dux -dwb -cia -cia -cia -cia -cia -cia -cDP -cia -cia -cia -ceu -dyg -dvt -bXE -bXE -dvE -dux -aaf -aaf -dBN -cDG -cEJ -cFF -cGx -cHs -cIu -cEE -cKj -cKW -cLP -cMy -cBR -aaa -aaa -aai -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(72,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaa -aaa -aaa -aai -aaf -nmO -grC -dDj -aaf -nmO -grC -dDj -aaa -nmO -grC -dDj -aaa -aaf -aaa -aaa -aaa -vjC -aaa -aaf -aaf -aaf -aee -bbo -bbo -bbo -bbo -akl -ahp -ahp -ahp -ahp -dne -doJ -atD -dnk -dnk -doJ -gyh -vck -yjZ -xbM -vnr -vdx -dRF -uBW -mlf -hSe -jfl -mIE -hpe -mIE -iKS -mIE -lEn -mIE -iKS -utH -mIE -rdv -icr -jmU -ejy -xlv -lFQ -jRc -icr -bnW -bqp -bsC -bud -bvY -bxT -bzC -bzC -dCW -bOv -alC -bSw -bzC -bzC -bzC -bzC -bPM -bzC -bzC -bSp -alC -bSr -dux -bYM -bZP -cbx -cdh -bUV -dux -dwc -cia -cjw -ckU -cmk -cnt -coy -cUH -crj -csj -cia -cug -dyg -bXE -dDw -bXE -rvd -dux -aaa -aaa -cBR -cDH -cEK -cFG -cGy -cHt -cIv -cJk -cKk -cKX -cLQ -cMz -cBR -aaa -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(73,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaa -aaa -aaa -aaj -aaa -nmO -sFR -dDj -aaa -nmO -sFR -dDj -aaa -nmO -sFR -dDj -aaa -aaf -aaa -aaa -aaa -vjC -aaa -aee -aee -aee -aee -agB -ahr -ail -bbo -akm -dnk -amS -dnF -dnk -aqM -asj -atv -auH -avO -awR -gyh -oXj -hhA -xJj -jiU -tOX -ekw -dZJ -jyX -mPQ -iWG -mPQ -pYN -mPQ -mMO -mPQ -gjz -mPQ -mPQ -qVi -sHG -nFS -ooH -fWs -icr -wKY -wuz -peX -icr -boa -bqq -bsD -alK -dhR -aoa -alC -bBq -apz -bOf -bzC -bSp -aoa -aqO -bMG -alC -bPN -apz -bTt -bTv -alC -bSr -dux -dux -dux -cby -bXE -cer -dux -dwb -cia -cjC -cla -cml -cnt -coz -cUH -crq -csk -cia -cuh -cvm -cDK -ceu -cxR -oeQ -dux -aaa -aaa -dBN -cDI -cEL -cFH -cGz -cHu -cIw -cEE -cKl -cKY -cLR -cMA -cBR -aaa -aaa -aai -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(74,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaa -aaa -aaa -aaj -aaf -aaa -aaf -aaf -aaa -aaf -aaa -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -kWh -wZC -abN -aef -aeG -afE -agC -ahs -aim -ajh -akn -alD -amT -dnG -apu -aqN -ask -dpG -auI -avP -awS -gyh -iiG -ijE -lxs -iRr -pzO -gyh -fgK -rbq -mGQ -vNU -doX -kfS -mGQ -eUh -eUh -glJ -iYX -kFi -odv -jgw -lEx -icr -icr -icr -iUm -icr -icr -icr -hiR -bqr -bsE -glc -glc -glc -glc -glc -glc -glc -bGq -glc -glc -glc -glc -glc -glc -glc -glc -glc -glc -cgH -dux -bYN -dux -cbz -bXE -bYJ -dux -dwe -cia -cjB -cpT -cic -cnr -coA -cUH -crl -csl -cia -ceu -ceu -dyg -ceu -dux -dux -dux -aaa -aaa -cBR -cDJ -cEM -cFI -cGA -cHv -cIx -cEE -cKm -cKZ -cLS -cMB -cBR -aaf -aaf -aai -aag -aag -aag -aag -aaa -aaa -aaa -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(75,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aai -aag -aai -aag -aaj -aag -aai -aaj -aaa -aaa -aaf -aaa -aaa -aaf -aaa -aaa -aaf -aaa -aee -aee -aee -aee -agD -aht -ain -aji -dnd -alE -vhj -aRG -alE -dou -dne -dne -auJ -avQ -dne -gyh -nhL -jbE -qOI -fHu -gPZ -gyh -oWn -hOX -vDS -jwx -vPR -teH -gcE -mPQ -igL -eJg -eAy -iOc -tfS -vnS -oSE -mfs -lUV -eAK -pqJ -ucp -nkq -lEx -bnW -bqs -bsx -glc -mWA -yhD -mHR -pMd -vyZ -ndd -fEX -miq -rLH -pYh -xMW -glc -lAF -ijI -nOM -dXi -glc -bSr -bXF -bYO -dux -bXE -dvt -dux -dux -dwb -cia -cjz -ckX -cmm -cnp -coB -vwZ -crm -csm -cia -dux -cwj -cNg -ceu -dux -nho -dux -aaf -aaf -cBR -cBR -cBR -cFJ -cGB -cBR -cBR -cBR -cBR -dBU -cBR -cBR -cBR -aaa -aaa -aai -aaa -aaa -aaa -aaf -aaf -aaa -aaa -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(76,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaf -aaa -aaf -aaa -aaf -aaa -aaa -aaa -aaf -aaa -aaa -aaf -aaa -aaa -aaf -aaa -aaf -aaf -aaf -aee -bbo -bbo -agA -agA -aio -alF -aio -dne -apv -dne -dne -atx -auK -avR -awT -aym -ixc -tGD -xwN -kvJ -qQe -gyh -kYD -kfM -uWi -dfw -eaW -tUP -tpO -iGB -wCb -rgr -umz -fMM -ibn -ivz -nTU -xaX -pvU -qqK -rMU -gyP -xAW -nas -bnV -dCN -apA -glc -hsi -xJi -fEX -pMd -fEX -pMd -fEX -miq -pse -veI -mLh -glc -lBi -tHZ -iMN -sYh -glc -bSu -dux -bYP -dux -cbA -cdi -dux -cdl -dwb -cia -cnm -sos -cid -cnq -coC -cpW -crn -csn -cui -dux -cxS -cNf -fpa -dux -sCN -dux -aaa -aaa -aaf -aaa -aaa -cFK -cGC -cBS -cIy -aaf -aaa -aaa -aaf -aaa -aaa -aaa -aaa -aaf -aaa -aaa -aaa -aaa -aaf -aaa -aaa -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(77,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaf -aaf -aaa -aaf -aaa -aaa -aaa -aaf -aaf -aaa -aaf -aaa -aaa -aaf -aaf -aaf -aaa -aaf -aaf -aaf -aaf -aio -ajj -akp -alG -dhq -aoc -alG -aoc -dne -aty -auL -avS -awU -gyh -gyh -gyh -gyh -gyh -gyh -gyh -xos -lgF -dne -aKZ -dne -xww -hYa -tjW -tjW -usx -aSX -aVM -aXm -aSX -lEx -rlA -lqR -wQJ -hCU -vkg -vsD -usL -bnV -bql -avH -ksO -nkn -nkn -nkn -nkn -nkn -qHV -nkn -nkn -nkn -nkn -wPd -lIt -mqZ -eaK -vIz -gqh -glc -bSr -dux -dux -dux -dux -dux -dux -cfD -dwb -cia -cib -ckZ -cjA -kgN -coB -cpX -cia -lWL -cia -cia -dyg -bXE -dyw -dux -nho -dux -aaa -aaa -aaf -aaa -aaa -cFK -cGD -cBS -aaa -aaf -aaf -aaa -aaf -aaa -aaa -aaa -aaa -fvo -ixH -ixH -ixH -fvo -ixH -fvo -aaa -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(78,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaf -aaf -aaa -aaa -aaa -aaa -aaf -aaa -aaf -aaa -aaa -aaf -aaa -aaf -aaa -aaa -aaf -aaa -aaf -aip -dho -akq -alH -amW -aRG -apw -dod -dne -atz -auM -avT -awV -ayn -ayn -dCl -ayn -ayn -ayn -aFM -qkZ -eOa -aJL -aLa -dne -qwn -eGO -dzl -qzI -aSX -aUj -aVN -aXn -aSX -qBl -jSM -ikm -xhk -tOA -xhk -nbs -wNL -boc -bqt -bsy -wZY -hZI -hZI -mUa -hZI -hZI -qUy -hks -hZI -hZI -hZI -xWg -xAs -xrc -eaK -ifU -fLm -glc -bWc -bXG -bYQ -bZR -cbB -cdj -cse -cdj -cgL -cia -cjB -cro -ckY -cnr -coD -cqa -cnt -cso -cuj -cia -dyj -ceu -ceu -dux -dux -dux -dux -dux -dux -dux -aaa -cFK -cGE -cBS -aaa -aaf -aaa -ker -ker -ker -ker -ker -ker -fvo -gED -voY -jXz -fvo -fgU -ixH -aaa -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(79,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaa -aaa -aaa -aaZ -aaZ -aaZ -aaZ -aaZ -aaZ -aaZ -aaZ -aaZ -aaZ -aaZ -aaZ -aaa -aaf -aio -ajl -akr -alI -amX -aRG -dnZ -aqP -dne -atA -dne -dne -dne -dne -dne -dne -dne -dne -dne -dne -qcH -ojI -dne -aLb -dne -egt -jik -iiK -taj -aSX -lAt -aVO -aXo -aSX -gxW -suL -wZX -tCH -wTI -iVr -iNi -lEx -bnV -bql -awL -glc -fEX -fEX -wtF -exO -yhY -ePw -xmv -egX -fEX -xnG -itP -glc -uvm -xrc -tMJ -tMJ -glc -bWd -bXH -dux -bZS -dvw -cdk -ceu -cfE -dwi -cia -cjC -clb -cmn -cnt -coE -cpZ -hny -csp -cwn -csr -cxT -ceu -cMm -cwm -cwm -cDK -ceu -cBT -cfF -dux -dzK -cFJ -cGF -cBR -clK -bTs -bTs -ker -poW -sbD -tYa -sgy -mgo -fvo -hCX -gzP -hCX -fvo -ttF -fvo -aaa -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(80,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaf -aaa -aaa -aaf -abg -abx -abV -acm -acA -acV -adm -adJ -aeg -aeH -aaZ -aaa -aaf -aio -aio -aks -alJ -amY -aRG -aRG -aqQ -dne -atB -dne -aaa -aaa -aaf -aaa -aaa -aaf -aaa -aaa -mvN -voK -vwK -dne -aLc -dne -mRZ -hDb -hMN -lYW -aSX -aUl -aVP -aXp -aSX -qOf -xOk -nXL -nas -lzo -lEx -lEx -lJd -bod -bql -bsG -glc -qwv -dRL -glc -eRD -yhY -fEb -dqn -egX -fEX -xnG -xGw -glc -fEX -xlU -xzM -uch -glc -div -bXI -dux -dux -cbD -dux -dux -cfF -dwj -cia -cjD -clc -coG -cnt -coF -cEe -cnt -csq -cxc -cia -diM -cwm -cNf -ceu -dvq -cNm -cNU -cwm -cwm -cDK -dzK -cFL -cGG -cHw -clK -cdm -cKn -cLb -tiH -qSW -yiZ -hpt -lMY -ker -fvo -eQZ -sFd -huS -iGI -fvo -aaa -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(81,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaf -aaf -aaf -aaf -abg -aby -abW -acn -acB -acW -adn -adK -aeh -aeI -aaZ -aaf -aaf -aaf -aio -aio -aio -aio -dnM -apy -aqR -dne -akm -dne -aaf -ihw -ihw -ihw -ihw -ihw -ihw -aaf -ecl -uqh -iFq -dne -bOq -dne -tmr -mgb -mEr -gZf -aSX -aUm -aVQ -aXq -aYS -baz -bbW -bdr -bfd -bgU -biN -bks -bdw -boe -bql -bsH -glc -qwv -dRL -glc -fEX -yhY -vfr -iHr -exO -oNf -lmm -rRZ -glc -sCT -dqo -xDT -qAz -uaH -pMX -alC -dux -dvq -cbE -cdl -hcC -hcC -cgO -cia -cia -cia -cia -cia -cia -cqb -cia -cia -cia -cia -gjp -dDw -gwW -cxU -cxU -czN -cxU -cxU -cxU -cDL -dzK -cFM -cGs -cHx -clK -bZT -cKo -ker -ker -ker -ker -ozS -ker -ker -eHw -moO -oQo -moO -kYM -ixH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(82,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaa -aaf -aaf -aaf -aaa -aaa -aaa -aaf -abg -abz -abX -aco -acC -acX -ado -adL -aei -aeJ -aaZ -aaa -aaa -aaf -aaf -aaf -aaf -dne -dne -dne -dne -dne -dhx -auN -aaa -ihw -rKB -sdX -sbt -lwX -hYq -aaa -sfr -rfC -mjX -dne -aLc -dne -dne -dne -dne -dne -dne -dne -dne -dne -dne -baA -bbX -bds -dCI -bgV -biO -bkt -bmk -bof -bqu -bsz -glc -qwv -dRL -glc -xuF -yhY -yhY -fEX -yko -fEX -fEX -pxS -glc -glc -glc -glc -glc -glc -bWd -aqK -dux -bZU -cbF -dvE -hcC -tHe -iun -hqi -ucR -vLV -hcC -rhS -coH -cqc -crr -csr -duH -bXE -cvn -dvE -cxd -cxU -cyN -czO -cAS -cBU -cxU -dDB -dzK -cFN -cGH -cHy -clK -cJl -cKp -ker -fHG -pAA -vkn -hzM -jyj -ker -eai -moO -tYf -moO -oPo -ixH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(83,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaa -aai -aaa -aaf -aaa -aaa -aaa -aax -aax -aax -aax -aax -aax -acY -adp -adM -aax -aax -aax -aax -aaa -aaa -aaf -aaa -dne -dne -dnO -dnk -aqS -dne -atE -auO -aaa -ihw -wXC -qtw -ssp -bNT -qID -hlh -uxs -drM -dqy -aJM -aLe -avT -bfU -aPl -avT -dCx -aSY -avT -avT -aXr -dne -baB -bbY -bdt -bbY -bgW -biP -bku -bml -bog -bqv -bsz -glc -qwv -dRL -glc -wmO -yhY -yhY -xjY -nBX -xDZ -fEX -xMh -glc -eTx -rfr -sBc -glc -alC -bWd -bXJ -dux -bZV -cbG -cdn -hcC -snY -pPG -hZr -qKC -dBf -rov -cnv -coI -cqd -crs -css -cvp -cvp -cvp -cxU -cxU -cxU -cyO -czP -cAT -cBV -cxU -cDM -dzK -cBR -cGI -cBR -clK -diQ -cKq -ker -lcV -uTa -vyp -ydK -gMW -ker -taX -moO -tRj -moO -mWP -ixH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(84,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaa -aaj -aaf -aaf -aaa -aaa -aaf -aay -abh -abA -abY -acp -aax -vla -adq -adN -aej -aeK -afF -aax -aax -aaa -aaf -aaa -dne -dnu -dnP -dod -dnZ -dne -atP -auO -aaa -ihw -pMn -wLu -mKu -fWm -iGh -tKr -lzt -ocU -chK -tLi -tLi -tLi -tLi -siC -tLi -tLi -aSZ -tLi -tLi -aXs -aYT -baC -bbZ -bdu -bbZ -bgX -biQ -bkv -bdw -boh -bqw -bsx -glc -oMn -fEX -fEX -fEX -vXp -yhY -fEX -tfM -jtX -uiQ -qbu -dpM -tiN -nLy -wMe -glc -auF -aXt -aqO -dux -bZW -cbH -cdo -hcC -dWm -mZQ -tIh -eXC -xVy -fgv -cnw -coJ -cqe -crt -css -ctr -tNq -cvo -cwo -cxe -cxU -cyP -czQ -cAU -diN -cxU -cDL -dux -cFO -cGJ -cHz -bTs -cJn -cKr -cLc -lRj -kVZ -xQP -hKA -plV -qQR -wxW -rdE -jSd -tjr -oZU -fvo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(85,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaa -aai -aaa -aaf -aaf -aaf -aaf -aax -abi -abB -abe -abe -aax -ada -adr -adr -aek -aeL -afG -agE -aax -aaa -aaf -aaf -aip -ana -aog -doe -aqT -asl -atG -auO -aaa -ihw -kgW -mSf -snC -pZe -wGU -lQr -sTV -rfC -rSB -rPB -yet -gbw -qBG -igY -gxe -pic -vFz -wYu -tLi -dtP -dne -baD -bca -bdv -bff -bgY -biR -bkw -bdw -bnV -bqw -bsx -glc -qxg -txq -fEX -fEX -yhY -yhY -nEx -glc -glc -glc -glc -glc -lyU -kdR -lKz -glc -alK -bWf -bXK -bXK -bZX -cbI -bXK -hcC -wnb -sJT -fnI -xAR -ltc -hcC -cnx -coK -cqf -cru -css -cts -cul -cvp -cwp -cxf -cxU -cyQ -czR -cAV -cBW -cxU -cDN -cEN -cFP -cGK -cHA -cIz -cJo -cKs -ker -hPG -oKY -dAU -pnA -jld -gad -sFd -jiN -dxj -eCz -jaP -tgT -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(86,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaa -aaf -aaa -aax -aax -aaF -aax -aax -abj -aaR -abZ -acq -acD -abe -ads -adO -ael -aeM -afH -agF -afW -aaf -aaf -aaa -dne -dnd -aoh -dne -dne -dne -atH -auP -aaa -ihw -oen -iHw -dlf -mMW -ihw -aaa -oXt -tVt -egK -psw -nIQ -skX -skX -skX -skX -xZy -wfE -myO -tLi -aXu -dne -baE -baE -bdw -bfg -bgZ -bdw -baE -bmm -boi -bqx -bsJ -uOv -glc -glc -glc -vWI -nxP -nxP -vWI -glc -buf -cVh -aVW -glc -glc -glc -glc -bTD -bUY -bWg -bXK -bYR -bZY -cbJ -cdp -hcC -wVN -qmx -utI -qyd -eAe -hcC -cny -coL -cqg -crv -css -ctt -cum -cvp -cwq -cxg -cxU -cyR -czS -cAW -cBX -cxU -cDO -cxU -cxU -cGL -cxU -cxU -diR -cPW -ker -hdT -ker -ker -ker -omU -ker -kig -moO -dxj -fvo -fvo -fvo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aaa -aaa -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(87,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaa -aaf -aaf -aay -rLV -xIi -abC -jhu -xIi -abC -abC -acr -acE -adb -aaR -aaR -aem -aeN -afI -agG -aax -aaa -aaf -aaa -dne -dne -dne -dne -aqU -asm -atI -dne -aaf -ihw -ihw -ihw -ihw -ihw -ihw -aaf -oaA -fIC -suQ -iFI -kcH -xRR -gSQ -ovB -skX -xZy -wfE -rZb -rPB -aXv -aYU -baF -bcb -bdx -bfh -bdx -bfh -bkx -aYU -boj -bqy -bsK -buj -bwh -bxY -bzI -buj -bCW -buj -buj -cVd -buj -buj -buj -bxY -buj -bwh -bSD -buj -buj -bWh -bXK -bYS -bZZ -cbK -cdq -hcC -hcC -hcC -rlO -nZI -wuo -hcC -cnz -coM -cqh -cnz -css -ctu -cun -cvp -cwr -cxh -cxU -cxU -czT -cAX -cxU -cxU -cDP -cxU -cFQ -cGJ -cHB -cxU -diS -cKs -ker -kpP -ker -gKh -jrm -nHM -ker -fvo -kSV -dxj -fvo -ejd -fvo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(88,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaa -aaf -aaa -aax -abl -roa -ram -aax -iCn -aaR -aaR -aaI -acF -abe -adt -adP -abe -aeO -afJ -aax -aax -aaa -aaf -aaa -aaa -dne -aoi -apB -apC -dne -dne -dne -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -mvN -psx -eeb -rPB -odA -tsn -wZL -mhX -lhH -pri -gfr -yaS -rPB -aXw -aYV -baG -baG -bdy -baG -baG -baG -bdP -baG -bok -bqz -bsL -buk -dCH -bdP -baG -baG -bCX -bEB -baG -bHW -baG -dCH -baG -bdP -baG -baG -baG -bTE -bUZ -bWi -bXK -bYT -caa -cbL -cdr -cew -cfL -bXK -abH -cjK -clj -cmr -cnA -coN -cqi -crw -cst -cqi -cuo -cvq -cws -cxi -cxV -cNh -czU -cAY -cBY -cCN -cDQ -cEO -cFR -cGM -cHC -cxU -cJq -cKs -ker -ker -fvo -iyJ -ker -ker -ker -dtw -wSt -nYK -rJL -lgH -fvo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(89,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaa -aaa -aaa -aax -aax -aax -aax -aax -abm -aaR -aaR -aaI -acG -adc -adc -adQ -adc -aeP -afK -agH -aax -aaa -aaf -dne -dne -dne -aoj -apC -doA -dne -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aDu -aDu -aDu -aIC -tLi -cZN -jCt -jLN -rxt -mbJ -dyl -rbw -ojC -wki -aXx -aYW -baH -bcc -bdz -bfi -bfi -bfi -bky -bmn -bfi -bqA -bqA -bul -bfi -bky -bGw -bfi -bCY -bEC -bHX -bHX -bJC -bHX -bMR -bOn -bPY -bRo -bHX -bTF -bVa -bWj -bXK -bYU -bZZ -cbM -cds -cds -cfM -cgU -cil -cjL -clk -cms -cal -cal -cqj -cal -csu -ctv -cup -cvr -cwt -cxj -cxW -cyT -czV -cAZ -cBZ -cCO -cDR -cEP -cFS -cGN -cHD -cxU -cJr -cKu -cLd -ker -tlp -eWf -sFb -eRk -hAM -qrH -rzp -wFB -qrc -kps -fvo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(90,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaa -aaf -aaa -aax -aaA -aaG -aaP -aax -abn -aaR -abD -acs -acH -abe -adu -adR -abe -aeQ -afL -agI -afW -aaf -aaf -dne -alL -anb -aok -aox -aqV -dne -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -azC -aFV -aHu -aID -tLi -oqV -jCt -jLN -ovB -wBK -skX -oBW -gVv -sMN -aXy -dCE -baI -kDg -kDg -kDg -kDg -kDg -pBK -pBK -gZR -pBK -pBK -hPI -pBK -pBK -bzJ -bBy -bCZ -bED -etj -sqh -sqh -sqh -sqh -sqh -sqh -sqh -sqh -bTG -dCE -bWk -bXK -bYV -cab -cbN -cdt -cex -cfN -cgV -cim -cjM -cll -cmt -cnB -cam -cdz -crx -csv -ctw -cuq -cvs -cwu -cxk -cxX -cyU -rzS -cBa -cCa -cCP -cDS -cEQ -cFT -cGO -cHE -cxU -cJs -cJX -cLe -ker -jwH -mOc -xar -jMs -gdi -lty -wSt -gmh -kMq -vKy -kEn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(91,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaa -aaf -aaf -aay -aaB -aaH -aaQ -aba -abo -abF -aca -act -acI -add -adv -adS -aen -aeR -afG -agH -aax -aaf -aaf -dne -alL -anc -aol -apD -aqW -dne -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -azC -aFW -aHv -aIE -tLi -rii -jCt -sPP -jzm -jzm -jzm -tsF -lvy -nKP -aXz -aYY -baI -kDg -orA -iEG -sMk -wnk -pBK -kHv -tdP -hNB -kyt -jSe -vfz -pBK -abd -bBz -bDa -bEE -sqh -wxd -lVH -dIl -spG -wQF -lVH -lVH -sqh -bTH -aYX -bWl -bXK -bYW -cac -cbO -cdu -cey -cfO -cgW -cin -cjN -clm -gmc -gmc -fwd -nUi -gmc -vGa -gmc -gmc -cvt -cvt -cxl -cxY -cvt -cvt -cvt -cxU -cCQ -cDT -cxU -bTs -cGP -bTs -bTs -bTs -bTs -cLf -ker -yei -ePC -vjq -fpF -mWm -jYM -jlc -gmh -gbJ -vKy -kEn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(92,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaa -aaf -aaa -aax -aaC -aaI -aaR -abb -aaI -abG -acb -acu -acJ -abe -adw -adT -adc -aeS -afM -abe -aax -aiq -ajm -ajm -ajm -ajm -aom -ajm -dne -dne -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -azC -aFW -aHw -aIF -tLi -cVH -pRX -oYR -pqi -qed -vSp -xFE -lRs -vvA -aXA -aYZ -baJ -jgE -lwL -jAr -fem -hUx -pBK -gdF -gCY -mrr -kvK -irY -shf -viK -bzL -bBA -bDb -bEF -jDx -mGL -toC -cZA -xnd -frS -xnd -wTi -rKe -bTI -aYX -bWm -bXL -bXL -cad -cbP -cdv -cez -cfP -bXK -cio -cjO -cln -gmc -tXp -iHl -kcT -sGF -sQx -qLt -gmc -cvu -cwv -cxm -cxZ -cyV -czX -cvt -cCb -cCR -cDU -cER -bTs -cGQ -cHF -cIA -cJt -bTs -cLg -cMb -tmB -wfT -ver -gbJ -gbJ -gbJ -moO -kZR -nOq -mWP -kEn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(93,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaa -aaa -aaa -aay -aaD -aaJ -aaS -abc -abp -acc -acc -acv -acK -abe -abe -abe -abe -aeT -afN -abe -ahu -air -ahx -akt -alM -and -aon -ajm -aqX -dne -aaa -aaa -aaa -aaa -aaa -aaa -aAV -aaa -aaa -aDu -aFX -aHx -aIG -sMN -mVa -sMN -sMN -sMN -sMN -sMN -qfD -sMN -sMN -aXB -aZa -baK -kDg -hXC -iWB -uvZ -ofp -pBK -ucX -vDn -rcc -dSO -gBI -pVV -pBK -bzM -bBB -bDa -bEE -jxm -qsU -eWU -vZL -gFa -fft -gli -dIY -rKe -bTI -aYX -bWj -bXL -mgI -cae -bXL -cdw -cdw -cdw -cdw -eZc -cjP -clo -fwd -pyW -luo -ljs -fdk -vXk -dFh -gmc -cvv -cww -cxn -cya -cyW -czY -cBb -cCc -cCS -cDV -cES -bTs -cGR -cHG -cIB -cJu -bTs -cPY -ker -dna -nYJ -lKv -urB -iqU -urB -vbx -gmh -gbJ -vKy -kEn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(94,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaa -aaf -aaa -aax -aaE -aaK -aaT -aax -abq -abI -abC -acw -acL -abe -adx -adU -ael -aeU -afO -abe -ahv -ais -ahx -aku -alN -ane -aoo -ajm -ajm -ajm -ajo -ajo -avY -ajo -aaa -azC -aAW -azC -aDu -aDu -aFY -aHx -aaa -aaa -aLo -aaa -aaa -aaa -aaa -aaf -aaa -aUv -aVU -aXC -aYX -baL -nkQ -kUS -dlA -gQq -pzF -pBK -pBK -pBK -pBK -poT -nSn -bBW -pBK -bzN -bBB -bDa -bEG -nfP -lWX -wGD -jnW -kzo -jPE -jfL -tlc -ozU -bTI -aYX -bWj -bXL -bYY -caf -cbQ -cdw -ceA -cfQ -cgX -ciq -cjO -clo -ejP -fkj -khu -rcZ -mAa -fyO -jfR -gmc -cvw -cwx -cxo -cyb -cyX -czZ -cvt -cCd -cCT -cDW -cET -bTs -cGS -cHH -cIC -cJv -bTs -cLf -ker -qTB -kVz -mOc -oJk -spZ -oJk -jlc -gmh -kMq -vKy -kEn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(95,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaa -aaf -aaf -aax -aax -aaL -aax -aax -abr -abJ -aaR -aaR -aaR -ade -aaR -aaR -aeo -aeV -afP -abe -ahw -air -ahx -akv -alO -anf -aop -orJ -aqY -asn -atK -ajo -avk -ajo -aaa -aDu -aAX -aCj -aDv -aEI -aFZ -aHy -aaa -aaa -aLp -aJS -aNZ -aPs -aJS -aJS -aaa -aUw -aVV -aXD -aZb -baM -kDg -kDg -bfn -kDg -kDg -bcg -bmr -pBK -pvs -fPJ -gBI -jPT -pBK -bzO -bBB -bDa -bEH -sqh -nqx -eSK -qoW -ijr -ayu -lVH -lVH -sqh -bTJ -aYX -bWj -bXL -bYZ -cag -cbR -cdx -ceB -cfR -cgY -cir -cjN -clo -pXm -lbV -vKw -irx -mXH -hph -ctA -ctA -ctA -ctA -cxp -cyc -ctA -ctA -ctA -cCe -cCe -cDX -cCe -cCe -cCe -bTs -bTs -cJw -bTs -cLi -ker -hwM -kVz -mOc -lgH -fwB -lgH -gmo -hZY -kyq -sjN -fvo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(96,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaa -aaf -aaa -aaa -aaf -aaa -aaa -aay -abs -abK -ace -acx -acM -abe -ady -adT -adc -aeW -afK -agJ -ahx -ait -ahx -akw -alP -ang -aoq -ahx -aqZ -aso -atL -ahx -avZ -ahx -ahx -ajm -ajm -ajm -aDu -aEJ -aGa -aHx -aaa -aJS -aLp -aMG -aOa -aPt -aQz -aJS -aaa -aUv -aVW -aXC -aZc -baN -bcg -bdE -bfo -bhe -biW -bkA -bms -pBK -pYY -oTb -vDo -ghn -viK -bzL -bBB -bDb -bEI -sqh -ijr -ijr -ijr -ijr -ijr -ijr -ijr -jxm -bTK -aZa -bWn -bXL -bXL -cah -cbS -cdw -czE -cfS -cdw -cis -cjO -clp -gmc -gAe -ufW -smH -mpx -dTa -ctA -cur -cvx -cwy -cxq -cyd -cyY -cAa -ctA -cCf -cCU -cDY -cEU -cCf -cCe -cHI -cID -cJx -cID -cLj -ker -fvo -dOA -gcI -fvo -fvo -qfP -qrc -rVx -wDJ -fKu -fvo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(97,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaa -aaf -aaf -aaf -aaf -aaa -urv -aax -aax -aax -aax -aax -abe -abe -abe -abe -abe -dpy -afR -agK -ahy -aiu -ajn -akx -alQ -anh -aor -apE -dCg -anh -anh -auU -awa -awZ -ayw -azD -aAY -aCk -aDw -aDC -aGb -aHx -aaf -aJS -aLq -aMH -aMH -aPu -aQA -aJS -aJS -aUx -aUx -aXE -aZd -baO -bch -bdF -bfp -wIf -biX -bkB -bmt -pBK -eTH -mmH -uGn -fSx -swz -bzP -bBC -bDd -bEJ -jmy -qZP -hmw -vhM -xaj -smu -ooc -vfd -jmy -bTL -aYX -bWj -bXM -bZa -cai -cbT -cdy -ceD -cfT -cgZ -cit -cjQ -clq -gmc -gmc -gmc -cqp -gmc -gmc -ctA -cus -cvy -cwz -cxr -cye -cyZ -cAb -ctA -cCg -cCV -cDZ -cCj -cCj -cCe -cgJ -bTs -bTs -bTs -cLk -cPb -cMR -cNI -cOo -cMR -fvo -fvo -fvo -fvo -fvo -fvo -fvo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(98,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaa -aaa -aaa -aaa -wOY -abL -acf -acy -abL -adf -adz -acf -hyP -aeY -afG -agL -ahz -aiv -ajo -aky -akg -ani -aos -apF -apF -apF -atM -auV -awb -axa -ayx -azE -azE -aCl -aDx -aEK -aGc -aHx -aaa -aJS -aLr -aMH -aOb -aPv -aPu -aRT -aJS -aUy -aVX -aXF -aYZ -baP -bcg -bdG -bfq -bdG -bdG -bcg -bmu -pBK -oLu -ePh -hUO -uDX -pBK -bzQ -bzR -bDa -dDa -jmy -hNx -ttx -iPP -ooo -pOk -eQM -wdy -jZs -bTI -bVb -bWo -bXN -bZb -caj -cbU -cdz -ceE -cfU -cha -ciu -cjR -clr -cmy -ctq -cbu -cqq -crD -csC -ctA -cut -cvz -cwA -cxs -cyf -cyZ -cAc -ctA -cCj -cCj -cDY -cCj -cCj -cCe -cHJ -bTs -cJy -cKv -cLl -diV -cMS -cNJ -cOp -cMV -cMV -cPO -cQm -cQJ -cQY -cRs -kzn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(99,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaa -aaa -aaa -aaa -adG -aaa -aaa -aaa -abu -abM -acg -aax -abe -abe -abe -abe -abe -aeZ -afS -agM -ahA -aiw -ajp -akz -ajQ -anj -aot -apG -apG -apG -atN -alS -awc -axb -ayy -azF -aAZ -aCm -aDw -aEL -aGd -aHx -aaa -aJS -aLs -aMH -guZ -aPw -aQB -aRU -aTi -aUz -aVY -aXG -aZe -baQ -bci -aaf -aaf -aaf -hMQ -hMQ -mZA -hMQ -jFq -jFq -jLc -jFq -pBK -bzR -bBD -bDe -bEK -rcf -rQO -iyh -nZS -dIG -dIG -xsT -wnJ -qSY -bTI -bVc -aXR -bXN -bZa -cak -cbV -cdA -ceF -cfV -cga -civ -cfY -cls -cga -cga -cga -cga -cga -csD -ctA -wvO -cvA -cwB -cxt -cyg -reM -cAd -ctA -dbr -tFJ -dDC -tFJ -cFU -cCe -ctK -bTs -cJz -cKw -cLm -cLm -cLm -cNK -cOq -cLm -cLm -cLm -cMf -cQK -cPv -cPv -cPv -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(100,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaa -aaa -aaf -aaf -aaa -aaa -aaa -aaa -wOY -abe -ach -aax -acN -adg -adA -adV -adc -afa -afT -agN -ahB -ahB -ahB -ahB -alR -ahB -adY -apH -adY -apH -atO -auW -awd -axc -ahx -ahx -ahx -ajm -aDy -aEM -aGe -aHx -aaa -aJS -aLt -aMH -aOd -aPv -aMH -aRV -aJS -aUA -aVZ -aXH -aYX -baQ -bci -aaf -aaf -aaf -wXi -ycX -fWb -plm -fHz -wrH -pDa -vmb -qrM -fnl -jtn -bDf -bEL -jho -qZD -dLC -jbF -gwR -xDS -efB -vfd -jmy -bTM -bVd -bWp -bXO -bZc -cal -cbW -cdB -ceG -cfW -chb -ciw -cjS -clt -cmz -cnH -coT -mYT -cga -csE -ctA -cuv -cvB -cwC -cxu -cyh -cza -cAe -ctA -cCf -cCf -cEa -cCf -cCf -cCe -diC -bTs -cJA -cKx -cLn -cMd -cMd -cNL -cOq -cOT -cLm -cPP -cQo -cQL -cQY -cQK -kzn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(101,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaa -aaa -urv -abe -abe -abe -abL -aax -acO -adh -adB -adW -aep -afb -afU -agO -ahB -aNA -ajq -aix -akA -ank -ajx -apI -ara -asp -anr -auW -awd -axd -ayw -azG -aAY -aCk -aDw -aEN -aGf -aHx -aaf -aJS -aLu -aMH -aMH -aPu -aQC -aJS -aJS -aUx -aUx -aXI -dCE -baQ -bci -aaf -kbX -hSK -hMQ -rOP -juG -inY -pRA -kJM -wER -moW -mpT -hBc -oda -bDg -bEM -jmy -jmy -jSQ -jmy -jmy -rJc -rJc -rJc -jmy -bTN -aYZ -bWq -bXP -bZd -cam -cbX -cdC -ceH -cfX -chc -cix -cjT -cjT -cmA -cnI -coU -cqs -crE -csF -ctA -ctA -ctA -ctA -ctA -ctA -cym -ctA -ctA -cCi -cCW -cEb -cEV -cFV -cCe -cHK -bTs -cPb -qZk -cLo -cLm -cLm -cLm -cOr -cOU -dDG -cPQ -cMf -cQK -cPv -cPv -cPv -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(102,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaf -aaa -aaa -aaf -aaa -abe -acj -aax -acR -adi -adC -adX -ael -afd -afV -agP -ahB -aiy -dBZ -ajr -alT -anl -aou -apJ -arb -asq -ava -axR -awe -axe -ayz -dCj -azE -aCl -aDx -dCo -aGg -aHx -aaa -aJS -aLv -aMI -aOe -aPx -aQD -aJS -aaa -aUv -aWa -aXC -aYX -baQ -bci -aaf -qpJ -gsT -hlQ -pfU -xXI -mzq -qWe -tmg -sjK -tmg -rTj -sjK -hMQ -bDh -bEN -bGF -aaf -aaf -wQw -wbh -qAA -lcH -ekt -vCw -bTG -aYX -aXR -bXN -bZa -can -cbY -dDo -ceI -cfY -chd -ciy -cjU -clu -cmB -cnJ -coV -cqt -cga -cKJ -cyl -cuw -mfP -cwD -cxw -cyl -czb -cAf -cBc -cCj -cCX -cEc -cEW -cFW -cGT -cHL -bTs -cJB -cKz -cLp -cMe -cMT -cMT -cMT -cOV -cMT -cPR -cMf -cQK -cPv -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(103,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaf -aaf -aaf -aaf -abe -wiZ -aax -aax -aaL -aax -aax -aax -afc -afW -aax -adY -aiz -ajt -akB -akA -anm -ajx -apK -arc -asr -anr -auY -awc -axb -ayy -azF -aBa -aCm -aDw -aEO -aGh -aHx -aaa -aaa -aLv -aJS -aNZ -aPy -aJS -aJS -aaa -aUw -aWb -aXJ -aZf -baQ -bci -aaf -myk -dtO -hYY -sIL -uZH -ruc -kBg -tmg -pht -eMV -sIL -eCa -hMQ -bDi -bEO -bzR -bBz -bBz -nDn -tMe -seC -hgE -iui -szz -bTG -aYX -aXR -bXQ -bZb -cao -cbZ -cdD -ceJ -cfZ -che -ciz -cjV -clv -cmC -cnK -coW -cqu -cga -csH -ctC -cux -cvD -cwE -cxx -cyk -czc -cAg -ctB -cCk -cCY -dLe -cEX -cFX -cCe -cxL -bTs -cJC -cKA -cLq -cMf -cMU -cNN -cOs -cOW -cMU -cPS -cMf -cQM -cPv -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(104,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaa -aaa -aaf -aaa -aaa -ack -aaa -aaa -aaf -aaa -aaf -aaf -aaf -aaf -aaf -adY -adY -adY -adY -alV -adY -adY -apL -dCh -ass -adY -auW -awd -axf -ahx -ahx -ahx -ajm -aDz -aEP -aGi -aHy -aaa -aaa -aLw -aaa -aaa -aaa -aaa -aaf -aaa -aUv -aWc -aXK -aZg -baQ -bci -aaf -qnv -oCQ -lnm -sIL -hVx -qWe -jAG -tmg -sjK -jBG -eil -eil -vsz -bDj -bEN -bGG -bIi -bJN -wQw -gdT -kQh -xCC -fOS -rNT -bTO -bVe -bWr -bXN -bZa -cap -cca -cdE -ceK -cfX -chf -ciA -cjW -clw -cga -cnL -coX -cnL -cga -cbC -cyl -cuy -cvE -cxv -cxy -cyl -czd -gtn -ctB -cCe -cCe -cCe -cEY -cCe -cCe -cgN -bTs -cJD -cKB -cLr -cMg -cMV -cMV -cMV -cOX -cMV -cPT -cMf -cQK -cPv -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(105,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaf -aaf -ack -aaf -aaf -aaf -aaf -aaf -aaf -aeq -aeq -aeq -aeq -aeq -bgB -akC -alU -ann -adY -apM -ard -ast -adY -auW -awd -axd -ayw -azH -aAY -aCk -aDw -aEO -aGg -aHx -aIH -aHx -aLx -aHx -aHx -aHx -aHx -aHx -aIH -aUB -aWd -aXL -aZh -baQ -bci -aaf -hMQ -dal -sIL -mTN -jZA -tdQ -iLV -pHb -sjK -qVT -eil -yho -woJ -bDk -bEP -bGH -bGH -bJO -nDn -uEe -hVw -miC -ydB -nDn -cMQ -bVf -bWs -bXR -bZe -bZb -ccb -cdF -bZa -cga -cfX -cga -cfX -cga -cga -cnM -coY -coY -cga -csI -ctD -cvF -sBC -cyl -cyi -cyl -cze -ctB -cBd -cCl -cCZ -cEf -cEZ -cFY -bTs -cHM -ctH -cPb -cKC -cLr -cLm -cLm -cLm -cLm -cOq -cLm -cPQ -cMf -cQK -cPv -cPv -cPv -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(106,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaa -aaf -aeq -aeq -aab -agR -ahE -aiA -akD -akD -dCa -ano -apH -apN -are -asu -atQ -auZ -awf -axa -ayA -azE -azE -aCl -aDx -aEQ -aGj -aHz -aII -aJT -aLy -aMJ -aHz -aHz -aQE -aJT -aII -aUC -aWe -aXM -aZi -baR -bci -aaf -fLW -mAV -lnm -sIL -weN -sIL -eil -vTw -sln -sIL -lnY -lBR -xof -bDk -bEP -bGI -bGH -bJP -nDn -xXU -lUO -xGi -ksp -vCw -bTP -bVg -bWt -bXS -bZf -caq -caq -cdG -caq -cgb -chg -acd -chg -clx -cmD -cnN -coZ -coZ -crF -csJ -ctE -dDv -cuA -cwF -cxz -cyn -czf -cAh -cBe -chg -chg -cEg -cFa -cFZ -cGU -cHN -cIE -cJE -cKD -cLs -cMh -cMW -cMh -cMh -cOY -cPs -cPU -cQp -cQN -cQY -cQK -kzn -cYJ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(107,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaa -aaf -aaa -aeq -aeq -aff -afY -afY -ahD -ahP -ajv -akE -alW -anp -aow -ans -arf -asv -atR -azb -azq -axg -ayy -azF -aBb -aCm -aDw -aEN -aGk -aHA -aIJ -aJU -aGk -dCr -aHA -aPz -aJU -aRW -aTj -aUD -aWf -aXN -djB -baS -bci -aaf -qpJ -xYH -qvR -dti -pGH -hyb -mqq -msx -ucy -mTN -tfR -rcO -gFo -bDl -bEQ -bGJ -bIj -bJQ -hEZ -snU -kQh -vss -rye -vCw -bTP -bVh -bWu -aWf -bZg -car -car -cdH -ceL -ceL -ceL -ceL -ceL -ceL -ceL -cnO -ceL -ceL -crG -csK -ctF -car -czg -car -cxA -car -car -cAi -ctF -car -car -car -cFb -czg -car -cHO -cIF -cJF -cKE -cLt -cMi -cMX -cNO -cOt -cOZ -cPt -cLm -cMf -cQO -cPv -cPv -cPv -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(108,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaa -aaf -aaa -aeq -aes -afh -agb -agT -ahG -aiC -ajw -akF -alZ -anq -aoA -aoy -arg -asw -anr -auW -awg -axh -ahx -ahx -ahx -ajm -aDA -aER -aGl -aHB -aIK -aJV -aIK -aHB -aHB -aPA -aJV -aHB -aHB -aUE -aWg -aXO -aZk -baT -bci -aaf -qnv -hfd -lnm -sIL -jZA -sHC -eil -wDZ -rYK -fnl -knM -gcZ -gJm -bDm -bER -bGK -bGH -bJO -nDn -xnc -wmK -xgL -eVz -vCw -bTQ -bVi -bWv -bXT -bZh -cas -cas -cdI -cas -cgc -chh -chh -chh -cly -cmE -cnP -cpa -cpa -crH -csL -ctG -cgc -qee -chh -cxB -cyo -czh -cAj -ctG -cCm -cpa -cEh -cFc -umv -chh -cvG -cIG -cJG -cKF -cLu -cMj -cMY -cMT -cOu -cPa -cPu -cPV -cQq -cQP -cQY -cRt -kzn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(109,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaa -aaf -adD -aeq -aer -afg -aga -uJq -ahF -aeq -ajx -akG -ama -anr -adY -adY -dhv -anr -adY -avb -awh -axi -ayB -azI -aBc -aCn -aDB -aES -aGm -aHC -aHD -aJW -aHD -aHD -aHD -aHD -aQF -aRX -aTk -aUF -aWh -aXP -aZl -baT -bci -aaf -hMQ -jZI -sIL -sIL -jZA -jUl -fnn -kWa -tmg -kUx -qaa -hzs -ezp -bDk -bEP -bGH -bGH -bJP -nDn -uEe -opx -hgE -hFD -nDn -bTP -bVj -bWw -bXU -bZi -bZk -ccc -ccc -bZj -cgd -cge -cgd -cge -cgd -cgd -cnQ -cpb -cqv -cgd -csM -ctH -bTs -cvH -cvH -cxC -cyp -cvH -cAk -cBf -cvH -cqv -cEi -cCq -cCq -cCq -cCq -cIH -cCq -cCq -cLv -cPb -cMZ -cNP -cOv -cPb -cPv -cPb -cPv -cPb -cPv -cPv -cPv -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(110,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaa -aaf -aaa -aeq -aex -afg -agd -agU -ahH -aeq -ajy -akH -amb -ans -eTP -dCf -ajz -ajz -atS -auW -awi -axj -aiq -azJ -aBd -aCo -aDC -aET -aGn -aHD -aIL -aJX -aLz -aMK -aOf -aPB -aQG -aRY -aTl -aHD -aWi -aXQ -aZm -baT -bci -aaf -fLW -mgw -lnm -mTN -wqj -fHz -jon -tmg -tmg -wrY -uiF -eil -vsz -bDn -bES -bGL -bIk -bJR -wQw -bxG -cUm -hxo -jfD -fSe -bTR -bVk -bWx -bXV -bZj -cat -ccd -ccd -ceN -cgd -chi -ciB -cjX -clz -cgd -cnR -cpc -cqw -cgd -csN -cLD -cuB -cvI -cwG -cxD -cyq -czi -cAl -cBg -cCn -cDa -cEj -cCq -cGa -cGV -cHP -cII -cJH -cCq -cLw -cPb -cNa -cNQ -cOw -cPb -aaf -aaa -aaa -aaf -aaa -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(111,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aav -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aav -oRp -aaa -aaa -aaa -aaa -aaf -aaa -aeq -aeq -afX -agc -dBX -agc -aaW -ajz -akI -amc -ant -ame -apO -ari -asx -aiB -avc -awj -axk -ayC -azK -aBe -aCp -aDD -aEU -aGo -aHD -aIM -aIR -aIR -aML -aOg -aPB -aQH -aQH -aIT -aHD -aWj -aXR -aYX -baT -bci -aaf -myk -gRE -nlr -sIL -uZH -ruc -oiY -tmg -iwy -gwZ -uDl -hiZ -hMQ -bDo -bET -bzR -bIl -bIl -nDn -wzo -uWO -qur -jra -szz -bTS -aYX -aXR -bXW -bZk -cau -cce -ccd -qBh -cgd -chj -ciC -cjY -clA -cmF -cnS -cpd -cqx -cgd -cLh -ctJ -cuC -cvH -cwH -cxE -cyr -cwH -cAm -cBg -cCo -cDb -cEk -cFd -cGb -cGb -cHQ -cIJ -cYc -cCq -cLx -cPb -cNb -cLm -cOx -cPc -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(112,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -xtS -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaa -aaf -aaa -aaf -aeq -aeq -aad -ahC -ahI -aeq -ajA -akJ -amc -anu -aoz -apQ -arj -asz -ahB -avd -awk -axl -ahx -ahx -ahx -ajm -aDE -aEV -aGp -aHE -aIN -aJY -aLA -aMM -aOh -aPB -aQH -aQH -aTm -aHD -aWk -aXS -aYX -baT -bci -aaf -myk -xeF -iwY -pJi -sKT -uGy -fHz -tmg -tmg -tmg -rik -tmg -hMQ -kAB -bEU -bGF -aaf -aaf -wQw -gFw -qka -mxh -lMS -vCw -bTS -aYX -aXR -bXV -bZj -cav -ccf -dDp -ceO -cgd -chk -ciD -cjZ -clB -cmG -cnT -cpe -cqy -cgd -csO -diL -cuD -cvH -cwI -cxF -dDz -czj -cAn -cBh -cCp -cDc -cEl -cFe -cGc -cFg -cHR -cIK -cJJ -cCq -cgM -cPb -cNc -cNR -cOy -cPd -aaa -aaa -aaf -aaa -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(113,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaa -aaf -aaf -aaf -aaf -aeq -aeq -aeq -aeq -aeq -adY -akK -alX -ahB -aoA -ahB -ark -asA -ahB -ave -awl -axm -aiq -azL -aBf -ajm -aDF -aEW -aGq -aHE -aIO -aJZ -aIR -aIR -aOi -aPB -aQH -aQH -aTn -aHD -aHD -aXS -aYX -baT -bci -aaf -rUE -lUB -hMQ -vtZ -sAH -rYE -ycU -ros -pHk -kLD -vWf -uWj -oOW -bDq -bEV -lJx -lJx -lPm -lJx -eGP -eGP -eGP -eGP -lJx -bTT -aYX -bWy -bXX -bZl -caw -ccg -cdJ -ceQ -cge -chk -ciE -cka -clC -cmH -cnU -cpf -cqz -cgd -csP -bTs -cuE -cvH -cwJ -cxG -cys -czk -qBv -cBi -cCn -cDd -lOi -cFf -cFg -cFf -cHR -cIL -cJK -cCq -cgM -cPb -cNd -cNS -cOz -cPb -aaa -aaa -aaa -aaa -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(114,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaa -aaf -aaa -aaa -aaf -aaf -aaf -aaf -aaf -ixP -jyd -gRJ -dtF -xns -xsc -tYn -skf -ncN -icE -avf -awd -axn -ayD -azM -aBg -dBH -aDG -aEX -aGr -aHE -aIP -aKa -aLB -aMN -aOj -aPC -aIT -aRZ -aIT -aUG -aHD -aXS -aYX -baT -bci -aaf -aaf -aaf -wXi -vkY -lde -xGK -mCa -swT -fnl -iuy -uuu -swK -jtn -bDr -bEW -eDZ -kBm -lNN -pCP -rom -mgG -oav -tOg -lJx -eMh -bVl -bWz -bXY -bZm -cax -cch -cdK -uRM -cgf -rzX -ciF -ckb -clD -cmI -cnV -cpg -cqA -crI -csQ -ctL -ctL -ctL -ctL -ctL -ctL -ctL -ctL -ctL -cCq -cDe -cEm -cFg -cFg -dDE -cHR -cIM -cJL -cKG -cLy -cPb -cPb -cPb -cPb -cPb -aaa -aaa -aaa -aaf -aaf -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(115,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaa -aaf -aaf -aaf -tsH -tsH -qin -cfv -tsH -tsH -vNx -hSj -kYt -hyV -hyV -sVS -glN -ktz -qNe -auY -awm -axo -ayE -azN -aBh -aCq -aDH -aEY -aGs -aHE -aIQ -aKb -dCq -aIR -aOi -aPB -aQH -aQH -dCz -aUH -aTk -aXT -aZn -baT -bci -aaf -aaf -aaf -hMQ -hMQ -hMQ -skn -nUt -hMQ -sKl -sKl -rio -sKl -xhF -bDs -bEX -oMG -kSp -vbz -hEC -hEC -hEC -wBP -siT -lJx -bTV -bVm -bWA -bXV -bZj -cay -cci -cdL -ceR -izu -chm -ciG -ckc -clE -cmJ -cnW -cph -cqB -cJm -csR -ctL -cuF -cvJ -cwK -cxH -cyt -czl -cAp -cBj -cCq -cDf -lOi -cFf -cGd -cGW -cHS -cIN -cJM -cCq -cgM -gNe -cwc -cNe -cNT -pSX -ack -ack -aaf -aaf -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(116,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaf -aaf -aaa -tsH -tsH -eyO -qJh -okn -xHQ -tsH -icE -wCV -rUl -mCT -kPU -xLg -ibO -qMs -hYA -avg -awn -axp -dBF -azO -aBi -axw -ajm -ajm -ajm -aHE -aIR -aKc -aLC -aMO -aOk -aPB -aQH -aQH -aTo -aUI -aWl -aXU -aZo -baU -sKl -sKl -sKl -sKl -sKl -tWo -sKl -sKl -sKl -sKl -gLV -geY -wIw -lpm -sKl -bDj -bEY -qiH -muJ -kMC -fox -jTX -pzk -bBk -lyF -lJx -bTW -dCE -bWA -bXV -bZk -caz -cci -cdM -ceS -cgg -cgd -cgd -ckd -cgd -cgd -cnX -cIm -cnX -cgd -csS -ctM -cuG -cvK -cuG -cxH -cyu -czm -cAq -cBk -cCq -hoq -cEn -cFi -cGe -cGX -cHT -cFh -cFh -cKH -cLz -wFH -bTs -bTs -bTs -bTs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(117,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaa -aaf -aaa -tsH -drT -pzg -puw -jMP -fwt -eaP -sVK -mPo -fLq -mwM -yar -frn -rns -gXV -gzm -avh -awo -axq -dBG -azP -aBj -aCr -avk -avk -avk -aHD -aIS -aKd -aIR -aMP -aOl -aPD -aSa -aSa -aTp -aIT -aTk -aXS -dCE -baV -sKl -gCx -ojs -fzZ -mLk -nGl -mLk -uzX -fsX -huJ -cVF -pok -vNi -klX -rio -bDj -bEZ -lJx -cYg -aPa -kHh -qWh -vzO -noS -tIF -lJx -bTX -aYX -bWB -bXZ -bZj -caA -ccj -cdN -ceT -cgh -cAM -ciH -cke -clF -dbH -cnY -cpj -cqC -cgo -cLB -ctL -cuH -cuG -cwL -cxI -cyu -czn -cAr -cBl -cCq -cQD -cEo -cFj -cGf -cGY -cHU -cIO -cJN -cCq -cgN -cMl -bTs -lMJ -aaf -aaf -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(118,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaa -aaf -aaa -gtm -ruy -sXr -nee -jcF -sOM -dlG -jMq -wNF -tqm -hrn -fLq -sRz -owz -qmn -qNe -auW -awp -axr -ayF -ayF -ayF -pvk -ayJ -ayJ -aGt -aHF -aIT -aKe -aIR -aIR -aOm -aPB -aQJ -aIT -aIT -aUJ -aHD -aXS -aYX -baW -iNf -eXH -uOc -gPe -mLk -qFr -mLk -mDF -qCY -jyl -eCc -qVZ -jPX -wIw -sKl -bDu -bFa -lJx -lJx -msf -jdL -lJx -jhV -dPX -jdL -lJx -bTY -aZa -bWC -bSS -bZn -caB -ccj -cdO -ceU -cgi -cDh -ciI -ckf -clG -dbI -cnZ -cpk -cqD -cgo -csU -ctL -ctL -cvL -ctL -ctL -ctL -cvL -cAs -cBm -cCq -cDi -cDi -cDi -cDi -cGZ -cHV -cIP -cCq -cCq -cLA -bTs -bTs -lMJ -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(119,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aav -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaa -aaf -aaf -fmY -pHm -uHd -slA -wcl -eQY -gWb -wWO -uCo -yfO -tNG -wGw -etg -oGd -xWZ -icE -auW -awp -axs -ayF -azQ -aBk -pjG -aDI -ayJ -ayJ -aHD -aHD -aHD -aHD -aMQ -aHD -aHD -aHD -aRX -aTk -aHD -aHD -aXV -aZa -baX -sKl -iuD -wIw -tJQ -mLk -yfL -mLk -pIp -ogf -tEo -tqG -eHa -vHG -rhx -sKl -bDj -bFb -bGQ -lJx -oSo -qfi -mYt -ott -nMV -tim -oOi -bTI -aYX -bWB -aVU -bZo -bZo -cck -cdP -bZo -bZo -chp -iTm -ckg -clH -bZn -coa -cpl -cqE -crK -csV -ctN -cuI -cvM -cwM -caw -cyv -czo -cAt -cBn -cCr -cDj -caw -cFk -cGg -cHa -cHW -cIQ -cJO -cKI -cQr -cQR -cRa -cSd -cRe -cRe -cRe -cRe -cRe -cRe -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(120,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aav -oRp -oRp -aaa -aaa -aaa -aaa -aaf -aaa -uXM -oZv -uSn -rtZ -xpY -pKx -rGC -rxy -ejY -imk -gLI -vvt -keY -owz -tQS -vfj -auW -awq -axq -ayG -azR -aBl -aCt -aDJ -aEZ -aGu -lNc -vsk -nvq -jSv -sPC -hEm -lNc -jDV -rLU -kZs -rLU -kYY -aXS -aZp -baT -sKl -tbN -uCe -qrb -tJe -xrJ -vCg -eAW -fcg -gMC -hVY -oxr -ffN -xIv -sKl -bDv -bFc -bGR -lJx -sfl -vqN -sGN -wzp -med -tim -oOi -bTI -aYX -bWB -aVW -bZo -caC -ccl -cdQ -ceV -pky -chq -ciK -ckh -clI -bZn -cob -cpm -cqF -crL -csW -ctO -cuJ -cvN -dDy -cwN -cyw -czp -cAu -cBo -crL -cwN -dDy -cFl -cGh -cHb -cHX -cIR -cJP -cPX -cQt -cQZ -cRc -cRf -cYT -cRg -cYT -cYT -djg -cRe -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(121,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaf -aaf -aaa -tsH -kZm -sbM -oSD -jMP -nXe -rdG -cVA -nQo -rbG -kGl -fxY -wZK -qCl -pEN -pZP -auY -awr -axt -ayH -azS -aBm -aCu -aDK -aFa -aGv -lNc -xxq -mJg -xSp -qXX -lZK -lux -geK -lHj -xLn -vAp -eKY -aXW -aZq -baY -sKl -hTd -wIw -hFt -iOZ -mXi -mLk -sEp -dSR -kAr -stk -qmj -pqa -goF -iNf -bDw -bFd -bGS -lJx -mYt -qfi -oSo -rLS -rvr -wud -oOi -bTI -aYX -bWB -aVW -bZo -caD -ccm -cdR -ceW -cgk -chp -cgo -cgo -cgo -cgo -coc -cpn -cqG -crM -csX -ctP -cuK -cvO -cwO -cxJ -cyx -czq -cAv -cBp -cCs -ctP -cEp -cFm -cGi -cHc -cHY -cIS -cJQ -cgo -cQs -cQS -cRb -cRe -cRe -cRe -cRe -cRe -cZa -cRe -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(122,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaa -aaf -aaa -tsH -tsH -vdB -xQv -vCM -xzr -tsH -icE -okp -wts -ooe -uVk -nmx -owz -nUI -icE -auW -aws -axu -ayI -azT -aBn -aCv -aDL -ayJ -ayJ -lNc -dPl -jzU -jzU -dgy -rCx -lJX -ujE -dsd -xaV -tMO -kTv -aXX -aYX -baU -sKl -sEG -oxn -izJ -oTY -mXi -mLk -mLk -sKl -sKl -sKl -bwG -sKl -sKl -sKl -bDj -bEW -lJx -lJx -lJx -lJx -lJx -lJx -bQx -lJx -eDZ -bTJ -aYX -bWD -bYa -bZo -caE -ccn -cdS -ceX -cgl -bZo -dwv -cki -clJ -cmL -ccd -cpo -cqH -rrX -pfi -pfi -kFZ -lja -nSv -nSv -cyy -czr -cAw -cBq -cyy -cyK -cyK -cAP -cyK -cHd -cHZ -cIT -cIT -cIg -dAw -dvY -dvY -aaa -aaf -aaa -aaa -cRe -cZa -cRe -aaa -aaa -aaa -aaf -aaa -aaa -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(123,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaa -aaf -aaa -aaa -tsH -tsH -wlK -cfv -tsH -tsH -pct -hjA -pdZ -iQz -iQz -iQz -dVE -jzr -sbZ -avi -awt -axv -ayF -azU -aBo -aCw -aDM -aFb -aGw -lNc -vTY -xEu -vGM -jcc -kKq -lDU -tnA -gTN -our -jAK -kYY -aXS -aYX -baT -sKl -vDJ -fgO -whE -sbY -pSE -mLk -hZK -sKl -bth -buK -bwH -byu -bAh -bBO -bDx -bFe -bGT -bIq -bKb -bLG -bNs -bON -bQy -bRN -bSP -bUa -bVn -bWE -bSS -bZo -bZo -bZo -bZo -bZo -bZo -bZo -ciL -ckj -dwL -cgo -cod -cpp -cqI -jiG -kmT -eTY -ely -oAS -pgP -nSv -cyz -czs -cAx -cFr -cCt -cyK -cEq -cEq -cEq -cHe -cIa -cIU -cJR -cIg -dAx -dwv -dvY -aaa -aaf -aaa -aaa -cRe -cZa -cRe -aaf -aaa -aaa -aaf -aaf -aaa -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaa -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(124,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -ixP -tGc -xOn -mxL -hxi -ofn -hXr -kwq -inc -pOS -ajm -awu -axw -ayF -azV -aBp -aCx -aDN -ayJ -aGx -aHH -dzx -kPW -dKg -rEX -uYl -lNc -wUF -mBW -cVg -jUz -oiv -aXS -aYX -baT -sKl -sKl -sKl -sKl -sKl -sKl -sKl -sKl -sKl -bti -bcg -bcg -bcg -bcg -bBP -bDy -bFf -bGU -bcg -bcg -bcg -bcg -bcg -bcg -bcg -bcg -bTS -aYX -bWF -bYb -cmZ -diA -crJ -dDq -ceY -cgm -chr -ciM -ckk -clL -cmM -coe -cpq -cqJ -vXa -sDM -dvg -sDM -wST -vjL -nSv -cyA -czt -cAy -cBs -cCt -cyK -cEr -cEr -cEr -cHe -vWm -cIV -cJS -cIg -dxQ -dzc -dvY -aaf -aaf -aaf -aaa -cRe -cZa -cRe -cRu -cRi -cRi -cRi -cRi -aaf -aaa -aaf -aaf -aaa -aaa -aaf -aaf -aaf -aaa -aaf -aaf -aaf -aaa -aaa -aaf -aaf -aaf -aaf -aaf -aaa -aaf -aaf -aaa -aaf -aaf -aai -aag -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(125,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaa -aaa -aaf -aaa -aey -aey -aez -aey -aey -aiJ -aiJ -akW -amp -aiJ -uxT -pOS -hmh -pOS -pOS -avj -awv -axx -ayJ -ayJ -ayJ -ayJ -ayJ -ayJ -dCp -lNc -lNc -lNc -lNc -lNc -lNc -lNc -qwb -kYY -fzt -jUz -aWp -aXS -aYX -baZ -bcl -bdO -bfE -bhA -bjl -bkQ -bmJ -boJ -bra -btj -buL -bdO -byv -bcl -bBQ -bDz -bFg -bGV -bGV -bKc -bLH -bNt -bOO -bQz -bRO -bSQ -bUb -bVb -bWG -bSS -bSS -bSS -bSS -bSS -ceZ -cgn -dvY -dww -ckl -diH -cgo -cof -cpr -cci -nSv -eXu -hgy -qIp -jwE -iGV -nSv -cyB -czy -cAz -cBt -cCu -cyK -cEs -cFn -cFn -cHe -cIc -cIW -cJT -cIg -diT -cMp -dxk -aaa -aaa -aaf -aaf -cRe -cZa -cRe -cRi -dbX -dcg -dcs -cRi -dcE -cRi -cRi -cRi -cRi -cRi -cRi -cRi -cRi -cRi -cRi -cRi -cRi -cRi -dlV -dlV -dlV -dlV -aaf -aaa -aaa -aaf -aaa -aaa -aaa -aaf -aaa -aag -aag -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(126,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aav -oRp -aaa -aaa -aaa -aaa -aaa -aaf -aaa -aey -afp -agn -agn -agn -aiK -ajL -akX -amq -aiJ -rNc -pOS -nQV -gON -nkV -avk -aww -axy -ahx -azW -aBq -aCy -aDO -aCy -aGy -aCy -aIZ -aKk -uew -tLk -oTr -saf -tnA -mBW -cVg -jUz -aWq -aXY -aZr -bba -dCH -bdP -baG -bhB -bjm -bkR -aWf -aWf -brb -btk -aWf -bwI -aWf -dCT -bBR -bDA -bFh -bGW -bIr -bwI -aWf -aWf -aWf -aWf -dCT -aWf -aWf -bVo -bWH -bYc -bZq -caG -abt -bSS -ceZ -cgo -cgo -cgo -cgo -cgo -cgo -ccd -cpr -cci -nSv -vGw -qEi -tjd -jwE -eJd -nSv -cyC -czv -dDA -cBu -cCv -cyK -cEt -tXK -cGj -cHe -cId -cIX -cJU -cIg -cLF -dvY -dvY -dvY -dvY -dvY -dvY -cRe -djh -cYT -cRv -dbY -dch -dct -dcz -djs -cRi -cSh -cSp -cSy -cSd -cSh -dbo -cSy -cSd -cSh -dbs -cSn -cRi -dde -ddj -cTp -dlV -dlV -dlV -dlV -dlV -dlV -dlV -dlV -dlV -aaa -aaa -aai -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(127,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aav -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaa -aaa -aaf -aaf -aez -afq -ago -ahc -ahc -aiL -ajM -akY -amr -anD -aoL -icE -nxA -prS -nkV -avk -awx -axz -ahx -gLk -dsg -eof -eof -eof -eof -eof -eof -eof -hSw -rIb -xTE -xTE -oJO -xTE -qgV -jUz -aWr -aXZ -aZs -bbb -bcm -bdQ -bfF -bhC -bjn -bkS -bmK -boK -brc -brc -buM -bwJ -byw -byw -byw -bDB -bFi -bGX -bIs -bKd -bIs -bNu -bIs -bIs -bIs -bSR -bUc -bVp -bWI -bYd -aWf -caH -ccq -bSS -ceZ -cgo -chs -ciN -ckm -clN -bZn -cog -cpr -cqK -nSv -gcz -opM -tkT -rjg -qda -nSv -cyD -czw -cAA -cBv -cCw -cyK -cEu -cFo -cEu -cHe -cIe -cIY -cIe -cIg -cPe -dvY -cNi -cgs -cOB -cPf -dvY -cRe -cRe -cRe -cRi -dbZ -dci -dcu -cRi -cRe -cRi -cSg -cSn -cSn -cSd -cSg -cSn -cSn -cSd -cSg -cSn -cSn -cRi -cTA -cTn -cTC -cTC -cTC -cTC -cTC -cTC -cTC -daO -bIx -dlV -aaf -aaf -aag -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(128,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaa -aaa -aaf -aaa -aey -afr -agp -agp -agp -aiM -ajN -akZ -ams -aey -aoM -icE -wKu -prS -nkV -avk -awy -axA -ahx -dhz -aoP -eof -mTr -eof -lTz -eof -mfW -eof -kBr -dmS -mBW -mBW -gLD -izA -vxN -jUz -aWs -dnh -prf -prf -prf -prf -mHo -bhD -bjo -bkT -jIg -hIO -teZ -jkm -teZ -wep -sTt -wep -dvD -kmP -lDu -huP -wep -qoi -vWO -gFi -gzX -gzX -vWO -bSS -bUd -bVq -bWJ -bYc -bZs -aYX -ccr -bSS -cfa -cgo -cht -ciO -ckn -clO -cmN -coh -cpt -cqL -nSv -fVX -gEL -fPT -kYE -wEJ -nSv -cyE -czx -cAB -cBw -cCx -cDk -cEv -cFp -cGk -cHf -cIf -cIZ -cJW -cIg -dDF -dvY -cNj -ciL -ciL -cPg -dvY -aaa -aaa -aaa -cRw -cRi -dcj -cRx -cRi -cRD -cSd -cSg -cSn -cSn -cSd -cSg -cSn -cSn -cSd -cSg -cSn -cSn -cRi -cRi -cTq -cRi -cRi -cRi -cRi -cRi -cRi -cRi -daP -cLE -dlV -aaa -aaa -aaf -aag -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(129,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -xtS -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaa -aaa -aaf -aaa -aey -aey -aez -aey -aey -aey -aey -aey -aey -aey -aoN -icE -kFM -llh -icE -avk -awz -axB -ahx -azY -aoP -eof -uQY -eof -vsJ -eof -nfO -eof -qSK -dmS -mBW -ykH -gLD -mBW -rJT -jUz -aWt -aYa -prf -nWa -mKI -sAy -prf -bhE -bjp -bkU -jkm -eAH -qMA -onz -teZ -uwx -kPZ -jpr -mPv -kPZ -hqK -hAL -waL -vWO -dSm -yfq -tXZ -vNg -ebr -djS -gMz -tIB -rSO -djS -gMz -gUC -gMz -djS -ceZ -cgo -chu -ciP -cko -clP -cmO -coi -cpu -cqM -crR -crR -crR -crR -crR -crR -crR -cyF -czy -cAC -cBx -cCy -cDl -cEu -cFq -cEu -cHe -cIg -cIg -cIg -cIg -dxQ -dvY -cNk -ciL -ciL -cPh -dvY -aaa -aaa -aaf -cRi -cRh -dck -cRz -cRB -cRN -cSd -cRU -cSq -cRZ -cSd -dcP -cSN -cSD -cSd -dcU -cTc -dcX -cSd -ddf -ddk -cTj -cTD -cRi -cSn -daF -daJ -cRi -bvT -cRi -cRi -cRi -cRi -aaa -aai -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(130,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaa -aaa -aaf -aaa -aaf -aaa -aaa -agq -ahQ -agq -ajO -ala -amt -agq -dhr -icE -icE -icE -icE -ahx -ahx -ahx -ahx -aGE -aBr -aCz -rJX -fgj -iEi -mDc -hla -kIk -rLU -dmS -ykH -rjF -lFD -njt -uPZ -jUz -jUz -aYb -prf -sZM -pcD -dJE -eTe -bhF -bjq -bkV -pYn -wYd -kMT -moT -teZ -sUI -lvR -msI -mPv -iUY -ffS -qOT -vGe -vWO -vYJ -lao -sPW -oFB -lXj -djS -piB -nZB -fYa -nKs -pcc -tUY -tCA -djS -cfb -cgp -chv -ciQ -ckp -clQ -bZn -ccd -cpv -cqN -crS -ctf -ctW -cuS -cvV -cwV -crR -cyG -czz -cAD -cBy -cCz -cDm -cEw -cFr -cGl -cHg -cIh -dAh -dbl -dyc -dxQ -dvY -dvY -cNW -cOC -dvY -dvY -aaa -aaa -aaa -cRi -dca -dcl -cRy -cRA -cRM -cRa -cSj -cSs -cSB -cSI -cSj -cSO -cSS -cSI -cSj -cTb -cST -cSd -cSL -cVa -cTr -cRY -daC -cSn -cSn -cSn -cRi -dmq -cRi -cZv -cZv -cRi -aaf -aag -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(131,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaa -aaa -aaf -aaf -aaf -aaa -agq -agq -agq -agq -aje -alb -adk -agq -aur -aqb -aqb -asP -aua -aqb -aqb -aqb -aqb -azZ -aBs -eof -hMI -hla -iOe -duS -duS -kIk -esj -kyL -tMO -ljM -jRI -mBW -cVg -out -jUz -aYc -aTC -yfh -pNU -tfL -lpS -bhE -bjp -bkU -jkm -jbZ -pyj -xet -teZ -uMQ -kPZ -nFG -mPv -kPZ -emB -hAL -mPv -kgv -ijm -fLM -tpe -oFB -nPo -djS -wBL -oaZ -xlH -gCt -oaZ -sfb -rmu -cdU -cfc -cgo -diD -ciR -ckq -clR -bZn -coj -cpw -cqO -crT -ctg -ctX -cuT -cuT -cwW -crR -cyH -czx -cAE -cBz -cCA -cDn -cEx -cDn -cGm -cHh -cIi -cJa -dAp -cKK -cxM -dvY -cNl -dAZ -cOD -cPi -dvY -aaa -aaa -aaf -cRe -cRS -dcm -dcv -cRC -dcG -cSe -cSi -cSr -cSA -cSG -cSK -cSr -cSA -cSW -cSK -cSr -dcY -ddc -cSk -ddl -cTk -cTm -daB -daB -daG -cSn -cRi -ddx -ddz -daR -cZv -cRe -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(132,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaa -aaa -aaf -aaa -aaf -aaa -agq -ahd -ahR -aje -aje -alc -aje -agq -dCe -agq -agq -asQ -agq -agq -agq -eof -eof -eof -eof -eof -hMI -oUy -eof -eof -eof -eof -hsq -dkX -gzN -xTE -iEy -iPj -cVg -wsX -jUz -boW -prf -sqM -skB -uJM -voc -bhG -bjr -bkW -teZ -teZ -teZ -teZ -teZ -wbZ -hCA -msI -pzY -kPZ -upO -mDX -lwN -dYw -wlF -kBH -vSG -wCs -ijm -jug -fGC -nZB -aJA -qqM -rQv -fbJ -xDL -djS -cfd -cgq -cgq -cgq -cgq -cgq -cmP -cmP -cpx -cqP -crR -cth -ctY -cuU -cvW -cwX -cxK -cyI -czA -cAF -cBA -cCB -cDo -cEy -cFs -cGn -cHi -cIj -dvY -dvY -cKL -dvY -dvY -diW -cNX -dBe -cPj -dvY -aaa -aaa -aaf -cRe -cRS -dcn -dcw -cRk -dcH -cSf -cSl -cSJ -cSa -cSJ -cSJ -cUM -cUN -cSJ -cSJ -cSJ -cSV -cSJ -cSX -ddm -cTt -daA -cSn -cSn -cSn -daL -cRi -daQ -ddA -daS -dbv -cTT -ddC -aaf -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(133,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aav -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaa -aaa -aaf -aaa -aaf -aaf -agq -ahe -ahS -aje -ajP -ald -amu -anE -aoQ -agq -ary -asR -aje -auc -adl -eof -nYk -wCr -cri -qTW -idx -wCQ -hbq -esv -nZv -eof -voB -dkX -vfK -mBW -sIP -mBW -cVg -ipj -jUz -dCD -prf -ehF -ttQ -hZy -prf -bhH -bjp -bkU -wep -joP -giS -eCf -nzz -vBv -kPZ -eXX -mPv -kPZ -jhw -dXM -mjp -usd -kAx -qSJ -kAc -qfe -dDd -fWS -dYt -hpl -ykI -kmr -tHs -efP -jmq -djS -dDr -cgq -chx -chx -chx -cgq -cmQ -cok -cpy -cqQ -crR -wmB -ctZ -cuV -cvX -cwY -crR -cyJ -cBs -cBs -cBB -fco -cDp -czB -cAG -cEz -cyK -dxQ -dvY -cJY -cKM -cLH -dvY -cNn -dAZ -cOE -cPh -dvY -aaa -aaa -aaf -cRe -cRS -dco -dcx -dcA -dcI -cRR -cRV -cRX -cSb -dcO -dcQ -cRX -cSb -dcT -dcQ -cRX -dcZ -ddd -cTa -ddn -cTs -ddu -daD -cSn -daH -daK -cRi -bIv -ddz -ddB -cZv -cRe -aaa -aaf -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(134,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aav -oRp -oRp -aaa -aaa -aaa -aaa -aaa -aaf -aaa -weB -weB -weB -weB -dhn -aiO -aje -ale -ahS -agq -aoR -agq -arz -asS -aub -aje -ahd -eof -hsv -lOt -vCd -gjo -pCC -pdy -lOk -eof -eof -eof -ttU -uck -wZM -ykH -mER -ykH -cVg -oop -dtE -aYf -prf -prf -prf -prf -prf -bhI -bjs -bkX -wep -kDc -wRK -npo -dFc -xKw -oBB -sZJ -pIJ -seD -iuF -kPZ -mPv -til -unK -pTI -aKM -fFa -iSE -djS -erD -hpl -iaE -naO -tHs -hfE -kYC -djS -ceZ -cgq -chx -ciS -chx -clS -cmR -col -cpz -cqR -cgq -ctj -cua -cuW -cvY -cvX -crR -cyK -cyK -cAH -cBC -cyK -cyK -cyK -cyK -cyK -cyK -diP -dvY -cJZ -cKN -diU -dvY -dvY -cNY -dvY -dvY -dvY -aaa -aaa -aaa -cRi -dcb -cZa -dDI -dcB -dcJ -cRa -cSm -cSw -cSE -cSI -cSM -cSR -cSE -cSI -dcV -cTe -dda -cSd -cSZ -ddn -cTz -ddv -daC -cSn -cSn -daN -cRi -dmr -cRi -cZv -dbw -cRi -aaa -aag -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(135,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaf -aaf -aaf -aaf -aaf -kPw -vUh -pQJ -weB -ahU -aiP -weB -weB -weB -weB -aoP -agq -arA -aje -auc -aje -awB -eof -xSr -wjH -weG -eof -eVB -wFE -vic -rXs -olc -eof -eFQ -uck -prY -ykH -qaJ -mBW -cVg -fxX -jUz -aYe -dnh -bbh -duo -dnh -bfK -bhE -bjp -bkU -wep -hrB -gWH -jAS -wep -elo -kPZ -jPl -mPv -kPZ -hqK -kPZ -mPv -mGM -unK -ijm -rQj -opk -kBH -skb -feU -kQJ -fCx -mqX -fCx -sfb -bnL -djS -csg -cgq -chx -ciT -ckr -clT -cmS -com -cpA -cqS -cgq -dwL -dwL -dwL -dwL -dwL -dwL -xAp -vhG -cAI -cBD -cCD -uun -rSL -dvY -dyc -gGH -pVL -dvY -cKa -cKO -cLJ -cor -cmZ -cNZ -dxk -aaa -aaa -aaa -aaa -aaa -cRi -doj -dcp -cSt -cSt -dcK -cSd -cRW -cSv -cSc -cSd -dcR -cSQ -dcS -cSd -dcW -cTg -ddb -cSd -ddg -ddo -dds -cTD -cRi -daE -daI -daM -cRi -cTA -cRi -cRi -cRi -cRi -aaf -aag -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(136,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aai -edG -edG -eQs -edG -edG -weB -duX -weB -weB -weB -weB -xQZ -klE -weB -aoS -weB -wfx -wfx -wfx -wfx -wfx -eof -eof -eof -eof -eof -rVu -tRh -eof -eof -eof -eof -ldm -lgY -fAA -izA -sra -ykH -cVg -mig -jUz -aYg -aZv -bbi -bct -dnh -bfL -bhE -bjp -bkU -wep -smA -lWq -xLe -wep -wep -kqP -wpE -sTt -tlF -pRp -sTt -wep -vWO -xYE -imw -imw -lvu -oAw -tnE -fGC -mtH -rQv -qqM -itL -fbJ -wxA -djS -ceZ -cgq -chy -ciU -chx -clU -cmT -con -cpB -cqT -crU -dwL -cub -cJa -cJa -cJa -gHh -wRy -wRy -wRy -cBE -cAJ -cCE -cCE -czC -dzI -cIl -dAd -dvY -dvY -dvY -dvY -cKP -cKP -cKP -cKP -cKP -aaa -aaa -aaa -aaa -cRi -dcd -dcq -dcy -cSt -dcL -cSd -cSn -cSn -cSg -cSd -cSn -cSn -cSg -cSd -cSn -cSn -cSg -cRi -cRi -ddp -cRi -cRi -cRi -cRi -cRi -cRi -cRi -cTA -dlV -aaf -aaa -aaa -aaf -aag -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(137,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aag -edG -jwh -tDZ -kfb -lYZ -qoA -mRb -oQI -tNX -teJ -ifs -ekk -ekk -xXR -dtL -hJA -wfx -wjD -jBn -wfx -mzp -gsp -wfx -wyt -oTC -oLU -ukJ -vbZ -xPQ -ofE -eyR -tFp -sgH -txP -xou -wIS -sIP -mBW -cVg -rLB -jUz -aYe -dnh -dnh -dnh -dnh -dnh -bhE -bjp -dCM -wep -rzT -mte -wep -wep -dpF -iaA -iaA -iaA -iaA -gin -ocV -ocV -rTV -reC -les -kGY -unn -lwz -djS -oKf -uXT -mIG -dAX -tHs -efP -jmq -djS -ceZ -cgq -chx -cLU -chx -clU -cmU -coo -cpC -cqU -crV -dwL -dxQ -cuY -cwa -dzQ -dwL -gLC -qqg -cAK -cBF -cCF -uGW -dqU -dvY -dww -gEk -eZe -cJa -cPx -cJb -cKb -cKR -cLK -cMq -cNo -cKP -aaa -aaa -aaa -aaa -cRi -dce -cSt -cSt -dcC -dcM -cSd -cSn -cSn -cSg -cSd -cSn -cSn -cSg -cSd -cSn -cSn -cSg -cRi -ddh -ddq -ddt -ddt -ddt -ddt -tJG -cTA -cTA -ddy -dlV -aaf -aaf -aaa -aai -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(138,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -wdu -lYZ -rUL -dYf -fxf -jQb -rDr -ezN -plX -plX -plX -wbv -fcl -fcl -thq -pya -qhx -wfx -sbs -jbv -wfx -gSX -hen -wfx -nqT -nOm -lRI -vSE -maQ -mbw -jRk -maQ -vnL -pvo -rkT -sHU -oBl -tde -xlW -kJc -url -jUz -aYh -aCM -bbj -aCM -bdW -bfM -bhJ -bjt -bkU -wep -vEl -brl -wep -kiL -qJk -qfY -qfY -iaA -iaA -hvn -iaA -jGA -vWO -vWO -vWO -vWO -vWO -rCH -djS -vJE -hpl -tHs -nZE -tHs -efP -rIw -djS -ceZ -cgq -chA -ciV -cks -cgq -cmV -cop -cpD -cqV -crW -dwL -dxQ -cuZ -cuZ -cuZ -cuZ -cuZ -ioI -krD -czD -cAL -cBG -czD -czD -czD -cFu -dyc -cOA -cIn -cJc -cKc -cKQ -cLL -cMr -cNp -cKP -aaf -aaa -aaa -aaa -cRi -dcf -dcr -dcr -dcD -dcN -cSd -cSn -cSx -cSF -cSd -cSy -dbp -cSF -cSd -cSn -dbt -cSF -cRi -ddi -ddr -cTB -dlV -dlV -dlV -dlV -dlV -dlV -dlV -dlV -aaf -aaa -aaa -aag -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(139,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aag -edG -rUL -jit -hYr -jLF -oPO -vBd -wSx -wSx -sPs -gPN -xmc -tZe -tZe -oni -hkz -wfx -xGy -jAs -wfx -wad -wVV -wfx -eDr -nOm -sUa -njD -wjR -xHd -rTu -jxD -hyv -ggj -uVj -wYA -xGp -pmb -uCj -qHe -url -jUz -dhN -dnh -dnh -dni -dnh -dnh -bhE -bjp -bkU -alq -boV -brm -wep -wGq -hNP -frr -pUJ -ocV -gpH -tej -tTX -iaA -wgD -vWO -nPn -tdK -ePj -liF -djS -wQM -oaZ -fCx -vCi -fCx -sfb -qAS -djS -diB -cgq -chx -ciW -ckt -clV -cmW -coq -cpE -cqW -crX -dwL -dxQ -cuZ -cwb -lal -ygk -sdi -fDD -wKo -czD -cQC -cBH -cCG -cDq -czD -dvY -dvY -dvY -cGo -cJd -cPz -cKP -kSy -cMs -cNq -cKP -aaa -aac -aaa -aaa -cRi -cRe -cRe -cRe -cRi -cRi -cRi -cRi -cRi -cRi -cRi -cRi -cRi -cRi -cRi -cRi -cRi -cRi -cRi -dlV -dlV -dlV -dlV -aaa -aaf -aaf -aaf -aaf -aaf -aaa -aaf -aaf -aag -aag -aaf -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(140,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aai -edG -gXt -okb -xMe -edG -weB -pGN -wSx -jpf -tMo -fLh -tMo -fkF -thm -oni -hXu -wfx -eGc -fbw -wfx -eGc -xhM -wfx -wfx -wvY -giv -qRa -hdR -xYn -rzz -pSY -pSY -pSY -kkl -lhP -qZB -pSY -pSY -pSY -jUz -jUz -biq -dnh -aaa -aaa -aaa -bfN -bhK -bju -bkZ -alq -bBj -brn -wep -wep -ngZ -ccU -iqV -hLG -iaA -qfY -nGs -hLG -xSU -vWO -wni -jig -jig -hCH -djS -peh -tyM -fZR -pwY -iYv -hpC -fse -djS -cff -cgq -cgq -cgq -cgq -cgq -cgq -cgq -cpF -cgq -cgq -dwL -dxQ -cuZ -eqG -cwZ -cwZ -cyM -uYk -krD -cQv -cAN -cBI -cAP -cDr -czD -aaf -aaf -dvY -dvY -dAn -dvY -cKP -dbN -dbP -dbN -cKP -aaf -aaf -aaf -aaa -aaa -aaf -aaf -aaf -aaf -aaa -aaa -aaf -aaf -aaf -aaa -aaa -aaf -aaa -aaa -aaa -aaf -aaf -aaa -aaf -aaf -aaa -aaf -aaa -aaa -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aai -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(141,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aag -edG -rUL -okb -dYf -lYZ -njB -tNR -gZF -jjI -klE -nwG -yfg -gAU -uOg -gkj -nPf -kkR -pko -krL -yah -pko -xPm -qRd -swu -gQT -utQ -kLa -hdR -xHd -uit -pSY -gfR -qGg -pUa -qYO -tAp -saR -sbU -pSY -aUU -aCM -dtR -tMD -tMD -whB -tMD -tMD -bhL -bjv -bla -bmQ -boX -bro -bts -mtf -uzY -sNj -qfY -iaA -lMo -tRn -hgV -iaA -nia -vWO -hCt -lGv -jjm -vre -vWO -vWO -vWO -djS -djS -djS -iqv -djS -djS -cfg -cJa -cJa -ciX -cJa -clW -cIk -cJa -cpG -kVo -dDu -gra -cuc -cuZ -dyp -cwZ -cwZ -cyM -xVP -krD -czF -cAN -cBJ -cAP -cDs -czD -aaf -aaa -aaf -dvY -cJe -dvY -aaa -dbN -dbQ -dbN -aaa -aaa -aaa -aaf -aaa -aaa -vLD -aaa -aaf -aaa -aaa -aaa -aaf -aaa -aaa -aaa -aaa -aaf -aaa -aaa -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(142,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aag -lYZ -nHL -pHr -iNR -xpD -mlO -pig -wuN -oVF -tzk -gHw -tzk -eHT -lxd -uGB -tZV -uuU -lEN -umO -qXd -lEN -umO -hKZ -nwH -jvP -kXt -qTN -dKy -iLG -fhO -pSY -fWJ -tkr -qBy -xgw -qBy -nQW -yeJ -pSY -avD -dnR -dtS -tMD -eoN -fzU -pcy -tMD -bhM -bjw -bkU -alq -alq -brp -wep -feJ -vhg -syK -iaA -qfY -lPE -qfY -nGs -iaA -poo -vWO -wni -xbB -uLG -tKM -lGk -tWp -vWO -fNk -iSO -pPp -fcU -wbK -djS -cfh -dvY -dvY -dvY -dvY -clX -dvY -dvY -dvY -dvY -cuZ -sFv -cuZ -cuZ -upN -cxN -cxN -qJZ -cxO -krD -czG -cAN -cBK -czD -cDt -czD -aaf -aaa -aaf -dvY -cJd -dvY -aaa -dbN -xse -dbN -aaf -aaf -aaf -aaf -aaa -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(143,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaf -aai -edG -edG -edG -edG -edG -mkS -pGj -uzi -jjI -rMx -maE -hLH -gEN -vZo -vos -jOk -oWt -hOA -hyZ -wmX -sHf -hyZ -pmq -gGb -pmd -jom -hyZ -hvL -wSs -nVE -pSY -hTs -tkr -qBy -kfN -qBy -nIU -dzO -pSY -avB -dnS -dnS -tMD -oeu -plk -wWR -tMD -bhN -bjx -blb -alq -boY -brq -wep -mIW -qfY -hJC -mPm -rlw -jsx -rYI -hvn -iaA -nUs -vWO -xOe -xOe -sVW -mFH -vWi -dxa -vWO -fyZ -mwP -iZM -gst -mwN -djS -cfi -aqr -chB -dvY -cku -clY -cmY -dvY -cpH -cqX -cuZ -fFM -cud -kxk -cxO -cxO -cxO -dGH -mzh -krD -cQB -cAO -cBL -cAP -cDu -cEA -aaf -aaa -aaa -dvY -cJf -dvY -aaa -dbN -awY -dbN -aaa -aaa -aaa -aaf -aaa -aaa -aqB -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(144,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaf -aaa -aaa -aaa -aaa -aaa -weB -weB -pKD -emj -fsi -ghG -ghG -ghG -oDp -rKs -wVf -gPG -wfx -wfx -nyg -rzz -wfx -hKK -rzz -aAi -wfx -rzz -wdQ -wfx -vJf -rzz -pSY -pXT -tkr -qBy -uIY -eSp -uVl -kSs -aTC -aUV -smU -smU -tMD -tMD -eAd -tMD -tMD -bhE -bjp -bkY -alq -bcs -brr -wep -wep -xze -rbX -vqd -tyY -tyY -mQW -eNY -jBu -xze -vWO -vWO -vWO -vWO -vWO -bSZ -nZH -vWO -djS -djS -djS -caT -lcj -djS -dDs -apc -apb -dvY -ckv -clZ -cmZ -cor -cpI -cqY -cuZ -jLY -lzk -lzk -cwd -kfu -cxP -cxO -gnZ -krD -czI -cAP -cAP -czD -anS -blx -aaa -aaa -aaa -ack -uim -ack -aaa -aaf -gHk -aaa -aaf -aaa -aaa -aaf -aaa -aaf -anT -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(145,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaf -aaa -weB -weB -kPw -weB -weB -kiA -tZe -rtU -qSc -qSc -qPw -fGG -fGG -rKs -wVf -gAV -wfx -rHS -hLu -gAR -fEl -aMp -gAR -aAj -wfx -wpD -mHZ -wfx -rJO -iTC -pSY -eVL -mlH -hpG -nkB -hpG -wUI -xqM -pSY -dCC -smU -nmK -ouC -qkQ -vNm -wiv -smU -dCJ -bjp -blc -bmR -boZ -brs -btt -avs -xze -tfX -xYV -evV -rfm -fdE -nbl -eSQ -xze -xze -lQo -uyq -eTE -xze -bTa -bUs -bVz -bWX -bYo -bVz -caU -ccD -cdV -cfj -apc -chC -dvY -dvY -dvY -dvY -dvY -cpJ -cqZ -cuZ -cuZ -obb -krD -kOt -gRS -oUA -cxO -cxO -cYI -krD -aaf -aaf -anS -anS -anS -aaa -aaf -aqB -anT -anT -anT -aaf -aaf -gHk -aqB -anT -aqB -anT -anT -anT -aaf -anT -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(146,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaf -aaf -kPw -xOF -uGe -qyf -syi -klE -tZe -kYl -rdV -plX -jXa -plX -plX -aRu -wVf -rsm -wfx -siX -xpy -wfx -sbs -wRz -wfx -aAk -wfx -ikA -kum -wfx -iwd -kZv -pSY -goY -gUf -xGS -gSK -nzH -kYp -goY -pSY -aUW -smU -gvY -lep -xvf -xNY -kyA -smU -bhO -bjy -bld -bmS -bpa -brt -btu -buU -xze -hvy -gRD -jvn -cTE -xCx -uds -cWc -tuB -uqB -kXp -wtU -xZj -xze -bTb -bUt -bVA -nyo -bYp -bZy -tsx -bZB -cdW -cfk -apc -chD -dvY -ckw -cma -cna -cos -dxh -clY -crZ -cuZ -tVY -krD -oLW -gGT -wPk -dGH -cxO -lUv -krD -aaa -aaf -aaf -aaf -aaf -aaf -aaa -aaf -aaf -aaa -aaa -aaa -aaa -pDz -aaa -aaa -aaf -aaa -aaa -aaf -aaa -anT -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(147,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -xtS -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaf -aaa -weB -wOY -adF -wOY -weB -oRx -tZe -pGf -xbd -pqG -pqG -qJF -hXP -hXP -mRE -wzY -wfx -nqK -gsp -wfx -qmK -jBn -wfx -aAl -wfx -nqK -kyr -wfx -paQ -vqv -pSY -qqb -lBg -thc -wYi -hem -nsA -lBg -pSY -avB -smU -sQY -lep -qcF -uyl -nLA -smU -bhK -bjz -bkZ -alq -bpb -bru -alq -alq -xze -jtr -kKA -xNj -xNj -dBg -vTo -kCR -xze -fXa -fWz -pGg -dmL -xze -oEM -bUu -xVl -ozV -cow -xVl -dLK -alq -alq -cfl -alq -alq -dvY -ckx -ciL -dwQ -cot -cnb -cra -csa -cuZ -lMz -krD -ocT -xkG -uTS -cxO -cxO -tfs -krD -aaa -aaa -aaa -aaf -aaa -aaf -aaa -pGD -pGD -pGD -pGD -pGD -aaf -lRm -aaa -pGD -pGD -pGD -pGD -pGD -aaa -aqB -aaf -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(148,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaf -aaa -weB -aaa -aaa -aaa -qjf -psS -psS -psS -dkh -kPw -kPw -tPT -sVv -sVv -sVv -kNB -wfx -wfx -wfx -wfx -wfx -wfx -wfx -aHQ -wfx -wfx -wfx -wfx -wfx -wfx -pSY -pSY -pSY -pSY -pSY -pSY -pSY -pSY -pSY -biq -smU -hSp -iAR -kwD -uih -hFm -uhi -bhG -bjA -bkW -alq -alq -brv -alq -buV -xze -tzl -fkx -qIn -ggA -qWu -fwb -iIJ -xze -jIS -ozl -jbH -iiE -xze -bvd -bUv -xVl -xVl -mvj -xVl -dLK -alq -cdX -cfm -apc -chE -dvY -cky -ciL -dwX -ciL -ciL -cou -adI -dvY -mjJ -krD -eqq -llb -uTS -cxO -cxO -tID -noG -lMJ -aaa -aaa -aaf -aaa -anT -aaa -dlD -nln -nln -nln -nln -ods -lRm -woQ -xqv -xqv -xqv -xqv -urI -aaf -anT -aaf -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(149,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaf -aaa -oWo -aaa -aaa -aaa -jLP -afD -afD -afD -afD -afD -afD -afD -afD -afD -afD -jPO -dhw -dnh -auo -avq -awI -axL -dnh -axO -dnh -dhB -aLk -aHW -aYa -aHV -dnh -aKw -aLZ -aNm -dnR -aPS -cXc -aSo -dnh -avB -smU -joe -pfp -tVM -hzH -dlo -xwg -bhJ -bjt -bkU -alq -atj -brw -btv -dbj -xze -xze -xze -xze -xze -bFA -xze -xze -xze -rWE -xze -bPf -xze -xze -cjr -bTe -bVB -bVC -nAG -pCV -caW -alq -cdY -bPl -avr -chF -dvY -ckz -ciL -dwY -ciL -ciL -cgs -csc -dvY -dxk -krD -dbG -txj -eEe -cxO -izh -qaK -qEc -idz -idz -vYs -mIJ -aaa -anT -aaf -gFW -gFW -gFW -gFW -gFW -aaf -mJX -aaf -gFW -gFW -gFW -gFW -gFW -aaa -anT -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(150,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aai -sKV -aaa -aaa -aaa -aaa -jLP -afD -afD -afD -afD -afD -afD -afD -afD -afD -afD -jPO -dnh -dnh -dnh -dnh -dnh -axM -ayQ -aAn -aIv -aCM -avF -aLJ -aNS -aHW -dhH -aCM -aCM -dCs -aCM -aPT -aRi -aCM -aCM -avF -smU -kbk -wSJ -hib -qpV -dAc -smU -bhP -bjB -ble -bmT -bpc -dhQ -btw -buX -nLT -bGp -btw -dCV -bwY -bFB -bHl -bIE -bHl -bTd -bHl -bPg -bHl -bSc -eoK -uHc -uJU -uJU -pvA -bZA -bZE -bZE -bZE -bZE -bZE -bZE -bZE -ckA -dwQ -cnb -cou -cpK -ciL -csc -dvY -lMJ -krD -jyv -ohj -nnK -cxO -xHA -cxO -krD -aaa -aaa -aaa -qRM -aaa -anT -aaf -aaf -aaf -aaf -aaa -aaa -aaa -lRm -aaa -aaf -aaa -aaa -aaf -aaa -aaa -anT -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(151,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aag -aaa -aaa -aaa -bii -aaa -jLP -afD -afD -afD -afD -afD -afD -afD -afD -afD -afD -jPO -arG -asB -aup -dnR -dnh -axN -dnR -ocS -ocS -ocS -ocS -ocS -ocS -ocS -ocS -ocS -ocS -ocS -ocS -ocS -ocS -ocS -ocS -ocS -nmz -nmz -nmz -nmz -nmz -nmz -nmz -psM -bjt -blf -bmU -alq -alq -alq -buY -dOR -alq -alq -alq -alq -alq -alq -alq -qtO -wpo -qtO -qtO -qtO -alq -alq -alq -apb -apb -bXa -bZz -bZE -ccE -cdZ -cfn -fJE -chG -bZE -ckB -cmb -cnc -cov -cpL -crb -csd -dvY -lMJ -krD -krD -noG -krD -noG -nKU -krD -krD -yfk -idz -idz -vda -aaa -aqB -aaa -pGD -pGD -pGD -pGD -pGD -aaf -lRm -aaa -pGD -pGD -pGD -pGD -pGD -aaf -anT -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(152,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aai -aaf -aaf -aaf -aai -aaf -jLP -afD -afD -afD -afD -afD -afD -afD -afD -afD -afD -jPO -arH -dpk -auq -dqp -dnh -azr -dnz -ocS -nik -oTo -xML -eLt -fti -ocS -sLs -cTv -vSm -vSm -ocS -dSu -xBK -kXd -qAf -ocS -wIB -uUx -sSo -snM -fEm -lkU -nmz -bhO -bjC -blg -bmV -bpd -bmV -btx -buZ -bwZ -byP -bAx -bCe -bDM -bFC -bHm -bIF -suE -vyC -tgn -eBL -qtO -bSd -bPm -alq -bVC -bWY -bYr -bZz -bZE -ccF -cea -cea -cgu -chH -bZE -dvY -dvY -dvY -dvY -dxk -dvY -dvY -dvY -aaf -dka -vYs -idz -idz -idz -jDS -aaa -aaa -wNQ -idz -vYs -mIJ -aaf -anT -aaa -dlD -nln -nln -nln -nln -ods -lRm -woQ -xqv -xqv -xqv -xqv -urI -aaf -anT -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(153,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaa -aaa -aag -aaa -jLP -afD -afD -afD -afD -afD -afD -afD -afD -afD -afD -jPO -arI -atd -bai -ate -dDL -axP -dnS -ocS -pUr -lmt -urs -rdR -xTt -ocS -cTv -cTv -vSm -uFM -ocS -tij -vbR -tDG -esC -ocS -mDR -otq -fht -gaa -ijW -xlc -nmz -bhR -bjD -blh -bmW -bpe -bry -bry -bva -bxa -bHr -bAy -bAy -bDN -bFD -bHn -bIG -nUa -rzt -wuS -wim -qtO -bNO -bTf -alq -diu -bWZ -bYs -bZB -bZE -ccG -ceb -cfo -cgv -chI -ciY -ckC -cmc -cmc -cmc -cpM -crc -aaf -ctl -aaa -qRM -xUO -anT -anT -anT -ake -ake -ake -pDn -faU -vYs -jDS -aaf -anT -aaf -gFW -gFW -gFW -gFW -gFW -aaf -lRm -aaf -gFW -gFW -gFW -gFW -gFW -aaa -anT -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(154,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaa -aaa -aai -aaa -pUH -psS -psS -dhm -xPG -kPw -kPw -uar -fRo -fRo -fRo -fmO -dnh -dnR -aus -dnS -dnh -aAm -dnS -ocS -owQ -gua -eRy -vZm -wYa -ocS -fbZ -jOA -ghb -ewT -ocS -mBk -lOI -vGk -esC -ocS -dGJ -otq -oXk -jLu -mAj -jNt -nmz -bhS -bjE -bli -bmX -bpf -brz -bty -bvb -bxb -byQ -bAz -bCf -bty -bFE -bHo -bIH -qtO -uYc -kJB -unm -qtO -aqr -bTg -alq -bVE -bXa -bYt -bZC -caX -ccH -cec -cfp -vyx -chJ -wgw -pmc -cgz -cgz -cgz -cpN -crd -ack -ack -aaf -ykE -idz -sqe -sqe -idz -idz -idz -idz -etb -aaa -ake -aaf -aaf -anT -aaa -aaa -aaf -aaf -aaf -aaa -aaa -lRm -aaa -aaa -aaf -aaf -aaf -aaf -aaa -aqB -aaf -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(155,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaa -aaa -aaf -aaa -aaa -aaf -aaa -weB -qmw -joS -sZz -pmA -weB -dnz -dnR -dht -dnh -dnh -dnh -dnh -dnh -axQ -ayR -ocS -yaU -ygd -fHg -qDu -iJx -ocS -tjG -ghb -nNm -mpF -ocS -pch -vsV -toN -pch -ocS -nmz -ufk -mUZ -pTL -mAj -sOy -nmz -iYP -iYP -oCy -ejj -gvV -iYP -iYP -bvc -qxd -vBW -ieJ -nGn -uoM -lUn -dlF -uhB -qxd -qtO -qtO -qtO -qtO -apc -apc -alq -alq -bXb -bYu -bZD -caY -ccI -ced -cfq -cgw -cfs -cjb -ckD -cjb -cnd -cgz -cgz -cre -aaa -ack -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaa -aqB -aaf -pGD -pGD -pGD -pGD -pGD -aaf -lRm -aaa -pGD -pGD -pGD -pGD -pGD -aaf -anT -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(156,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaa -aaa -aaf -aaf -aaf -aaf -aaa -weB -lXo -uEu -dEQ -rze -dtE -anN -dnS -doh -dnS -dnS -dCi -dnS -dnS -axO -dnS -ocS -rCK -xel -kFo -rGv -lmb -ocS -ocS -hzS -hzS -ocS -ocS -fxb -gbt -eVu -xFk -gpb -fMW -otq -dzN -dmm -nQt -ixs -gzG -seS -uJR -rcL -pjR -gsy -oIN -iLe -bvd -qxd -unQ -hMn -tQs -lCf -dVc -hQl -qnH -oHW -atm -bLX -bPk -bQQ -bSe -bTh -bUx -aut -bXc -bZz -bZE -caZ -ccJ -cee -cfr -cgx -cgx -cja -ckE -cmd -cne -cNw -cOa -crf -aaa -ack -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaa -anT -aaf -dlD -nln -nln -nln -nln -ods -lRm -woQ -xqv -xqv -xqv -xqv -urI -aaa -aaf -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(157,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaa -weB -kPw -kPw -kPw -weB -weB -dnh -dnh -dnh -dnh -dnh -dnh -dnh -dnh -aBC -ocS -ocS -eDX -mJR -xKG -kHk -eDX -eDX -pAO -lmt -rdR -xtl -eDX -kKv -sZf -sRX -sOT -skz -lYc -wdP -lQV -uZi -fpr -llE -kDi -hKU -kiW -gyR -jtI -gsy -gdJ -iLe -bve -qxd -pxy -jje -woN -jAn -tyC -kLr -rms -plN -atm -bLY -bPl -apc -aqq -apc -bUy -bPs -bXd -apf -bZE -cba -ccK -cef -cfs -czH -cLC -cjb -ckF -cjb -cnf -cgz -cgz -cre -aaa -ack -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaa -anT -aaf -gFW -gFW -gFW -gFW -gFW -aaf -pRd -aaf -gFW -gFW -gFW -gFW -gFW -aaa -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(158,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaa -aaa -aaa -aaa -aaf -dni -asB -amH -anN -dnS -arJ -arI -dnh -dqu -doh -axO -ocS -vgI -mNV -ryl -dpm -kLP -qZf -szK -urs -oDl -rgM -urs -rvU -urs -iGQ -dYF -iJM -hwv -nmz -nmz -nmz -nmz -nmz -nmz -nmz -vsF -kiW -teR -mmy -gsy -qCB -iLe -bCK -qxd -jJw -usM -lXt -xHm -tyC -kLr -kdi -gmD -atm -bLZ -bPm -apc -bSf -apc -qxd -uhB -bXe -qxd -qxd -qxd -uwH -wxP -cft -pOP -pOP -pOP -gXY -cgz -cng -cgz -cpP -ack -ack -ack -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaa -anT -aaa -aaa -aaf -aaf -aaa -aaa -aaa -gHk -aaa -aaf -aaa -aaf -aaa -aaa -aaf -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(159,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaf -aaf -aaf -aaf -aaf -dnh -avG -dnh -apd -dnS -arK -dnS -dnh -dnh -dnh -axO -ocS -ylE -eOd -mFr -tHP -sLW -lUC -lUC -lUC -ezu -xbT -opc -xLR -wAX -nnB -vSv -saT -kwP -dsL -scD -vfZ -lrV -dtM -eDX -lLt -fJU -wox -ghl -nYq -pTr -eDP -iLe -bvg -odq -ipm -hAI -oBF -erz -jxI -kLr -qDJ -mmU -atm -cTw -bPn -bQR -apc -anM -qxd -hQA -qsV -sJr -hGi -ikq -eWr -xbz -oCu -aaf -aaf -aaf -aaf -aaf -aaf -aaa -aaf -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaa -anT -anT -anT -anT -anT -aaa -aaf -aaa -gHk -aaa -aaa -aaa -aaf -aaf -anT -anT -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(160,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaa -aaf -dnh -amH -dnh -ape -dnS -arL -ate -dDL -avt -awJ -axS -ocS -lmt -vGP -vrr -gjr -ePL -irz -ePL -ePL -ePL -dZP -ePL -dxr -ePL -dur -khP -ksV -wcY -qJb -pLx -lod -jSx -heu -iTy -xPz -vZw -iMH -tMN -lKe -kxY -kNr -btz -bvh -qxd -oNX -vzb -iix -woN -tyC -kLr -iix -sKv -qxd -qxd -qxd -qxd -qxd -qxd -qxd -cZH -hpw -tfk -mMn -faG -sKe -sfV -aaf -dPI -dPI -dPI -dPI -dPI -aaf -aaa -aai -aaf -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaf -aaa -anT -aaa -aaa -aaf -aaa -aaa -anT -aaf -ihN -aaf -aqB -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(161,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaf -aaf -aaf -ack -dni -bcO -dnS -dnS -dnS -dnh -avu -ocS -egx -ocS -tJR -jUF -kSn -qAr -pAk -tiT -kjA -eOf -pAk -kjR -pAk -nVX -oCb -tiT -pAk -aAs -wZn -eDX -rWl -kwE -krO -eWn -eDX -lLt -qGP -kiW -lKe -qlI -lKe -vCf -iLe -kqF -qxd -wtG -qWR -cVp -woN -dtk -lFH -hdJ -shK -itH -itH -mgn -mgn -qxd -jEr -iKH -dVX -jKi -mMn -mMn -esP -kIw -wku -cfu -mTL -hQE -pLf -pLf -dPI -aaf -aaa -bzi -aaa -aai -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaa -anT -aaa -aaa -aaf -aaf -aaa -aqB -aaa -aaa -aaa -anT -aaf -aaf -aaa -aaa -aaa -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(162,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaa -aaf -aaa -aaf -dnh -apg -aqs -arM -ocB -ocB -avv -ocS -rTM -gtO -ygd -pan -vdd -eNK -wtK -tZi -ptX -ocS -tZi -hYk -tZi -qUM -ptX -tZi -wtK -eNK -mzH -ocS -aYu -aYu -aYu -aYu -aYu -aYu -yeW -kiW -lKe -qnE -lKe -nUC -iLe -iLe -qxd -oBX -olw -oWF -cWn -uKL -ktV -wKg -uTg -tFA -hHh -jxw -jxw -jDD -xGN -xGN -gxl -wda -bvN -bvN -pZc -rVI -qHn -aaf -dYX -fwH -sTB -fXs -dPI -aaf -aaa -bzi -aaa -bzj -aaf -aaf -aaf -aaf -aaf -aaa -aaa -aaa -aaf -aaf -lMJ -lMJ -aaf -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -anT -anT -anT -anT -anT -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(163,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -kCp -kCp -kCp -kCp -kCp -kCp -kCp -dLm -jgc -iFm -mEE -jgc -fuH -nid -sYL -yib -vdd -wGp -eYD -dOw -dOw -dOw -dOw -dqE -dOw -dOw -dOw -dOw -mZT -fDh -mzH -apc -aYu -aZL -bbB -pdm -bem -bfV -oag -vmm -olW -sah -xov -ltg -txb -trn -sKv -oay -fNf -kWW -gGc -grX -hop -ldI -elC -kKa -ooB -ibJ -ibJ -ibJ -ibJ -ibJ -ibJ -omb -mMn -mMn -iAK -tie -spO -cfw -mTL -ilE -iKQ -pLf -dPI -aaf -aaa -bzi -aaa -bzj -aaa -aaa -aaa -aac -aaf -aaf -aaf -aaf -aaf -aaa -aaa -aaa -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(164,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -kCp -khq -uPN -kXS -qpQ -xvg -hBG -eCS -lFY -ujb -exJ -ful -eln -vAr -xFW -xoe -sdQ -ipw -dNK -nZd -eOC -xrw -ucP -iIW -kTe -rqG -kbg -sbQ -opw -eYH -aVf -apc -aYu -aZM -bbC -bcM -ben -bfW -paS -nmt -hNW -hNW -xNe -eDc -lTr -xca -hZe -mZD -mSB -dRb -hAI -tFH -tfk -sfM -kBk -mMn -eCZ -mMn -mMn -mMn -mMn -mMn -mMn -eWY -mMn -veT -lvk -xuP -rid -cfx -dPI -dPI -dPI -dPI -dPI -aaf -aaf -bzi -aaa -bzj -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(165,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aag -aai -aag -aag -aag -aaj -aag -aag -aag -aai -aag -aag -aag -aai -aag -kCp -trj -qGt -nAB -mNX -xXs -pHX -qIq -kCp -gZo -nPJ -kCp -qCO -dKV -sCL -qIM -qDt -ipw -iBm -hab -hab -rkx -vaA -oek -qkm -rkx -uIA -pIc -dTj -eYH -mzH -apc -aYu -aZN -bbD -bcN -beo -bfX -pDf -tMN -tnh -ryM -kNM -vpQ -kuk -oOQ -naf -gaV -fpg -lUs -fFR -fNh -tNF -dHR -nwU -lOv -pcs -mMn -mMn -mMn -mMn -mMn -mMn -mMn -mMn -tSa -kKR -vtk -wqi -cfu -mTL -rbc -duF -duF -dPI -aaf -aaa -bzi -aaa -aai -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(166,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aag -aaa -aaa -aaf -aaf -aaa -aaf -aaa -aaf -aaa -aaa -aaf -aaf -aaa -aaf -kCp -jMw -khq -ekH -khq -msv -fUl -btW -kCp -kCp -avz -ocS -ocS -uuf -mlA -fQZ -fKM -xtF -iBm -hXs -hXs -rkx -pKu -nOJ -gxO -rkx -wpz -wpz -nHn -kRI -uyH -dgc -aYu -cXA -cXA -cXA -cXA -cXA -qiA -osB -iwg -iYP -eZS -iYP -iYP -jgy -uhB -jiZ -mHn -mHn -fGc -rdg -fGc -lHN -tac -wqG -mMn -mMn -mMn -mMn -mMn -mMn -mMn -mMn -mMn -tSa -pUZ -rSI -uKL -aaf -dYX -kro -eFn -lwJ -dPI -aaf -aaa -bzi -aaa -bzj -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(167,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aag -aaa -pKe -hEr -upd -aaa -pKe -hEr -upd -aaa -pKe -hEr -upd -aaa -aaf -kCp -jSy -qGt -oJt -mgJ -uTn -mpO -eKD -tcb -kCp -avA -ocS -wtx -hsG -puC -stG -eHP -tdH -qiT -dZC -rkx -pcz -wrq -tXO -eyU -ubO -rkx -dZC -jVR -eYH -mzH -aWH -dgi -dgc -aqq -aqr -aWu -jcA -jcA -jcA -iYP -iYP -xQC -iYP -hWA -gRu -hZk -maO -nJr -oVH -xnt -kyJ -dHX -vRu -kJQ -wqG -mMn -mMn -mMn -mMn -mMn -mMn -mMn -mMn -mMn -tSa -guR -elE -spO -cfw -mTL -ygg -xMA -duF -dPI -aaf -aaa -aai -aaa -bzj -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(168,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aag -aaf -pKe -ioo -upd -aaa -pKe -ioo -upd -aaa -pKe -ioo -upd -aaa -aaf -kCp -khq -pnF -azB -pnM -tPJ -uot -htH -hGo -kCp -avB -ocS -hzd -stG -vPE -roz -iMF -jyo -qkC -jfY -rSx -dWR -euh -nOJ -rxM -ruP -rGV -jfY -lJc -uia -sKz -apc -apc -dgo -apc -cXZ -atm -eTD -jcA -jDz -iYP -joj -uLo -xTU -wBE -fHh -flE -rMA -npE -pPS -esR -mMn -uED -hfg -tac -wqG -mMn -mMn -eWY -mMn -mMn -mMn -mMn -jAn -mMn -kdB -eCq -nYm -rid -cfx -dPI -dPI -dPI -dPI -dPI -aaf -aaf -bzi -aaa -bzj -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(169,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaa -aaa -aaa -aag -aaf -pKe -ioo -upd -aaf -pKe -ioo -upd -aaf -pKe -ioo -upd -aaf -aaf -kCp -kCp -kCp -kCp -kCp -kCp -kCp -kCp -kCp -kCp -avC -ocS -lPI -stG -pwE -iuW -kBn -ipw -qkC -jfY -rSx -dWR -euh -pZY -rxM -ruP -rSx -okX -lJc -gPs -mzH -atm -alr -dgp -cXI -cYj -atm -wOY -adF -wOY -iYP -mtJ -xiO -qOc -iYP -jNm -xNr -qUd -iDK -eBe -dwW -jdV -sGo -tkC -tac -gyN -wlC -mMn -mMn -mMn -mMn -mMn -mMn -mMn -mMn -tSa -fqD -jwC -ktI -cfy -wJb -vHq -gHz -uLh -dPI -aaf -aaa -bzj -aaf -aai -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(170,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aac -aaa -aaa -aaa -aaa -aaa -aag -aaf -pKe -ioo -upd -aaa -pKe -ioo -upd -aaa -pKe -ioo -upd -aaa -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -dni -dps -dpL -avD -ocS -hzd -stG -tkS -iuW -kBn -ipw -hdk -jfY -rSx -lJy -euh -nOJ -rxM -lqj -rSx -jfY -sXS -oFv -dGD -dgd -dgj -dgp -alr -atm -atm -aaa -aaa -aaa -iYP -sCD -wOW -xdX -hbh -dFX -dlF -fCZ -qVE -qoD -oyV -mtM -ixJ -htZ -oLm -eWY -kEE -mMn -mMn -mMn -mMn -mMn -eWY -mMn -lzQ -tSa -oQs -rSI -uKL -aaf -dYX -iqT -wFX -pii -dPI -aaf -aaa -bzi -aaa -bzj -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(171,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaj -aai -aaj -aag -aaa -pKe -ioo -upd -aaa -pKe -ioo -upd -aaa -pKe -ioo -upd -aaa -aaa -aaf -aaa -aaa -ake -alv -apm -apm -apm -apm -dnR -avE -ocS -hVj -iXR -xti -stG -eHP -hij -gLc -dZC -rkx -rkx -jZx -szP -ylb -rkx -rkx -dZC -rhU -mDk -iiu -aaf -aYx -dgr -dgw -dgA -dgI -aaa -aaa -aaa -mVL -aNC -brM -aNC -iYP -kxM -joE -lYe -tfk -vms -vOz -wAs -qha -jor -xaR -htZ -kEE -mMn -mMn -mMn -mMn -mMn -mMn -mMn -mMn -xxf -mze -rlJ -vxg -cfy -leN -eBD -rAS -uLh -dPI -aaf -aaa -bJf -aaf -bKK -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaf -aaa -aaa -aaa -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(172,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aag -aaa -aaf -aaa -aaa -aaf -vhq -aaf -aaf -aaf -vhq -aaf -aaa -aaf -vhq -aaf -aaa -aaa -aaf -alv -alv -alv -alv -apn -aqy -arT -apm -dnS -avB -ocS -ocS -mlA -hfU -fQZ -nFz -eXd -uLv -rwk -dPp -rwk -wFc -gNH -ezr -dPp -ehN -ewx -dXn -sZV -iiu -aaa -aYx -dgf -dgj -ack -dgJ -aaa -aaa -aaa -aaa -aaf -bpw -aaf -nXO -iod -qxd -hFa -okm -wMJ -lOJ -fVg -cZV -jfa -hTE -hpr -pwz -paM -wGv -qAG -snq -hPo -odn -iyn -snq -veq -ugm -rSI -xqi -aaf -dPI -dPI -dPI -dPI -dPI -aaf -aaa -aaf -aaa -bzj -aaa -aaa -aaa -aaf -aaf -aaf -aaf -aaf -aaa -aaa -aaa -aaa -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(173,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aag -aaa -oyi -pfE -pfE -hkr -osD -osD -iYH -osD -osD -osD -osD -tzp -osD -osD -osD -osD -rTl -afQ -akd -alw -sGh -apo -aqz -arU -atk -aux -avF -dqT -dqT -aaf -ack -nxb -kRP -iku -npi -ghS -mWy -wyJ -nxc -xKQ -tXH -uZM -xzD -nxU -jRU -mfS -dGD -dge -azd -azd -azd -dgB -dgK -aaa -cUL -aaa -aaf -aaf -bpw -aaa -aaf -ack -qxd -pUB -sWZ -hfv -xMl -wgN -ldb -kRO -jpq -jdJ -rxK -jjZ -tiE -kGH -wFu -tqV -wFu -sTr -jfi -wFu -wFu -pjr -xqi -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -bzj -bzj -bzj -aaf -aaf -aaf -aaf -aaa -aaa -aaa -aaf -aaf -aaf -lMJ -lMJ -aaf -aaf -aaa -aaa -aaa -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(174,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aag -aaa -aaa -aaa -aaf -aaf -xsj -aaf -aaa -aaf -xsj -aaf -aaa -aaf -xsj -aaf -aaa -aaa -aaf -alv -alv -alv -alv -app -aqA -arV -atl -auy -dnS -dqT -dqT -aaf -ack -ack -iET -tZi -wQo -tZi -ocS -ocS -tZi -tZi -tZi -ocS -ocS -tZi -wQo -tZi -mzH -dgf -dgk -dgt -dgk -dgv -dgJ -anT -aaf -aaf -aaf -aaa -bpw -aaa -aaa -aaf -qxd -qxd -xbR -eBq -ktI -thi -ktI -eBq -ktI -thi -xqW -eBq -ktI -thi -ktI -eBq -ktI -thi -fhB -fhB -fhB -gBn -usC -aaf -aaa -aaa -aaf -aaa -aaf -aaa -aaa -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(175,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaj -aaj -aai -aaj -aaf -pKe -kDw -upd -aaa -pKe -kDw -upd -aaa -pKe -kDw -upd -aaa -aaa -aaf -aaa -aaa -ake -alv -apm -apm -apm -apm -dnh -dnS -dnz -dqT -aaf -aaf -aaf -iET -roz -tJj -ghb -roz -roz -roz -fQx -eqJ -roz -roz -ghb -tJj -roz -mzH -aWK -dgk -dgt -dgk -dgB -dgM -dgN -dgO -dgO -dgw -dgO -dgS -dgO -dgO -dgw -dgw -dgw -dgw -bCz -dgw -dha -dgw -dhc -dgw -dha -dhl -bJb -aaf -bFY -aaf -bJb -aaf -bFY -aaf -aaf -qxd -vcj -qxd -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(176,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaa -aaa -aaa -aag -aaa -pKe -kDw -upd -aaa -pKe -kDw -upd -aaa -pKe -kDw -upd -aaf -aaa -aaf -aaa -aaa -aaa -aaf -aaa -aaa -aaa -dnh -auz -dqp -dqT -dqT -aaa -aaa -aaa -mlA -taH -mKw -jng -roz -roz -roz -roz -roz -roz -roz -omQ -uYg -hJe -hvd -dgg -azd -azd -azd -dgv -aaf -anT -aaa -aaa -aaf -aaf -bpx -aaf -aaf -aaf -aaa -aaf -dPI -vOr -dYX -wQW -dPI -eCM -dYX -wQW -dPI -eCM -dYX -wQW -dPI -eCM -dYX -wQW -dPI -aaf -uDy -wqs -uDy -aaf -aaa -aaf -aaa -aaf -aaa -aaf -aaa -aaa -aai -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaf -aaa -aaa -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(177,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaa -aaa -aaa -aag -aaf -pKe -kDw -upd -aaf -pKe -kDw -upd -aaf -pKe -kDw -upd -aaa -aaa -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -dni -auA -dnS -dqT -aaa -aaa -aaa -aaa -ocS -vvU -mKw -lRl -roz -roz -roz -fQx -roz -roz -roz -usB -uYg -lcm -ocS -aWK -dgk -dgt -dgk -dgB -aaa -anT -aaa -aaa -aaf -aaa -bpw -aaa -aaa -aaf -aaa -aaf -dPI -xXd -sZg -pAr -dPI -qGy -nFp -kNs -dPI -iiP -mWu -lBv -dPI -ipG -naS -ktS -dPI -aaf -uDy -pDb -uDy -aaf -aaa -aaf -qxd -vOQ -xCI -ilJ -ilJ -aaa -bKK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(178,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaa -aaa -aaa -aag -aaf -pKe -kDw -upd -aaa -pKe -kDw -upd -aaa -pKe -kDw -upd -aaa -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaf -aaa -dnh -auB -avG -dqT -aaa -aaa -aaa -aaa -ocS -ghb -xCf -dVP -ghb -ghb -vIC -ocS -kAA -ghb -ghb -uGl -skV -roz -ocS -dgh -dgk -dgk -dgk -dgv -aaf -anT -aaa -aaa -aaf -aaa -bpw -aaa -aaa -aaf -aaa -aaf -dPI -jQT -jQT -jQT -dPI -izZ -iFl -izZ -dPI -gFm -pgT -gFm -dPI -hGX -lIs -hGX -dPI -aaf -sdw -juj -bgo -aTQ -ewK -iJb -neP -php -jQT -jQT -xCI -aaf -bKK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(179,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaj -aaa -pKe -nLQ -upd -aaa -pKe -nLQ -upd -aaa -pKe -nLQ -upd -aaf -aaf -aag -aaa -aaa -aaa -aaa -aaa -aaf -aaa -dnh -dnh -jKK -dqT -aaf -aaa -aaa -aaa -ocS -ocS -ocS -ocS -ocS -ocS -ocS -ocS -ocS -ocS -ocS -ocS -ocS -ocS -ocS -aWK -dgm -dgu -dgm -dgB -aaa -anT -aaa -aaa -aaf -aaf -bpx -aaf -aaf -aaf -aaf -aaf -dPI -jQT -mkz -gdM -dPI -izZ -jGW -mMU -dPI -oMq -mEw -erE -dPI -hGX -tUr -rxl -dPI -aaf -aMr -juj -juj -juj -juj -juj -jco -jQT -iph -jQT -vOQ -aaa -bKK -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(180,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaj -aaa -aaf -aaa -aaf -aaa -aaa -aaf -aaf -aaa -aaf -aaf -aaa -aaa -aaa -aaf -aaa -aaa -aaa -aaa -aaa -ack -ack -atn -anN -dnS -dqT -aaf -aaa -aaa -aaa -aaa -aaf -aaa -aaf -aaa -aaa -aaf -aaa -aaf -aaa -aaf -aaa -aaf -aaf -ack -ack -aye -dgv -aye -dgv -aaf -anT -aaf -aaf -aaf -aaa -bpw -aaa -aaf -aaa -aaa -aaf -dPI -dPI -dPI -dPI -dPI -dPI -dPI -dPI -dPI -dPI -dPI -dPI -dPI -dPI -dPI -dPI -dPI -aaf -sdw -juj -aVk -aNC -lix -iwo -exg -dox -jQT -jQT -qxd -aaf -aai -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(181,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaj -aai -aag -aag -aag -aai -aag -aag -aag -aaj -aag -aag -aai -aag -aai -aag -aai -aag -aaf -aaf -aaf -aaf -aaf -dnh -avJ -avG -dqT -aaf -aaa -aaa -aaa -aaa -aaf -aaa -aaf -aaa -aaa -aaf -aaa -aaf -aaa -aaf -aaa -aaa -aaf -aaf -aaf -aaa -aaa -aaf -aaa -aaa -aaf -aaa -aaa -aaf -aaa -bpw -aaa -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aMr -jUp -bBb -aaf -aaa -aaf -vOQ -xCI -ilJ -xCI -vOQ -aaa -aaf -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(182,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaa -dnh -dnh -bOY -dqT -aaf -anT -anT -anT -anT -aaf -anT -anT -anT -anT -anT -anT -aqB -anT -anT -anT -anT -anT -anT -aaf -aaa -aaa -aaf -aaa -aaa -aaf -aaa -aaa -aaf -aaa -bpw -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaa -aaa -aaa -aaa -aaf -aaa -aaf -aaa -aaf -aaa -aaf -aaa -aaf -aaa -aaf -aaa -aaa -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaf -aaa -aaa -aaa -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(183,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaf -aaf -aaf -ack -aaf -aaa -aaa -aaa -aaf -aaa -aaa -bpu -bpu -bpu -bpu -bpu -bpu -bpu -bpu -bpu -bpu -aaa -aaa -aaa -aaf -aaf -aaf -aaf -aaa -aaa -aaa -aaa -aaa -aaf -aaa -bpw -aaa -aaf -aaf -aaf -aai -bzj -bzj -bzj -bzj -bzj -bJe -bzj -bzj -aai -bzj -bzj -bzj -bKK -bzj -bzj -bzj -bzj -bJe -bzj -aai -bzj -aaf -aaf -aai -bzj -aai -bzj -bzj -aaf -aaf -aaa -aaa -sKV -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(184,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaf -aaf -anT -anT -anT -anT -aqB -anT -anT -anT -anT -aqB -aaf -aaf -aaf -aaf -aaa -aaf -aaf -aaa -aaa -aaa -aaa -aaa -aaf -aaa -bpw -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaa -aaa -aaa -aaa -aaf -aaa -aaa -aaa -aaf -aaa -aaa -aaa -aaf -aaa -aaa -aaa -aaf -aaa -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(185,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaa -aaa -aai -aaa -aaa -aaa -aaa -aaa -aaf -aaa -bpw -aaa -aaf -aaf -aai -bzi -bzi -bzi -bzi -bzi -bzi -bJf -bzi -bzi -bzi -bzi -bzi -bzi -bJf -bzi -bzi -bzi -bzi -bJf -aaf -aaf -aaf -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(186,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aai -aaa -aai -aaa -aaa -aaa -aaa -aaa -aaf -aaf -bpx -aaf -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaa -aaa -aaa -aaa -aaf -aaa -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(187,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aag -aaa -siF -aaa -aaa -aaa -aaa -aaa -aaf -aaa -bpw -aaa -aaf -aaf -aai -bzj -bzj -aai -bzj -siF -bzj -bzj -bKK -bzj -bzj -bzj -bzj -siF -aai -bzj -bzj -bzj -bzj -bKK -bzj -bzj -anS -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaf -aaa -aaa -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(188,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aai -aaa -anT -aaa -aaa -aac -aaa -aaa -aaf -aaa -bpw -aaa -aaf -aaa -aaa -aaa -aaa -aai -aaa -anT -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(189,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaf -aaf -anT -aaa -aaa -aaa -aaa -aaa -aaf -aaa -bpw -aaa -aaf -aaa -aaa -aaa -aaa -aaf -aaa -anT -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(190,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aai -aaa -anT -aaa -aaa -aaa -aaa -aaa -aaf -aaa -bpw -aaa -aaf -aaa -aaa -aaa -aaa -aai -aaf -anT -aaa -aaa -aaa -oRp -oRp -xtS -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(191,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aag -aaa -aai -aaa -aaa -aaa -aaa -aaa -aaf -aaa -bpw -aaa -aaf -aaa -aaa -aaa -aaa -aag -aaa -anT -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(192,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aag -aaa -anT -aaa -aaa -aaa -aaa -aaa -aaf -aaa -bpw -aaa -aaf -aaa -aaa -aaa -aaa -aag -aaa -aai -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(193,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aai -aaa -anT -aaa -aaa -aaa -aaa -aaa -aaf -aaf -bpx -aaf -aaf -aaa -aaa -aaa -aaa -aai -aaa -siF -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(194,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -xtS -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -xtS -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aai -aaa -anT -aaa -aaa -aaa -aaa -aaa -aaf -aaa -bpy -aaa -aaf -aaa -aaa -aaa -aaa -aai -aaa -siF -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaf -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(195,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aag -aaa -anT -aaa -aaa -aaa -aaa -aaa -aaf -aaa -bpy -aaa -aaf -aaa -aaa -aaa -aaa -aag -aaa -anT -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaf -aaf -aaf -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(196,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aag -aaf -aai -aaf -aaf -aaf -aaa -aaa -aaf -aaa -bpz -aaa -aaf -aaa -aaa -aaa -aaa -aag -aaa -anT -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaf -czK -cDv -czK -aaf -aaf -aaa -aaa -aaa -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(197,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aag -aaa -siF -aaa -aaa -aaf -aaf -aaf -aaf -bno -bpA -brO -aaf -aaa -aaa -aaa -aaa -aag -aaf -aai -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaf -cBM -czK -cDw -czK -cBM -aaf -aaf -aaa -aaa -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(198,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aai -aaa -anT -aaa -aaa -aaf -aaa -aaa -blu -aaa -bpA -aaa -btI -aaa -aaa -aaa -aaa -aag -aaa -anT -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaa -aaa -aaf -aaf -czK -czK -cCH -cDv -cEB -czK -czK -aaf -aaf -aaa -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(199,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -anT -aaa -anT -aaf -aaf -ack -ack -aaf -blv -aaf -bpA -aaf -blv -aaf -aaf -aaf -aaf -aag -aaa -siF -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaa -aaa -aaf -czJ -czJ -cBN -cCI -cCI -cCI -cFv -czJ -czJ -aaf -aaa -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(200,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -anT -aaa -aqB -aaa -aMq -jLH -jLH -aOV -blw -aNw -bpB -aNw -btJ -aaa -aaa -aaa -aaa -aai -aaa -anT -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaf -aaf -aaf -czK -cAQ -cBO -cCI -cDx -cCI -cFw -cGp -czK -aaf -aaf -aaf -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(201,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -anT -aaa -anT -aaa -aMq -kDk -kDk -aOV -aMq -vgD -paA -mmX -btK -aaa -aaa -aaa -aaa -aag -aaa -aai -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaa -aaa -aaf -czJ -czJ -cBP -cCI -cCI -cCI -cFx -czJ -czJ -aaf -aaa -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(202,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -anT -aaa -anT -anT -beq -kho -fMm -beq -blx -iDz -wTk -dIo -blx -anT -anT -anT -anT -aag -aaa -anT -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaa -aaa -aaf -aaf -czK -czK -cCJ -cDy -cEC -czK -czK -aaf -aaf -aaa -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(203,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -anT -anT -anT -anT -anT -anT -anT -anT -aaa -aSD -xVh -kDk -aOX -bly -jYV -lBY -mxo -aOX -aNw -aNw -aTQ -aaa -anT -aaa -aag -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaf -cBM -czK -cDz -czK -cBM -aaf -aaf -aaa -aaa -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(204,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaa -aaa -aaa -anT -anT -anT -anT -anT -anT -aaa -aTQ -aNw -aNw -aNw -aNw -aNw -aSD -fgA -nLx -nmM -plI -plI -iYr -tNY -rYf -plI -plI -plI -kPR -bAS -anT -anT -anT -anT -anT -anT -anT -anT -anT -anT -anT -anT -anT -anT -anT -aaa -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaf -czK -czJ -czK -aaf -aaf -aaa -aaa -aaa -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(205,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaa -aaa -aaa -anT -aaa -aTQ -aNw -aNw -aNw -aSD -qTR -mvY -mvY -mvY -mvY -mvY -mvY -hKd -aVk -aOY -aOY -aSG -shE -xRM -tdS -aOU -aOY -bcQ -qgP -bAT -aNw -aNw -aNw -bJl -aNw -aNw -aNw -aNw -bJl -aNw -aNw -aNw -aTQ -aaa -anT -aaa -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaf -aaf -aaf -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(206,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaa -aaa -aaa -anT -aMq -stT -mvY -mvY -mvY -mvY -qpG -aVk -aOY -aOY -aOY -aOY -aOY -xJf -aaa -aaa -aaa -jNA -guM -psh -pQD -cMk -aaa -aMq -jyT -mvY -mvY -mvY -mvY -tyt -tyt -cVP -tyt -tyt -tyt -tyt -mvY -mvY -ohx -bBb -anT -aaa -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaf -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(207,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaa -aaa -aaa -anT -aMq -hye -aOU -aOY -aOY -aOY -aNC -aaa -aaa -aaa -aaa -aaa -aaa -fLL -aaa -aaa -xVW -xVW -xDY -bpI -saP -xVW -aaa -aaa -aNC -aOY -aOY -aOY -aOY -aOY -aOY -bKQ -aOY -aOY -aOY -aOY -aOY -bcQ -hye -bgn -anT -aaa -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(208,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaa -aaa -aaa -anT -aMq -hye -aOV -aaa -aaa -aaa -aaf -aaa -xVW -xVW -xVW -xVW -xVW -xVW -xVW -xVW -xVW -blB -bnw -bpJ -brW -xVW -xVW -xVW -iuC -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aMq -hye -bgn -anT -aaa -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(209,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaa -aaa -aaa -anT -aMq -hye -aOV -aaa -aaa -aaa -xVW -xVW -xVW -aTV -aTV -aTV -xVW -xVW -xVW -xVW -bjP -blC -bnx -oKi -bsf -bGh -nix -bGh -xVW -xVW -xVW -xVW -xVW -xVW -xVW -xVW -gJK -gJK -aaa -aaa -aaa -aMq -hye -bgn -anT -aaa -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(210,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaa -anT -anT -anT -aMr -hye -aOV -aaa -aaa -xVW -xVW -aTV -aTV -aTV -aZQ -aTV -aTV -aTV -aTV -aTV -bjP -blD -bny -bpL -brY -btL -btL -txh -btL -btL -bCD -bEf -bGc -bHC -bJg -xVW -xVW -xVW -xVW -aaa -aaa -aMq -sCy -bBb -anT -anT -anT -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(211,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaa -anT -aaa -aNw -aSD -hye -aOV -aaa -aaa -xVW -aTV -aVl -aWL -aYy -aZR -bbF -bcP -aVl -bgh -bim -bjQ -bjQ -bnz -bpM -brZ -btL -bvu -bxq -bzn -bAU -bCD -bEg -bGd -bGd -bJm -bNX -bMo -bOc -xVW -aaa -aaa -aMq -sCy -bAT -aNw -aaa -anT -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(212,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaa -anT -aMq -tDJ -whD -uvH -aOV -aaa -xVW -xVW -aTV -aVm -aWM -aWM -aZS -aWM -aWM -aWM -bgi -bin -bjR -brX -bnA -bpN -bsa -btL -bAW -bxn -bzo -bAV -bCD -bEh -bGe -bGd -bKL -bNY -bGd -ceC -xVW -gJK -aaa -aMq -iLX -whD -uRL -bgn -anT -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(213,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaa -anT -aMq -mpB -sBz -uvH -aOV -aaa -xVW -xVW -aTV -aVn -aWN -aTV -bqm -aTV -aTV -beu -aWN -bio -bjR -blF -bnB -bpO -bsb -btM -bvw -bxo -bzp -bJh -bCE -bCE -bCE -bHD -bGd -bGd -bGd -bUL -xVW -gJK -aaa -aMq -iLX -fGl -uvH -bgn -anT -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(214,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaa -anT -aMq -dtj -kbS -qaA -slh -slh -xMk -msu -aTW -bjS -aWO -aYz -brx -bvf -aTV -byx -bgj -pvK -blI -blG -mnr -bpP -bsc -btN -bvx -bxp -pCg -bAX -bCF -bEi -lWY -lpD -bKM -bKO -bMp -bNZ -xMk -pbQ -slh -nAl -fWy -jaL -pJd -bgn -anT -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(215,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaa -anT -aMq -mpB -sBz -uvH -aOV -aaa -xVW -rgc -aTX -aVp -aWP -aTV -aZV -aTV -aTV -kRE -bgk -blE -bjQ -blH -bnD -bpQ -bsd -btL -bvy -bxq -bzr -bAY -bCE -bCE -bCE -bHF -bJk -bJk -bMq -cgy -xVW -gJK -aaa -aMq -iLX -fGl -uvH -bgn -anT -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(216,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaa -anT -aMq -pVM -jBh -uvH -aOV -aaa -xVW -xVW -aTV -aVq -aWQ -aYA -aZW -aYA -aYA -bex -bgl -bir -bjQ -bse -waU -bpR -byM -btL -bvz -bxr -bzs -bJi -bCD -bEj -bGe -bGd -bKP -bOb -bMr -cho -xVW -gJK -aaa -aMq -iLX -jBh -lMh -bgn -anT -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(217,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaa -anT -aaa -aOY -bcQ -kQm -aOV -aaa -aaa -xVW -aTV -aVr -aWR -aYB -aZX -bbH -aWR -aVr -bgm -bis -bjQ -bjQ -bnz -bpS -brZ -btL -bvA -bxs -yhn -bBa -bCD -bEg -bGd -bGd -bKN -bOa -jNs -chn -xVW -aaa -aaa -aMq -sCy -aVk -aOY -aaa -anT -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(218,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaa -anT -anT -anT -aMr -kQm -aOV -aaa -aaa -xVW -xVW -aTV -aTV -aTV -aZY -aTV -aTV -aTV -aTV -aTV -dZs -foj -nEw -gjy -tQK -btL -btL -btL -btL -btL -bCD -bEk -bGf -bHG -bJn -xVW -xVW -xVW -xVW -aaa -aaa -aMq -sCy -bBb -anT -anT -anT -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(219,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaa -aaa -aaa -anT -aMq -kQm -aOV -aaa -aaa -aaa -xVW -xVW -xVW -aTV -aTV -aTV -xVW -xVW -xVW -xVW -dZs -dvk -mql -oZL -vNy -xVW -xVW -xVW -xVW -xVW -xVW -xVW -xVW -xVW -xVW -xVW -gJK -gJK -aaa -aaa -aaa -aMq -sCy -bgn -anT -aaa -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(220,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaa -aaa -aaa -anT -aMq -kQm -aOV -aaa -aaa -aaa -aaf -aaa -xVW -xVW -xVW -xVW -xVW -xVW -xVW -xVW -xVW -ffx -wZw -ebf -wqL -xVW -gJK -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aMq -sCy -bgn -anT -aaa -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(221,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaa -aaa -aaa -anT -aMq -kQm -aOX -aNw -aNw -aNw -bJl -aaa -aaa -aaa -aaa -aaa -aaa -fLL -aaa -aaa -xVW -oDQ -mIt -rNi -jso -xVW -aaa -aaa -bJl -aNw -aNw -aNw -aNw -aNw -aNw -bJl -aNw -aNw -aNw -aNw -aNw -bly -sCy -bgn -anT -aaa -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(222,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaa -aaa -aaa -anT -aMq -gvJ -mvY -mvY -mvY -mvY -rwx -aOX -aNw -aNw -aNw -aNw -aNw -kSF -aaa -aaa -xVW -xVW -xVW -lrM -xVW -xVW -aaa -aMq -fNy -mvY -mvY -mvY -mvY -mvY -mvY -eKo -tyt -tyt -tyt -tyt -tyt -tyt -tXR -bBb -anT -aaa -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(223,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaa -aaa -aaa -anT -aaa -aNC -aOY -aOY -aOY -aSG -hAr -mvY -mvY -mvY -mvY -mvY -mvY -kvr -bgn -aaa -aaa -aaa -aMq -lAN -bgn -aaa -aaa -aMq -sCy -aVk -aOY -aOY -aOY -aOY -aOY -aNC -aOY -aOY -aOY -aOY -aOY -aOY -aNC -aaa -anT -aaa -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(224,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaa -aaa -aaa -anT -anT -anT -anT -anT -anT -aaa -aNC -aOY -aOY -aOY -aOY -aOY -bcQ -sCy -bgo -aNw -aNw -aNw -aSD -uZF -bsj -aNw -aNw -bly -sCy -bgn -anT -anT -anT -anT -anT -anT -anT -anT -anT -anT -anT -anT -anT -anT -anT -aaa -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(225,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -anT -anT -anT -anT -anT -anT -anT -anT -aMq -mwg -mvY -mvY -mvY -mvY -mvY -vmE -mvY -mvY -mvY -mvY -lMh -bBb -anT -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(226,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -anT -aaa -aNC -aOY -aOY -aOY -aOY -aOY -aNC -aOY -aOY -aOY -aOY -aNC -aaa -anT -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(227,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -anT -anT -aag -anT -anT -anT -anT -anT -anT -anT -anT -anT -anT -anT -anT -anT -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(228,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(229,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(230,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(231,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(232,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(233,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(234,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(235,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(236,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(237,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(238,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(239,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(240,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(241,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(242,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(243,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(244,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(245,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(246,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(247,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(248,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(249,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(250,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(251,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(252,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(253,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(254,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} -(255,1,1) = {" -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -oRp -"} From 3b12566a76942309fc06e53884ff961910597d53 Mon Sep 17 00:00:00 2001 From: bunny232 Date: Sun, 2 May 2021 23:03:25 -0400 Subject: [PATCH 099/259] Create MetaStation.dmm --- _maps/map_files/MetaStation/MetaStation.dmm | 149245 +++++++++++++++++ 1 file changed, 149245 insertions(+) create mode 100644 _maps/map_files/MetaStation/MetaStation.dmm diff --git a/_maps/map_files/MetaStation/MetaStation.dmm b/_maps/map_files/MetaStation/MetaStation.dmm new file mode 100644 index 0000000000..216b2a3db7 --- /dev/null +++ b/_maps/map_files/MetaStation/MetaStation.dmm @@ -0,0 +1,149245 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aaa" = ( +/turf/open/space/basic, +/area/space) +"aab" = ( +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = 24 + }, +/obj/structure/rack, +/obj/item/grenade/barrier{ + pixel_x = -3; + pixel_y = 1 + }, +/obj/item/grenade/barrier, +/obj/item/grenade/barrier{ + pixel_x = 3; + pixel_y = -1 + }, +/obj/item/grenade/barrier{ + pixel_x = 6; + pixel_y = -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/structure/sign/poster/official/nt_storm_officer{ + pixel_x = -32 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"aac" = ( +/obj/effect/landmark/carpspawn, +/turf/open/space, +/area/space) +"aad" = ( +/obj/structure/rack, +/obj/item/clothing/suit/armor/bulletproof, +/obj/item/clothing/head/helmet/alt, +/obj/item/clothing/suit/armor/bulletproof, +/obj/item/clothing/head/helmet/alt, +/obj/item/clothing/suit/armor/bulletproof, +/obj/item/clothing/head/helmet/alt, +/obj/effect/turf_decal/tile/neutral{ + 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/poster/official/nt_storm{ + pixel_x = 32 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"aaf" = ( +/obj/structure/lattice, +/turf/open/space, +/area/space/nearstation) +"aag" = ( +/obj/structure/grille, +/obj/structure/lattice, +/turf/open/space, +/area/space/nearstation) +"aai" = ( +/obj/structure/grille/broken, +/obj/structure/lattice, +/turf/open/space, +/area/space/nearstation) +"aaj" = ( +/obj/structure/grille, +/turf/open/space, +/area/space/nearstation) +"aav" = ( +/turf/open/space, +/area/space/station_ruins) +"aax" = ( +/turf/closed/wall/r_wall, +/area/security/prison) +"aay" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/turf/open/floor/plating, +/area/security/prison) +"aaA" = ( +/obj/machinery/seed_extractor, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"aaB" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/item/kirbyplants{ + icon_state = "plant-03" + }, +/turf/open/floor/plasteel, +/area/security/prison) +"aaC" = ( +/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 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/security/prison) +"aaD" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/item/kirbyplants, +/turf/open/floor/plasteel, +/area/security/prison) +"aaE" = ( +/obj/machinery/biogenerator, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Prison Hydroponics"; + network = list("ss13","prison") + }, +/turf/open/floor/plasteel, +/area/security/prison) +"aaF" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/security/prison) +"aaG" = ( +/obj/machinery/hydroponics/constructable, +/obj/item/seeds/ambrosia, +/turf/open/floor/plasteel, +/area/security/prison) +"aaH" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/plasteel, +/area/security/prison) +"aaI" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/security/prison) +"aaJ" = ( +/obj/item/reagent_containers/glass/bucket, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel, +/area/security/prison) +"aaK" = ( +/obj/machinery/hydroponics/constructable, +/obj/item/seeds/glowshroom, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/security/prison) +"aaL" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/security/prison) +"aaP" = ( +/obj/machinery/hydroponics/constructable, +/obj/item/cultivator, +/obj/item/seeds/carrot, +/turf/open/floor/plasteel, +/area/security/prison) +"aaQ" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/item/reagent_containers/glass/bucket, +/turf/open/floor/plasteel, +/area/security/prison) +"aaR" = ( +/turf/open/floor/plasteel, +/area/security/prison) +"aaS" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/security/prison) +"aaT" = ( +/obj/machinery/hydroponics/constructable, +/obj/item/plant_analyzer, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"aaW" = ( +/obj/effect/turf_decal/tile/neutral{ + 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/door/poddoor/shutters/window{ + id = "armory"; + name = "Armoury Shutters" + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"aaZ" = ( +/turf/closed/wall/r_wall, +/area/security/execution/education) +"aba" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/structure/cable/yellow, +/turf/open/floor/plating, +/area/security/prison) +"abb" = ( +/obj/machinery/door/airlock/public/glass{ + id_tag = "permahydro"; + name = "Hydroponics Module" + }, +/turf/open/floor/plasteel, +/area/security/prison) +"abc" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/security/prison) +"abd" = ( +/obj/machinery/vending/cola/random, +/obj/structure/sign/poster/official/pda_ad600{ + pixel_x = -32 + }, +/obj/structure/sign/poster/official/pda_ad800{ + pixel_x = -32; + pixel_y = 32 + }, +/obj/structure/sign/poster/official/pda_ad{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/command) +"abe" = ( +/turf/closed/wall, +/area/security/prison) +"abg" = ( +/obj/machinery/door/poddoor{ + id = "SecJusticeChamber"; + name = "Justice Vent" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/security/execution/education) +"abh" = ( +/obj/item/soap/nanotrasen, +/obj/item/bikehorn/rubberducky, +/obj/machinery/shower{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel/freezer, +/area/security/prison) +"abi" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/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 + }, +/turf/open/floor/plasteel/freezer, +/area/security/prison) +"abj" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/easel, +/obj/item/canvas/twentythreeXtwentythree, +/obj/item/canvas/twentythreeXtwentythree, +/turf/open/floor/plasteel, +/area/security/prison) +"abk" = ( +/obj/structure/kitchenspike_frame, +/obj/effect/decal/cleanable/blood/gibs/old, +/obj/structure/sign/poster/contraband/scum{ + pixel_y = -32 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"abl" = ( +/obj/structure/table, +/obj/machinery/computer/libraryconsole/bookmanagement, +/turf/open/floor/plasteel, +/area/security/prison) +"abm" = ( +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_y = 32 + }, +/obj/machinery/vr_sleeper, +/turf/open/floor/plasteel, +/area/security/prison) +"abn" = ( +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"abo" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel, +/area/security/prison) +"abp" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel, +/area/security/prison) +"abq" = ( +/obj/structure/holohoop{ + pixel_y = 29 + }, +/obj/item/toy/beach_ball/holoball, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/security/prison) +"abr" = ( +/obj/machinery/status_display/evac{ + pixel_y = 32 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/cafeteria, +/area/security/prison) +"abs" = ( +/obj/machinery/washing_machine, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/cafeteria, +/area/security/prison) +"abt" = ( +/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 + }, +/obj/structure/sign/poster/official/hydro_ad{ + pixel_x = -32 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central) +"abu" = ( +/obj/docking_port/stationary{ + dwidth = 1; + height = 4; + roundstart_template = /datum/map_template/shuttle/escape_pod/default; + width = 3 + }, +/obj/structure/fans/tiny/invisible, +/turf/open/space/basic, +/area/space) +"abx" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel/dark, +/area/security/execution/education) +"aby" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/security/execution/education) +"abz" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/security/execution/education) +"abA" = ( +/obj/machinery/shower{ + dir = 4 + }, +/turf/open/floor/plasteel/freezer, +/area/security/prison) +"abB" = ( +/obj/machinery/door/window/westleft{ + base_state = "right"; + dir = 4; + icon_state = "right"; + name = "Unisex Showers" + }, +/obj/machinery/light/small, +/turf/open/floor/plasteel/freezer, +/area/security/prison) +"abC" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/security/prison) +"abD" = ( +/obj/structure/chair/stool, +/turf/open/floor/plasteel, +/area/security/prison) +"abF" = ( +/obj/structure/table, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/item/reagent_containers/food/condiment/peppermill{ + pixel_x = 3 + }, +/obj/item/reagent_containers/food/condiment/saltshaker{ + pixel_x = -3; + pixel_y = 5 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"abG" = ( +/obj/structure/table, +/obj/item/toy/cards/deck, +/obj/item/toy/cards/deck, +/turf/open/floor/plasteel, +/area/security/prison) +"abH" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/sign/poster/official/medical_green_cross{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"abI" = ( +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel, +/area/security/prison) +"abJ" = ( +/obj/structure/window/reinforced, +/obj/structure/cable/yellow{ + 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/security/prison) +"abK" = ( +/obj/structure/table, +/obj/structure/bedsheetbin, +/obj/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/cafeteria, +/area/security/prison) +"abL" = ( +/turf/open/floor/plating, +/area/security/prison) +"abM" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/security/prison) +"abN" = ( +/obj/machinery/door/airlock/external{ + name = "Solar Maintenance"; + req_access_txt = "10; 13" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/turf/open/floor/plating, +/area/maintenance/solars/port/fore) +"abV" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/sparker{ + id = "executionburn"; + pixel_x = -25 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/execution/education) +"abW" = ( +/obj/structure/bed, +/obj/item/clothing/suit/straight_jacket, +/obj/item/clothing/glasses/sunglasses/blindfold, +/obj/item/clothing/mask/muzzle, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/item/electropack, +/turf/open/floor/plasteel/dark, +/area/security/execution/education) +"abX" = ( +/obj/machinery/flasher{ + id = "justiceflash"; + name = "mounted justice flash"; + pixel_x = 28 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/execution/education) +"abY" = ( +/obj/machinery/door/airlock{ + name = "Unisex Restroom" + }, +/turf/open/floor/plasteel/freezer, +/area/security/prison) +"abZ" = ( +/obj/structure/table, +/obj/item/book/manual/chef_recipes{ + pixel_x = 2; + pixel_y = 6 + }, +/obj/item/clothing/head/chefhat, +/turf/open/floor/plasteel, +/area/security/prison) +"aca" = ( +/obj/structure/table, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/item/toy/cards/deck, +/obj/item/toy/cards/deck, +/turf/open/floor/plasteel, +/area/security/prison) +"acb" = ( +/obj/structure/table, +/obj/item/storage/dice, +/turf/open/floor/plasteel, +/area/security/prison) +"acc" = ( +/obj/structure/chair/stool, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/security/prison) +"acd" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/sign/poster/official/medical_green_cross{ + pixel_x = -32 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"ace" = ( +/obj/machinery/vending/sustenance{ + desc = "A vending machine normally reserved for work camps."; + name = "\improper sustenance vendor"; + product_slogans = "Enjoy your meal.;Enough calories to support any worker." + }, +/turf/open/floor/plasteel, +/area/security/prison) +"acf" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/security/prison) +"acg" = ( +/obj/machinery/light/small, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/security/prison) +"ach" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/airlock/external{ + name = "Security External Airlock"; + req_access_txt = "1" + }, +/turf/open/floor/plating, +/area/security/prison) +"acj" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/sign/warning/vacuum/external{ + pixel_y = 32 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/security/prison) +"ack" = ( +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/space/nearstation) +"acm" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/security/execution/education) +"acn" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel/dark, +/area/security/execution/education) +"aco" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + name = "justice injector" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/security/execution/education) +"acp" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/toilet/secret/prison{ + dir = 4 + }, +/turf/open/floor/plasteel/freezer, +/area/security/prison) +"acq" = ( +/obj/structure/table, +/obj/item/storage/box/donkpockets{ + pixel_x = 2; + pixel_y = 1 + }, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/security/prison) +"acr" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel, +/area/security/prison) +"acs" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"act" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"acu" = ( +/obj/machinery/holopad, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/security/prison) +"acv" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/security/prison) +"acw" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel, +/area/security/prison) +"acx" = ( +/obj/machinery/cryopod{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"acy" = ( +/obj/machinery/door/airlock/external{ + name = "Escape Pod Two" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/turf/open/floor/plating, +/area/security/prison) +"acA" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/poddoor/preopen{ + id = "executionfireblast" + }, +/obj/machinery/door/firedoor, +/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/security/execution/education) +"acB" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "executionfireblast" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 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/security/execution/education) +"acC" = ( +/obj/machinery/door/window/brigdoor{ + name = "Justice Chamber"; + req_access_txt = "3" + }, +/obj/machinery/atmospherics/pipe/simple/general/hidden, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/window/brigdoor{ + dir = 1; + name = "Justice Chamber"; + req_access_txt = "3" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/preopen{ + id = "executionfireblast" + }, +/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/security/execution/education) +"acD" = ( +/obj/structure/table, +/obj/machinery/microwave{ + pixel_x = -3; + pixel_y = 6 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/security/prison) +"acE" = ( +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/security/prison) +"acF" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/machinery/light, +/turf/open/floor/plasteel, +/area/security/prison) +"acG" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/obj/item/kirbyplants{ + icon_state = "plant-13" + }, +/turf/open/floor/plasteel, +/area/security/prison) +"acH" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/obj/item/radio/intercom{ + desc = "Talk through this. It looks like it has been modified to not broadcast."; + name = "Prison Intercom (General)"; + pixel_y = -28; + prison_radio = 1 + }, +/obj/machinery/camera{ + c_tag = "Prison Chamber"; + dir = 1; + network = list("ss13","prison") + }, +/turf/open/floor/plasteel, +/area/security/prison) +"acI" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"acJ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"acK" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel, +/area/security/prison) +"acL" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/light, +/turf/open/floor/plasteel, +/area/security/prison) +"acM" = ( +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/pen, +/obj/machinery/computer/cryopod{ + dir = 8; + pixel_x = 26 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"acN" = ( +/obj/structure/table/glass, +/obj/item/reagent_containers/syringe, +/obj/item/reagent_containers/glass/bottle/morphine{ + pixel_y = 6 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/security/prison) +"acO" = ( +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/obj/structure/table/glass, +/obj/item/reagent_containers/glass/beaker{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/reagent_containers/glass/beaker{ + pixel_x = -5; + pixel_y = 6 + }, +/obj/item/reagent_containers/dropper, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/security/prison) +"acR" = ( +/obj/structure/table/glass, +/obj/item/reagent_containers/syringe, +/obj/item/reagent_containers/glass/bottle/morphine{ + pixel_y = 6 + }, +/obj/machinery/camera{ + c_tag = "Prison Sanitarium"; + network = list("ss13","prison") + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/security/prison) +"acV" = ( +/obj/structure/table, +/obj/item/reagent_containers/glass/bottle/morphine{ + pixel_x = -4; + pixel_y = 1 + }, +/obj/item/reagent_containers/glass/bottle/chloralhydrate{ + name = "chloral hydrate bottle" + }, +/obj/item/reagent_containers/glass/bottle/toxin{ + pixel_x = 6; + pixel_y = 8 + }, +/obj/item/reagent_containers/glass/bottle/morphine{ + pixel_x = 5; + pixel_y = 1 + }, +/obj/item/reagent_containers/syringe, +/obj/item/reagent_containers/glass/bottle/facid{ + name = "fluorosulfuric acid bottle"; + pixel_x = -3; + pixel_y = 6 + }, +/obj/item/reagent_containers/syringe{ + pixel_y = 5 + }, +/obj/item/reagent_containers/dropper, +/obj/machinery/airalarm/all_access{ + dir = 4; + pixel_x = -24 + }, +/obj/machinery/button/ignition{ + id = "executionburn"; + name = "Justice Ignition Switch"; + pixel_x = -25; + pixel_y = 36 + }, +/obj/machinery/button/door{ + id = "executionfireblast"; + name = "Justice Area Lockdown"; + pixel_x = -25; + pixel_y = 26; + req_access_txt = "2" + }, +/obj/item/assembly/signaler{ + pixel_x = -3; + pixel_y = 2 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/machinery/button/flasher{ + id = "justiceflash"; + name = "Justice Flash Control"; + pixel_x = -36; + pixel_y = 36; + req_access_txt = "1" + }, +/obj/machinery/button/door{ + id = "SecJusticeChamber"; + layer = 4; + name = "Justice Vent Control"; + pixel_x = -36; + pixel_y = 26; + req_access_txt = "3" + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/execution/education) +"acW" = ( +/obj/structure/table, +/obj/item/folder/red{ + pixel_x = 3 + }, +/obj/item/taperecorder{ + pixel_x = -3 + }, +/obj/item/storage/fancy/cigarettes, +/obj/item/assembly/flash/handheld, +/obj/item/reagent_containers/spray/pepper, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/security/execution/education) +"acX" = ( +/obj/machinery/atmospherics/pipe/simple/general/hidden, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/security/execution/education) +"acY" = ( +/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/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/execution/education) +"ada" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/closed/wall/r_wall, +/area/security/prison) +"adb" = ( +/obj/machinery/door/poddoor/preopen{ + id = "permacell3"; + name = "Cell Shutters" + }, +/obj/machinery/door/airlock/public/glass{ + id_tag = "permabolt3"; + name = "Cell 3" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/turf/open/floor/plasteel, +/area/security/prison) +"adc" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/security/prison) +"add" = ( +/obj/machinery/door/poddoor/preopen{ + id = "permacell2"; + name = "Cell Shutters" + }, +/obj/machinery/door/airlock/public/glass{ + id_tag = "permabolt2"; + name = "Cell 2" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/turf/open/floor/plasteel, +/area/security/prison) +"ade" = ( +/obj/machinery/door/poddoor/preopen{ + id = "permacell1"; + name = "Cell Shutters" + }, +/obj/machinery/door/airlock/public/glass{ + id_tag = "permabolt1"; + name = "Cell 1" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/turf/open/floor/plasteel, +/area/security/prison) +"adf" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating, +/area/security/prison) +"adg" = ( +/obj/structure/bed, +/obj/item/clothing/suit/straight_jacket, +/obj/item/clothing/glasses/sunglasses/blindfold, +/obj/item/clothing/mask/muzzle, +/turf/open/floor/plasteel/white, +/area/security/prison) +"adh" = ( +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel/white, +/area/security/prison) +"adi" = ( +/obj/structure/bed, +/obj/item/clothing/suit/straight_jacket, +/obj/item/clothing/glasses/sunglasses/blindfold, +/obj/item/clothing/mask/muzzle, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/white, +/area/security/prison) +"adk" = ( +/obj/structure/sign/poster/contraband/scum{ + pixel_y = -32 + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"adl" = ( +/obj/structure/closet/crate{ + icon_state = "crateopen" + }, +/obj/item/storage/box/donkpockets, +/obj/structure/sign/poster/contraband/scum{ + pixel_y = -32 + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"adm" = ( +/obj/structure/table, +/obj/item/flashlight/lamp, +/obj/structure/reagent_dispensers/peppertank{ + pixel_x = -29 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/security/execution/education) +"adn" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/chair/office/dark{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/execution/education) +"ado" = ( +/obj/machinery/atmospherics/pipe/simple/general/hidden, +/turf/open/floor/plasteel/dark, +/area/security/execution/education) +"adp" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/plasteel/dark, +/area/security/execution/education) +"adq" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 28 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/execution/education) +"adr" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall/r_wall, +/area/security/execution/education) +"ads" = ( +/obj/structure/bed, +/obj/machinery/camera{ + c_tag = "Prison Cell 3"; + network = list("ss13","prison") + }, +/turf/open/floor/plasteel, +/area/security/prison) +"adt" = ( +/obj/structure/chair/stool, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/button/door{ + id = "permabolt3"; + name = "Cell Bolt Control"; + normaldoorcontrol = 1; + pixel_y = 25; + specialfunctions = 4 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"adu" = ( +/obj/structure/bed, +/obj/machinery/camera{ + c_tag = "Prison Cell 2"; + network = list("ss13","prison") + }, +/turf/open/floor/plasteel, +/area/security/prison) +"adv" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/security/prison) +"adw" = ( +/obj/structure/chair/stool, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/button/door{ + id = "permabolt2"; + name = "Cell Bolt Control"; + normaldoorcontrol = 1; + pixel_y = 25; + specialfunctions = 4 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg2" + }, +/area/security/prison) +"adx" = ( +/obj/structure/bed, +/obj/machinery/camera{ + c_tag = "Prison Cell 1"; + network = list("ss13","prison") + }, +/turf/open/floor/plasteel, +/area/security/prison) +"ady" = ( +/obj/structure/chair/stool, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/button/door{ + id = "permabolt1"; + name = "Cell Bolt Control"; + normaldoorcontrol = 1; + pixel_y = 25; + specialfunctions = 4 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"adz" = ( +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/security/prison) +"adA" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/turf/open/floor/plasteel/white, +/area/security/prison) +"adB" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/white, +/area/security/prison) +"adC" = ( +/obj/machinery/flasher{ + id = "insaneflash"; + pixel_x = 26 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel/white, +/area/security/prison) +"adD" = ( +/obj/structure/lattice, +/obj/machinery/camera/motion{ + c_tag = "Armory - External"; + dir = 1 + }, +/turf/open/space, +/area/space/nearstation) +"adF" = ( +/obj/docking_port/stationary{ + dir = 4; + dwidth = 1; + height = 4; + roundstart_template = /datum/map_template/shuttle/escape_pod/default; + width = 3 + }, +/obj/structure/fans/tiny/invisible, +/turf/open/space/basic, +/area/space) +"adG" = ( +/obj/docking_port/stationary/random{ + id = "pod_lavaland2"; + name = "lavaland" + }, +/turf/open/space, +/area/space/nearstation) +"adI" = ( +/obj/structure/rack, +/obj/item/hatchet, +/obj/item/reagent_containers/blood/random, +/obj/structure/sign/poster/contraband/scum{ + pixel_y = -32 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"adJ" = ( +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_x = -28 + }, +/obj/structure/table, +/obj/item/storage/backpack/duffelbag/sec/surgery{ + pixel_y = 5 + }, +/obj/item/clothing/mask/balaclava, +/obj/item/reagent_containers/spray/cleaner{ + pixel_x = 5 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/execution/education) +"adK" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/execution/education) +"adL" = ( +/obj/machinery/atmospherics/pipe/simple/general/hidden, +/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/dark, +/area/security/execution/education) +"adM" = ( +/obj/machinery/button/door{ + id = "prisonereducation"; + name = "Door Bolt Control"; + normaldoorcontrol = 1; + pixel_y = -25; + specialfunctions = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/execution/education) +"adN" = ( +/obj/machinery/light_switch{ + pixel_x = 26 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/execution/education) +"adO" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/machinery/flasher{ + id = "PCell 3"; + pixel_x = -28 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/security/prison) +"adP" = ( +/obj/structure/table, +/obj/item/paper, +/obj/item/pen, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"adQ" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/security/prison) +"adR" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/flasher{ + id = "PCell 2"; + pixel_x = -28 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"adS" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"adT" = ( +/obj/structure/table, +/obj/item/paper, +/obj/item/pen, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/plasteel, +/area/security/prison) +"adU" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/machinery/flasher{ + id = "PCell 1"; + pixel_x = -28 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"adV" = ( +/obj/item/folder/red, +/obj/item/pen, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/table/glass, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/security/prison) +"adW" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/security/prison) +"adX" = ( +/obj/structure/bed/roller, +/obj/structure/bed/roller, +/obj/machinery/iv_drip, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/iv_drip, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/security/prison) +"adY" = ( +/turf/closed/wall/r_wall, +/area/security/warden) +"aee" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/solars/port/fore) +"aef" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/solars/port/fore) +"aeg" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/security/execution/education) +"aeh" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 10 + }, +/obj/machinery/meter, +/obj/machinery/door/window/westleft{ + dir = 1; + name = "gas ports" + }, +/turf/open/floor/plasteel/dark, +/area/security/execution/education) +"aei" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + name = "justice gas pump" + }, +/obj/machinery/door/window/westleft{ + base_state = "right"; + dir = 1; + icon_state = "right"; + name = "gas ports" + }, +/turf/open/floor/plasteel/dark, +/area/security/execution/education) +"aej" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security{ + aiControlDisabled = 1; + id_tag = "prisonereducation"; + name = "Prisoner Education Chamber"; + req_access_txt = "3" + }, +/obj/structure/cable/yellow{ + 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{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/execution/education) +"aek" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall/r_wall, +/area/security/prison) +"ael" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall, +/area/security/prison) +"aem" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Long-Term Cell 3"; + req_access_txt = "2" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"aen" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Long-Term Cell 2"; + req_access_txt = "2" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"aeo" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Long-Term Cell 1"; + req_access_txt = "2" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"aep" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + name = "Prison Sanitarium"; + req_access_txt = "2" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"aeq" = ( +/turf/closed/wall/r_wall, +/area/ai_monitored/security/armory) +"aer" = ( +/obj/structure/rack, +/obj/item/gun/energy/ionrifle, +/obj/machinery/light{ + dir = 1 + }, +/obj/item/gun/energy/temperature/security, +/obj/item/clothing/suit/armor/laserproof, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/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/security/armory) +"aes" = ( +/obj/structure/closet/secure_closet{ + name = "contraband locker"; + req_access_txt = "3" + }, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 3; + name = "3maintenance loot spawner" + }, +/obj/effect/spawner/lootdrop/armory_contraband{ + loot = list(/obj/item/gun/ballistic/automatic/pistol = 5, /obj/item/gun/ballistic/shotgun/automatic/combat = 5, /obj/item/gun/ballistic/revolver/mateba, /obj/item/gun/ballistic/automatic/pistol/deagle, /obj/item/storage/box/syndie_kit/throwing_weapons = 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/ai_monitored/security/armory) +"aex" = ( +/obj/structure/closet/secure_closet/lethalshots, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/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/security/armory) +"aey" = ( +/turf/closed/wall, +/area/security/range) +"aez" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/security/range) +"aeD" = ( +/turf/open/floor/plasteel/grimy, +/area/hallway/primary/port) +"aeG" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/solars/port/fore) +"aeH" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/nitrous_oxide, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/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/execution/education) +"aeI" = ( +/obj/item/tank/internals/oxygen/red{ + pixel_x = -4; + pixel_y = -1 + }, +/obj/item/tank/internals/oxygen/red{ + pixel_x = 4; + pixel_y = -1 + }, +/obj/item/tank/internals/anesthetic{ + pixel_x = 2 + }, +/obj/item/storage/toolbox/mechanical, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/obj/structure/closet/crate{ + icon_state = "crateopen" + }, +/obj/machinery/atmospherics/pipe/manifold/general/visible, +/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/security/execution/education) +"aeJ" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 9 + }, +/obj/machinery/space_heater, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/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/execution/education) +"aeK" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/effect/turf_decal/tile/red, +/turf/open/floor/plasteel, +/area/security/prison) +"aeL" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/structure/sign/warning/securearea{ + desc = "A warning sign which reads 'WARNING: Do Not Enter When Red Light Shows', detailing the penalties that any Nanotrasen employee or silicon will suffer if violating this rule."; + name = "WARNING: Do Not Enter When Red Light Shows"; + pixel_y = 32 + }, +/obj/effect/turf_decal/tile/red, +/turf/open/floor/plasteel, +/area/security/prison) +"aeM" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/effect/turf_decal/tile/red, +/turf/open/floor/plasteel, +/area/security/prison) +"aeN" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/red, +/turf/open/floor/plasteel, +/area/security/prison) +"aeO" = ( +/obj/machinery/button/door{ + id = "permacell3"; + name = "Cell 3 Lockdown"; + pixel_x = -4; + pixel_y = 25; + req_access_txt = "2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/button/flasher{ + id = "PCell 3"; + pixel_x = 6; + pixel_y = 24 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/red, +/turf/open/floor/plasteel, +/area/security/prison) +"aeP" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/computer/security/telescreen{ + desc = "Used for watching Prison Wing holding areas."; + name = "Prison Monitor"; + network = list("prison"); + pixel_y = 30 + }, +/obj/machinery/camera{ + c_tag = "Prison Hallway Port"; + network = list("ss13","prison") + }, +/obj/effect/turf_decal/tile/red, +/turf/open/floor/plasteel, +/area/security/prison) +"aeQ" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/turf/open/floor/plasteel, +/area/security/prison) +"aeR" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/effect/turf_decal/tile/red, +/turf/open/floor/plasteel, +/area/security/prison) +"aeS" = ( +/obj/machinery/button/door{ + id = "permacell2"; + name = "Cell 2 Lockdown"; + pixel_x = -4; + pixel_y = 25; + req_access_txt = "2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/button/flasher{ + id = "PCell 2"; + pixel_x = 6; + pixel_y = 24 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/red, +/turf/open/floor/plasteel, +/area/security/prison) +"aeT" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/computer/security/telescreen{ + desc = "Used for watching Prison Wing holding areas."; + name = "Prison Monitor"; + network = list("prison"); + pixel_y = 30 + }, +/obj/effect/turf_decal/tile/red, +/turf/open/floor/plasteel, +/area/security/prison) +"aeU" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/turf/open/floor/plasteel, +/area/security/prison) +"aeV" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/red, +/turf/open/floor/plasteel, +/area/security/prison) +"aeW" = ( +/obj/machinery/button/door{ + id = "permacell1"; + name = "Cell 1 Lockdown"; + pixel_x = -4; + pixel_y = 25; + req_access_txt = "2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/button/flasher{ + id = "PCell 1"; + pixel_x = 6; + pixel_y = 24 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/red, +/turf/open/floor/plasteel, +/area/security/prison) +"aeY" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/turf/open/floor/plasteel, +/area/security/prison) +"aeZ" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/structure/sign/warning/pods{ + pixel_y = 30 + }, +/obj/effect/turf_decal/tile/red, +/turf/open/floor/plasteel, +/area/security/prison) +"afa" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/button/flasher{ + id = "insaneflash"; + pixel_y = 26 + }, +/obj/effect/turf_decal/tile/red, +/turf/open/floor/plasteel, +/area/security/prison) +"afb" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/red, +/turf/open/floor/plasteel, +/area/security/prison) +"afc" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/open/floor/plating, +/area/security/prison) +"afd" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/item/kirbyplants{ + icon_state = "plant-16" + }, +/obj/structure/sign/warning/securearea{ + desc = "A warning sign which reads 'WARNING: Criminally Insane Inmates', describing the possible hazards of those contained within."; + name = "WARNING: Criminally Insane Inmates"; + pixel_y = 32 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/security/prison) +"aff" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/item/storage/secure/safe{ + name = "armory safe A"; + pixel_x = 6; + pixel_y = 28 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"afg" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"afh" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"afp" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/security/range) +"afq" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/range) +"afr" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/security/range) +"afD" = ( +/turf/open/floor/engine{ + name = "Holodeck Projector Floor" + }, +/area/holodeck/rec_center) +"afE" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/external{ + name = "Solar Maintenance"; + req_access_txt = "10; 13" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/solars/port/fore) +"afF" = ( +/obj/item/kirbyplants{ + icon_state = "applebush" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"afG" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"afH" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"afI" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"afJ" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/newscaster/security_unit{ + pixel_y = -30 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"afK" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"afL" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"afM" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"afN" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + pixel_y = -30 + }, +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"afO" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -30 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"afP" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"afQ" = ( +/obj/machinery/door/airlock/external{ + name = "Solar Maintenance"; + req_access_txt = "10; 13" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/fore) +"afR" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"afS" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"afT" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/machinery/light, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"afU" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"afV" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"afW" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow, +/turf/open/floor/plating, +/area/security/prison) +"afX" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/item/storage/secure/safe{ + name = "armory safe B"; + pixel_x = 6; + pixel_y = 28 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 27 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"afY" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"afZ" = ( +/obj/machinery/camera{ + c_tag = "Arrivals - Lounge"; + dir = 4 + }, +/obj/structure/chair/comfy{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/hallway/primary/port) +"aga" = ( +/obj/effect/turf_decal/tile/neutral{ + 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/bot/secbot{ + arrest_type = 1; + health = 45; + icon_state = "secbot1"; + idcheck = 1; + name = "Sergeant-at-Armsky"; + weaponscheck = 1 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"agb" = ( +/obj/structure/rack, +/obj/item/gun/energy/e_gun/advtaser, +/obj/item/gun/energy/e_gun/advtaser{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/item/gun/energy/e_gun/advtaser, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/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/security/armory) +"agc" = ( +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"agd" = ( +/obj/structure/rack, +/obj/item/gun/energy/laser{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/gun/energy/laser, +/obj/item/gun/energy/laser{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/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/security/armory) +"agn" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/range) +"ago" = ( +/obj/structure/target_stake, +/obj/item/target/syndicate, +/turf/open/floor/plasteel, +/area/security/range) +"agp" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/range) +"agq" = ( +/turf/closed/wall, +/area/maintenance/fore) +"agA" = ( +/turf/closed/wall/r_wall, +/area/maintenance/solars/port/fore) +"agB" = ( +/obj/machinery/power/solar_control{ + id = "foreport"; + name = "Port Bow Solar Control" + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/maintenance/solars/port/fore) +"agC" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/solars/port/fore) +"agD" = ( +/obj/structure/sign/warning/vacuum/external{ + pixel_x = 32 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg2" + }, +/area/maintenance/solars/port/fore) +"agE" = ( +/obj/structure/table, +/obj/item/folder/red{ + pixel_x = 3 + }, +/obj/item/folder/white{ + pixel_x = -4; + pixel_y = 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/security/prison) +"agF" = ( +/obj/structure/rack, +/obj/item/restraints/handcuffs, +/obj/item/assembly/flash/handheld, +/obj/structure/cable/yellow{ + 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/security/prison) +"agG" = ( +/obj/structure/table, +/obj/item/storage/box/bodybags{ + pixel_x = 4; + pixel_y = 2 + }, +/obj/item/pen, +/obj/item/storage/box/prisoner, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/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) +"agH" = ( +/obj/structure/closet/secure_closet/brig, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/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) +"agI" = ( +/obj/structure/closet/secure_closet/brig, +/obj/structure/cable/yellow{ + 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/security/prison) +"agJ" = ( +/obj/structure/sign/warning/securearea, +/turf/closed/wall, +/area/security/prison) +"agK" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/security/glass{ + name = "Prison Wing"; + req_access_txt = "1" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/turf/open/floor/plasteel, +/area/security/prison) +"agL" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/security/prison) +"agM" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/airlock/security/glass{ + name = "Prison Wing"; + req_access_txt = "1" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/turf/open/floor/plasteel, +/area/security/prison) +"agN" = ( +/obj/structure/sign/warning/securearea{ + desc = "A warning sign which reads 'WARNING: Dangerous Inmates'."; + name = "\improper WARNING: Dangerous Inmates" + }, +/turf/closed/wall, +/area/security/prison) +"agO" = ( +/obj/structure/table, +/obj/machinery/recharger{ + pixel_y = 4 + }, +/obj/structure/reagent_dispensers/peppertank{ + 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/security/prison) +"agP" = ( +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/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) +"agQ" = ( +/obj/machinery/holopad{ + pixel_y = -15 + }, +/turf/open/floor/carpet, +/area/hallway/primary/port) +"agR" = ( +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -22 + }, +/obj/structure/rack, +/obj/item/gun/energy/e_gun/dragnet, +/obj/item/gun/energy/e_gun/dragnet, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/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/security/armory) +"agT" = ( +/obj/structure/rack, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/item/storage/box/rubbershot, +/obj/item/storage/box/rubbershot, +/obj/item/storage/box/rubbershot, +/obj/item/storage/box/rubbershot, +/obj/item/gun/ballistic/shotgun/riot{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/gun/ballistic/shotgun/riot, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/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/security/armory) +"agU" = ( +/obj/structure/rack, +/obj/item/gun/energy/e_gun{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/gun/energy/e_gun{ + pixel_x = 3; + 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 + }, +/obj/item/gun/energy/e_gun, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"ahc" = ( +/turf/open/floor/plasteel, +/area/security/range) +"ahd" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating, +/area/maintenance/fore) +"ahe" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating, +/area/maintenance/fore) +"ahp" = ( +/turf/closed/wall, +/area/maintenance/disposal) +"ahq" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/disposal) +"ahr" = ( +/obj/structure/chair/stool{ + pixel_y = 8 + }, +/obj/machinery/camera/autoname{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/solars/port/fore) +"ahs" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plating, +/area/maintenance/solars/port/fore) +"aht" = ( +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/power/terminal, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_x = 29 + }, +/turf/open/floor/plating, +/area/maintenance/solars/port/fore) +"ahu" = ( +/obj/machinery/suit_storage_unit/security, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/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/brig) +"ahv" = ( +/obj/structure/tank_dispenser/oxygen, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/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/brig) +"ahw" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 27 + }, +/obj/machinery/suit_storage_unit/security, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/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/brig) +"ahx" = ( +/turf/closed/wall, +/area/security/brig) +"ahy" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/door/poddoor/preopen{ + id = "Prison Gate"; + name = "Security Blast Door" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/security/brig) +"ahz" = ( +/obj/machinery/door/poddoor/preopen{ + id = "Prison Gate"; + name = "Security Blast Door" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/security/brig) +"ahA" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/poddoor/preopen{ + id = "Prison Gate"; + name = "Security Blast Door" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/security/brig) +"ahB" = ( +/turf/closed/wall, +/area/security/warden) +"ahC" = ( +/obj/structure/rack, +/obj/item/clothing/suit/armor/riot, +/obj/item/clothing/suit/armor/riot, +/obj/item/clothing/head/helmet/riot, +/obj/item/clothing/head/helmet/riot, +/obj/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 + }, +/obj/item/shield/riot, +/obj/item/shield/riot, +/obj/item/shield/riot, +/obj/item/clothing/head/helmet/riot, +/obj/item/clothing/suit/armor/riot, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"ahD" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"ahE" = ( +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/structure/rack, +/obj/item/storage/box/flashes{ + pixel_x = 3 + }, +/obj/item/storage/box/teargas{ + pixel_x = 1; + pixel_y = -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/ai_monitored/security/armory) +"ahF" = ( +/obj/machinery/power/apc/highcap/five_k{ + areastring = "/area/ai_monitored/security/armory"; + name = "Armory APC"; + pixel_x = 1; + pixel_y = -24 + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/machinery/light, +/obj/machinery/camera/motion{ + c_tag = "Armory - Internal"; + 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/ai_monitored/security/armory) +"ahG" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + 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/ai_monitored/security/armory) +"ahH" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/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/security/armory) +"ahI" = ( +/obj/machinery/button/door{ + id = "armory"; + name = "Armory Shutters"; + pixel_x = 28; + req_access_txt = "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 + }, +/obj/structure/rack, +/obj/item/storage/fancy/donut_box, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"ahP" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security{ + name = "Armory"; + req_access_txt = "3" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/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/ai_monitored/security/armory) +"ahQ" = ( +/obj/item/clothing/head/festive, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/turf/open/floor/plating, +/area/maintenance/fore) +"ahR" = ( +/obj/item/cigbutt, +/turf/open/floor/plating, +/area/maintenance/fore) +"ahS" = ( +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/fore) +"ahT" = ( +/turf/open/floor/carpet, +/area/hallway/primary/port) +"ahU" = ( +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/structure/table, +/obj/item/stock_parts/manipulator, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/fore) +"aif" = ( +/obj/machinery/door/poddoor{ + id = "trash"; + name = "disposal bay door" + }, +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/maintenance/disposal) +"aig" = ( +/obj/machinery/mass_driver{ + dir = 8; + id = "trash" + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"aih" = ( +/obj/machinery/conveyor_switch/oneway{ + dir = 8; + id = "garbage"; + name = "disposal conveyor" + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"aii" = ( +/obj/structure/easel, +/turf/open/floor/plating, +/area/maintenance/disposal) +"aij" = ( +/obj/item/vending_refill/coffee, +/turf/open/floor/plating{ + icon_state = "platingdmg2" + }, +/area/maintenance/disposal) +"aik" = ( +/obj/structure/closet, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 3; + name = "3maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"ail" = ( +/obj/machinery/power/apc{ + areastring = "/area/maintenance/solars/port/fore"; + dir = 8; + name = "Port Bow Solar APC"; + pixel_x = -25; + pixel_y = 3 + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/solars/port/fore) +"aim" = ( +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/maintenance/solars/port/fore) +"ain" = ( +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/machinery/power/smes, +/turf/open/floor/plating, +/area/maintenance/solars/port/fore) +"aio" = ( +/turf/closed/wall/r_wall, +/area/maintenance/port/fore) +"aip" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"aiq" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/security/brig) +"air" = ( +/obj/structure/cable/yellow{ + 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/security/brig) +"ais" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/light/small, +/obj/machinery/camera{ + c_tag = "Security - EVA Storage"; + 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/security/brig) +"ait" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + name = "Security E.V.A. Storage"; + req_access_txt = "1" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"aiu" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"aiv" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"aiw" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/button/door{ + id = "Prison Gate"; + name = "Prison Wing Lockdown"; + pixel_x = 26; + req_access_txt = "2" + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"aix" = ( +/obj/structure/closet{ + name = "Evidence Closet 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/security/warden) +"aiy" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/landmark/blobstart, +/obj/machinery/camera{ + c_tag = "Evidence Storage" + }, +/obj/item/storage/secure/safe{ + name = "evidence safe"; + pixel_x = 6; + 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/security/warden) +"aiz" = ( +/obj/structure/closet/secure_closet/evidence, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/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) +"aiA" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow, +/turf/open/floor/plating, +/area/ai_monitored/security/armory) +"aiB" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/security/warden) +"aiC" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/ai_monitored/security/armory) +"aiJ" = ( +/turf/closed/wall/r_wall, +/area/security/range) +"aiK" = ( +/obj/structure/window/reinforced, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/security/range) +"aiL" = ( +/obj/machinery/door/window/westleft{ + base_state = "right"; + dir = 2; + icon_state = "right"; + name = "Shooting Range" + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/security/range) +"aiM" = ( +/obj/structure/window/reinforced, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/security/range) +"aiO" = ( +/obj/structure/chair/stool{ + pixel_y = 8 + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"aiP" = ( +/obj/structure/table, +/obj/item/folder, +/turf/open/floor/plating, +/area/maintenance/fore) +"aiT" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/gear_painter, +/turf/open/floor/plasteel/white/corner, +/area/hallway/secondary/entry) +"aiW" = ( +/obj/structure/chair/comfy{ + dir = 8 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/hallway/primary/port) +"ajc" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "garbage" + }, +/obj/machinery/door/poddoor/preopen{ + id = "Disposal Exit"; + name = "disposal exit vent" + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"ajd" = ( +/obj/machinery/button/door{ + id = "Disposal Exit"; + name = "Disposal Vent Control"; + pixel_x = -25; + pixel_y = 4; + req_access_txt = "12" + }, +/obj/machinery/button/massdriver{ + id = "trash"; + pixel_x = -26; + pixel_y = -6 + }, +/obj/structure/chair/stool, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"aje" = ( +/turf/open/floor/plating, +/area/maintenance/fore) +"ajf" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plating, +/area/maintenance/disposal) +"ajg" = ( +/turf/open/floor/plating{ + icon_state = "platingdmg2" + }, +/area/maintenance/disposal) +"ajh" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/airlock/engineering{ + name = "Port Bow Solar Access"; + req_access_txt = "10" + }, +/turf/open/floor/plating, +/area/maintenance/solars/port/fore) +"aji" = ( +/obj/structure/sign/warning/electricshock, +/turf/closed/wall, +/area/maintenance/solars/port/fore) +"ajj" = ( +/obj/structure/table, +/obj/item/stack/medical/mesh{ + pixel_x = 3; + pixel_y = -2 + }, +/obj/item/stack/medical/suture{ + pixel_x = -3; + pixel_y = 2 + }, +/obj/item/reagent_containers/syringe/epinephrine, +/obj/item/storage/secure/safe{ + pixel_x = 6; + pixel_y = 28 + }, +/obj/item/restraints/handcuffs/cable/pink, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"ajk" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp/green{ + pixel_y = 3 + }, +/turf/open/floor/plasteel/grimy, +/area/hallway/primary/port) +"ajl" = ( +/obj/item/soap/deluxe, +/obj/item/storage/secure/safe{ + pixel_x = 6; + pixel_y = 28 + }, +/obj/item/kitchen/rollingpin, +/obj/structure/closet/crate, +/obj/item/clothing/suit/xenos, +/obj/item/clothing/suit/monkeysuit, +/obj/item/clothing/head/xenos, +/obj/item/clothing/mask/gas/monkeymask, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"ajm" = ( +/turf/closed/wall/r_wall, +/area/security/brig) +"ajn" = ( +/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/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"ajo" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/security/brig) +"ajp" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/airlock/security/glass{ + name = "Prison Wing"; + req_access_txt = "1" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"ajq" = ( +/obj/structure/closet{ + name = "Evidence Closet 2" + }, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/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) +"ajr" = ( +/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/security/warden) +"ajs" = ( +/obj/item/kirbyplants{ + icon_state = "plant-08" + }, +/turf/open/floor/plasteel/grimy, +/area/hallway/primary/port) +"ajt" = ( +/obj/structure/closet{ + name = "Evidence Closet 5" + }, +/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/security/warden) +"aju" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"ajv" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/security/warden) +"ajw" = ( +/obj/structure/closet/bombcloset/security, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/security/warden) +"ajx" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/turf/open/floor/plating, +/area/security/warden) +"ajy" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 + }, +/obj/structure/closet/secure_closet/security/sec, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"ajz" = ( +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"ajA" = ( +/obj/structure/closet/secure_closet/security/sec, +/obj/machinery/airalarm{ + pixel_y = 28 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"ajL" = ( +/obj/structure/table, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/magnetic_controller{ + autolink = 1; + pixel_y = 3 + }, +/obj/item/clothing/ears/earmuffs, +/obj/item/clothing/glasses/sunglasses{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/security/range) +"ajM" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel, +/area/security/range) +"ajN" = ( +/obj/structure/table, +/obj/machinery/recharger{ + pixel_y = 4 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 27 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/range) +"ajO" = ( +/obj/structure/closet, +/obj/item/clothing/gloves/color/fyellow, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"ajP" = ( +/obj/item/toy/beach_ball/holoball, +/turf/open/floor/plating, +/area/maintenance/fore) +"ajQ" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"akd" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/fore) +"ake" = ( +/turf/open/space, +/area/space) +"akf" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "garbage" + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"akg" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"akh" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/maintenance/disposal) +"aki" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/maintenance/disposal) +"akj" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/maintenance/disposal) +"akk" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"akl" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Disposal Access"; + req_access_txt = "12" + }, +/obj/structure/cable/yellow{ + 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) +"akm" = ( +/obj/structure/cable/yellow{ + 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 = 8 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"akn" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"ako" = ( +/obj/structure/grille, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"akp" = ( +/obj/structure/rack, +/obj/item/clothing/gloves/color/yellow, +/obj/item/mop, +/obj/item/bikehorn/rubberducky, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/obj/item/grenade/empgrenade, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"akq" = ( +/obj/item/vending_refill/cola, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"akr" = ( +/obj/item/vending_refill/snack, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"aks" = ( +/obj/structure/rack, +/obj/item/clothing/neck/tie/red{ + pixel_x = -5; + pixel_y = 3 + }, +/obj/item/clothing/neck/tie/horrible, +/obj/item/clothing/neck/tie/blue{ + pixel_x = 5; + pixel_y = -2 + }, +/obj/item/dice/d8, +/obj/item/healthanalyzer, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"akt" = ( +/obj/structure/table, +/obj/item/clothing/gloves/color/latex, +/obj/item/clothing/mask/surgical, +/obj/item/reagent_containers/spray/cleaner, +/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) +"aku" = ( +/obj/structure/table, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = 26 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/item/folder/red{ + pixel_x = 3 + }, +/obj/item/folder/white{ + pixel_x = -4; + pixel_y = 2 + }, +/obj/item/healthanalyzer, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/security/brig) +"akv" = ( +/obj/structure/table, +/obj/machinery/airalarm{ + pixel_y = 28 + }, +/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) +"akw" = ( +/obj/structure/table, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/pen, +/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) +"akx" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-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, +/area/security/brig) +"aky" = ( +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"akz" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/sign/warning/pods{ + 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 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"akA" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + 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/security/warden) +"akB" = ( +/obj/structure/closet{ + name = "Evidence Closet 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/security/warden) +"akC" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -27 + }, +/obj/machinery/camera{ + c_tag = "Security - Secure Gear Storage"; + dir = 4 + }, +/obj/machinery/flasher/portable, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/security/warden) +"akD" = ( +/obj/machinery/flasher/portable, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/security/warden) +"akE" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/security/warden) +"akF" = ( +/obj/structure/closet/l3closet/security, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/security/warden) +"akG" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/structure/cable/yellow, +/turf/open/floor/plating, +/area/security/warden) +"akH" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/obj/structure/closet/secure_closet/security/sec, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"akI" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"akJ" = ( +/obj/structure/closet/secure_closet/security/sec, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"akK" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/security/warden) +"akW" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/security/range) +"akX" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/landmark/start/security_officer, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/range) +"akY" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/range) +"akZ" = ( +/obj/structure/rack, +/obj/item/gun/energy/laser/practice{ + pixel_x = 2; + pixel_y = -2 + }, +/obj/item/gun/energy/laser/practice{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/obj/machinery/camera{ + c_tag = "Firing Range"; + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/range) +"ala" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plating, +/area/maintenance/fore) +"alb" = ( +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/fore) +"alc" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plating, +/area/maintenance/fore) +"ald" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"ale" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"alq" = ( +/turf/closed/wall, +/area/maintenance/starboard) +"alr" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/starboard) +"alv" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/fore) +"alw" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/fore) +"alx" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "garbage" + }, +/obj/structure/sign/warning/vacuum{ + pixel_x = -32 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"aly" = ( +/obj/machinery/disposal/deliveryChute{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/window{ + base_state = "right"; + dir = 4; + icon_state = "right"; + layer = 3 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"alz" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "garbage" + }, +/obj/machinery/door/window/eastright{ + base_state = "left"; + dir = 1; + icon_state = "left"; + name = "Danger: Conveyor Access"; + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"alA" = ( +/obj/machinery/mineral/stacking_machine{ + input_dir = 2 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"alB" = ( +/obj/machinery/mineral/stacking_unit_console{ + machinedir = 8; + pixel_x = 32 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"alC" = ( +/obj/structure/grille, +/turf/open/floor/plating, +/area/maintenance/port) +"alD" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"alE" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"alF" = ( +/obj/machinery/door/airlock/maintenance/abandoned{ + name = "Secure Storage Room"; + req_access_txt = "65" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"alG" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"alH" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/item/bot_assembly/cleanbot, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"alI" = ( +/obj/item/grown/log, +/obj/effect/landmark/blobstart, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"alJ" = ( +/obj/structure/light_construct/small{ + dir = 4 + }, +/obj/structure/rack, +/obj/item/storage/secure/briefcase, +/obj/item/disk/data, +/obj/item/grenade/flashbang, +/obj/effect/spawner/lootdrop/maintenance, +/obj/item/grenade/smokebomb, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"alK" = ( +/turf/closed/wall, +/area/maintenance/port) +"alL" = ( +/obj/machinery/portable_atmospherics/canister/nitrous_oxide, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/fore) +"alM" = ( +/obj/structure/table, +/obj/item/storage/firstaid/regular, +/obj/item/reagent_containers/glass/bottle/epinephrine, +/obj/item/reagent_containers/glass/bottle/charcoal, +/obj/item/reagent_containers/syringe, +/obj/structure/extinguisher_cabinet{ + pixel_x = -27 + }, +/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) +"alN" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/security/brig) +"alO" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/security/brig) +"alP" = ( +/obj/machinery/door/window/westleft{ + dir = 4; + name = "Infirmary" + }, +/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/white, +/area/security/brig) +"alQ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"alR" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security{ + name = "Evidence Storage"; + req_one_access_txt = "1;4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + 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/security/warden) +"alS" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"alT" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/structure/cable/yellow{ + 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/security/warden) +"alU" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/security/warden) +"alV" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/security{ + name = "Evidence Storage"; + req_access_txt = "3" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/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/security/warden) +"alW" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel, +/area/security/warden) +"alX" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/door/airlock/security/glass{ + name = "Gear Room"; + req_one_access_txt = "1;4" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/delivery, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/warden) +"alZ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/security/warden) +"ama" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + name = "Secure Gear Storage"; + req_access_txt = "3" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/delivery, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/warden) +"amb" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"amc" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"ame" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"amp" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + name = "Firing Range"; + req_one_access_txt = "1;4" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/range) +"amq" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + 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, +/area/security/range) +"amr" = ( +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/range) +"ams" = ( +/obj/item/target, +/obj/item/target, +/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/structure/closet/crate/secure{ + desc = "A secure crate containing various materials for building a customised test-site."; + name = "Firing Range Gear Crate"; + req_access_txt = "1" + }, +/obj/machinery/power/apc{ + areastring = "/area/security/range"; + dir = 4; + name = "Shooting Range APC"; + pixel_x = 24 + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/range) +"amt" = ( +/obj/structure/rack, +/obj/item/storage/box/lights/mixed, +/obj/effect/landmark/blobstart, +/turf/open/floor/plating, +/area/maintenance/fore) +"amu" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/maintenance/fore) +"amv" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"amB" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/maintenance/port) +"amH" = ( +/obj/machinery/door/airlock/external{ + req_one_access_txt = "13,8" + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"amO" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/conveyor{ + dir = 9; + id = "garbage" + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"amP" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "garbage" + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"amQ" = ( +/obj/machinery/door/window/eastright{ + base_state = "left"; + icon_state = "left"; + name = "Danger: Conveyor Access"; + req_access_txt = "12" + }, +/obj/machinery/conveyor/inverted{ + dir = 6; + id = "garbage" + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"amR" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"amS" = ( +/obj/effect/landmark/xeno_spawn, +/obj/item/storage/box/lights/mixed, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"amT" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"amU" = ( +/turf/open/floor/plating{ + icon_state = "platingdmg2" + }, +/area/maintenance/port) +"amW" = ( +/obj/structure/table/reinforced, +/obj/item/folder, +/obj/item/folder, +/obj/machinery/door/window/westleft{ + base_state = "right"; + dir = 2; + icon_state = "right" + }, +/obj/item/book/manual/wiki/engineering_hacking, +/obj/item/tape/random, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"amX" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced, +/obj/item/stock_parts/cell/crap, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"amY" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced, +/obj/item/electronics/firealarm, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"amZ" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plating, +/area/maintenance/port) +"ana" = ( +/obj/structure/rack, +/obj/item/clothing/under/misc/mailman, +/obj/item/clothing/under/misc/vice_officer{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"anb" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"anc" = ( +/obj/machinery/door/airlock/security/glass{ + name = "N2O Storage"; + req_access_txt = "3" + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/fore) +"and" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/bodycontainer/morgue, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"ane" = ( +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/security/brig) +"anf" = ( +/obj/structure/bed/roller, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/white, +/area/security/brig) +"ang" = ( +/obj/machinery/door/window/westleft{ + base_state = "right"; + dir = 4; + icon_state = "right"; + name = "Infirmary" + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/security/brig) +"anh" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"ani" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"anj" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 27 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"ank" = ( +/obj/structure/table, +/obj/item/storage/box/evidence, +/obj/item/storage/box/evidence, +/obj/item/storage/box/evidence, +/obj/item/hand_labeler, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/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) +"anl" = ( +/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/dark, +/area/security/warden) +"anm" = ( +/obj/structure/filingcabinet/security{ + pixel_x = 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/security/warden) +"ann" = ( +/obj/structure/rack, +/obj/item/storage/box/chemimp{ + pixel_x = 4; + pixel_y = 3 + }, +/obj/item/storage/box/trackimp, +/obj/item/storage/lockbox/loyalty, +/obj/item/reagent_containers/glass/bottle/morphine, +/obj/machinery/light/small, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -26 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/security/warden) +"ano" = ( +/obj/structure/rack, +/obj/item/storage/box/handcuffs, +/obj/item/storage/box/flashbangs{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/security/warden) +"anp" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/security/warden) +"anq" = ( +/obj/structure/rack, +/obj/item/storage/box/firingpins{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/box/firingpins, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/security/warden) +"anr" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow, +/turf/open/floor/plating, +/area/security/warden) +"ans" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"ant" = ( +/obj/structure/table, +/obj/machinery/recharger{ + pixel_y = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"anu" = ( +/obj/machinery/vending/security, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 28 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"anD" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Security Maintenance"; + req_one_access_txt = "1;4" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/fore) +"anE" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/airlock/maintenance/abandoned{ + name = "Storage Room"; + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"anM" = ( +/obj/machinery/space_heater, +/turf/open/floor/plating, +/area/maintenance/starboard) +"anN" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"anS" = ( +/turf/open/floor/plating/airless, +/area/space/nearstation) +"anT" = ( +/obj/structure/lattice, +/obj/structure/grille, +/turf/open/space, +/area/space/nearstation) +"anU" = ( +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/structure/disposaloutlet{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"anV" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "garbage" + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"anW" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "garbage" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plating, +/area/maintenance/disposal) +"anX" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "garbage" + }, +/obj/machinery/recycler, +/turf/open/floor/plating, +/area/maintenance/disposal) +"anY" = ( +/obj/machinery/door/window/eastright{ + name = "Danger: Conveyor Access"; + req_access_txt = "12" + }, +/obj/machinery/conveyor/inverted{ + dir = 10; + id = "garbage" + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"anZ" = ( +/obj/effect/decal/cleanable/oil, +/obj/machinery/light_switch{ + pixel_x = 25 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"aoa" = ( +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/port) +"aob" = ( +/turf/open/floor/plating, +/area/maintenance/port) +"aoc" = ( +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"aod" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"aoe" = ( +/obj/machinery/space_heater, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plating, +/area/maintenance/port) +"aof" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plating, +/area/maintenance/port) +"aog" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/port/fore) +"aoh" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"aoi" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/air, +/obj/item/tank/internals/air, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"aoj" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"aok" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"aol" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"aom" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/maintenance{ + name = "Brig Infirmary Maintenance"; + req_access_txt = "63" + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"aon" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"aoo" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-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/white, +/area/security/brig) +"aop" = ( +/obj/structure/bed, +/obj/item/bedsheet, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/iv_drip, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/security/brig) +"aoq" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/rack, +/obj/item/storage/firstaid/regular, +/obj/item/healthanalyzer{ + pixel_y = -2 + }, +/obj/machinery/camera{ + c_tag = "Brig - Infirmary"; + dir = 1 + }, +/obj/item/clothing/under/rank/medical/doctor/purple{ + pixel_y = -4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-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/white, +/area/security/brig) +"aor" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"aos" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"aot" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 28 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"aou" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/airlock/security{ + name = "Evidence Storage"; + req_access_txt = "3" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/security/warden) +"aow" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/security/glass{ + name = "Secure Gear Storage"; + req_access_txt = "3" + }, +/obj/effect/turf_decal/delivery, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/warden) +"aox" = ( +/obj/structure/grille, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/port/fore) +"aoy" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 28 + }, +/obj/structure/closet/secure_closet/warden, +/obj/item/gun/energy/laser, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"aoz" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/closet/secure_closet/security/sec, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"aoA" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/security/warden) +"aoL" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"aoM" = ( +/obj/structure/cable/yellow{ + 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/fore) +"aoN" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg2" + }, +/area/maintenance/fore) +"aoO" = ( +/obj/machinery/power/apc{ + areastring = "/area/maintenance/disposal"; + name = "Disposal APC"; + pixel_y = -24 + }, +/obj/structure/cable/yellow, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"aoP" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"aoQ" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"aoR" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg2" + }, +/area/maintenance/fore) +"aoS" = ( +/obj/machinery/door/airlock/maintenance{ + req_one_access_txt = "1;4;38;12" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"apb" = ( +/obj/structure/grille, +/turf/open/floor/plating, +/area/maintenance/starboard) +"apc" = ( +/turf/open/floor/plating, +/area/maintenance/starboard) +"apd" = ( +/obj/structure/table, +/obj/item/tank/internals/emergency_oxygen{ + pixel_x = -8 + }, +/obj/item/tank/internals/emergency_oxygen{ + pixel_x = -8 + }, +/obj/item/clothing/mask/breath{ + pixel_x = 4 + }, +/obj/item/clothing/mask/breath{ + pixel_x = 4 + }, +/obj/effect/decal/cleanable/cobweb, +/obj/structure/sign/warning/vacuum/external{ + pixel_y = 32 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"ape" = ( +/obj/structure/rack, +/obj/item/storage/belt{ + desc = "Can hold quite a lot of stuff."; + name = "multi-belt" + }, +/obj/item/clothing/gloves/color/fyellow, +/obj/effect/spawner/lootdrop/maintenance, +/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 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"apf" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/starboard) +"apg" = ( +/obj/structure/closet, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/item/reagent_containers/food/drinks/beer{ + desc = "Takes you to a whole new level of thinking."; + name = "Meta-Cider" + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"apm" = ( +/turf/closed/wall, +/area/maintenance/solars/starboard/fore) +"apn" = ( +/obj/machinery/power/solar_control{ + id = "forestarboard"; + name = "Starboard Bow Solar Control" + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/fore) +"apo" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/fore) +"app" = ( +/obj/structure/sign/warning/vacuum/external{ + pixel_x = 32 + }, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/fore) +"apq" = ( +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"apr" = ( +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=1"; + freq = 1400; + location = "Disposals" + }, +/obj/structure/plasticflaps, +/obj/machinery/door/window/northright{ + dir = 2; + name = "delivery door"; + req_access_txt = "31" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/conveyor{ + dir = 1; + id = "garbage" + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"aps" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Disposal Conveyor Access"; + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/disposal) +"apt" = ( +/obj/structure/sign/warning/securearea{ + name = "\improper STAY CLEAR HEAVY MACHINERY" + }, +/turf/closed/wall, +/area/maintenance/disposal) +"apu" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"apv" = ( +/obj/machinery/door/airlock/maintenance/abandoned{ + name = "Storage Room"; + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"apw" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"apy" = ( +/obj/structure/light_construct/small{ + dir = 4 + }, +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"apz" = ( +/obj/item/cigbutt, +/turf/open/floor/plating, +/area/maintenance/port) +"apA" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/sign/plaques/kiddie/library{ + pixel_y = -32 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"apB" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"apC" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"apD" = ( +/obj/item/storage/box/lights/mixed, +/obj/item/flashlight{ + pixel_x = 1; + pixel_y = 5 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"apE" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/extinguisher_cabinet{ + pixel_x = -27 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"apF" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/security/brig) +"apG" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"apH" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/security/warden) +"apI" = ( +/obj/machinery/computer/prisoner/management{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"apJ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"apK" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/photocopier{ + pixel_y = 3 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"apL" = ( +/obj/machinery/requests_console{ + department = "Security"; + departmentType = 5; + pixel_y = 30 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Warden's Office" + }, +/obj/structure/rack, +/obj/item/storage/toolbox/mechanical{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/storage/toolbox/emergency{ + pixel_x = 2; + pixel_y = -3 + }, +/obj/item/wirecutters{ + pixel_y = 2 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"apM" = ( +/obj/structure/table, +/obj/machinery/recharger, +/obj/machinery/airalarm{ + pixel_y = 28 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"apN" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"apO" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"apQ" = ( +/obj/structure/reagent_dispensers/peppertank{ + pixel_x = 32 + }, +/obj/machinery/camera{ + c_tag = "Security - Gear Room"; + dir = 8 + }, +/obj/machinery/vending/wardrobe/sec_wardrobe, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"aqb" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/fore) +"aqq" = ( +/obj/item/cigbutt, +/turf/open/floor/plating, +/area/maintenance/starboard) +"aqr" = ( +/turf/open/floor/plating{ + icon_state = "platingdmg2" + }, +/area/maintenance/starboard) +"aqs" = ( +/obj/item/mmi{ + name = "man-machine interface" + }, +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"aqy" = ( +/obj/structure/chair/stool{ + pixel_y = 8 + }, +/obj/machinery/camera/autoname{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/fore) +"aqz" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/fore) +"aqA" = ( +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/power/terminal, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_x = 29 + }, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/fore) +"aqB" = ( +/obj/structure/lattice, +/obj/structure/grille/broken, +/turf/open/space, +/area/space/nearstation) +"aqC" = ( +/obj/machinery/space_heater, +/obj/structure/sign/warning/vacuum/external{ + pixel_y = 32 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"aqD" = ( +/obj/machinery/space_heater, +/turf/open/floor/plating{ + icon_state = "platingdmg2" + }, +/area/maintenance/port/fore) +"aqE" = ( +/obj/machinery/door/poddoor/shutters{ + id = "supplybridge" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"aqF" = ( +/obj/machinery/door/poddoor/shutters{ + id = "supplybridge" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"aqG" = ( +/obj/machinery/door/poddoor/shutters{ + id = "supplybridge" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"aqH" = ( +/obj/machinery/space_heater, +/obj/structure/sign/warning/vacuum/external{ + pixel_y = 32 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/port/fore) +"aqI" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"aqJ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"aqK" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating, +/area/maintenance/port) +"aqL" = ( +/obj/structure/rack, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/item/storage/toolbox/emergency, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"aqM" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"aqN" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"aqO" = ( +/obj/machinery/space_heater, +/turf/open/floor/plating, +/area/maintenance/port) +"aqP" = ( +/obj/structure/light_construct/small, +/obj/item/bot_assembly/floorbot{ + build_step = 1 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"aqQ" = ( +/obj/item/vending_refill/cigarette, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"aqR" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/port/fore) +"aqS" = ( +/obj/structure/closet/crate, +/obj/item/clothing/gloves/color/fyellow, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"aqT" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"aqU" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"aqV" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/item/extinguisher, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"aqW" = ( +/obj/structure/closet/crate, +/obj/item/restraints/handcuffs, +/obj/item/bodybag, +/obj/item/radio, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 3; + name = "3maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"aqX" = ( +/obj/structure/chair, +/obj/item/restraints/handcuffs, +/obj/effect/decal/remains/human, +/obj/item/clothing/under/costume/soviet, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"aqY" = ( +/obj/machinery/computer/security/labor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"aqZ" = ( +/obj/machinery/computer/shuttle/labor, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"ara" = ( +/obj/machinery/computer/secure_data{ + dir = 4 + }, +/obj/machinery/computer/security/telescreen{ + desc = "Used for watching Prison Wing holding areas."; + name = "Prison Monitor"; + network = list("prison"); + pixel_x = -30 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"arb" = ( +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"arc" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"ard" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"are" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"arf" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"arg" = ( +/obj/structure/chair/office/dark{ + dir = 4 + }, +/obj/effect/landmark/start/warden, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"ari" = ( +/obj/machinery/holopad, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"arj" = ( +/obj/structure/closet/secure_closet/security/sec, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"ark" = ( +/obj/machinery/newscaster/security_unit, +/turf/closed/wall, +/area/security/warden) +"ary" = ( +/obj/structure/rack, +/obj/item/clothing/suit/hazardvest, +/turf/open/floor/plating, +/area/maintenance/fore) +"arz" = ( +/obj/machinery/space_heater, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/fore) +"arA" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plating, +/area/maintenance/fore) +"arG" = ( +/obj/structure/closet, +/obj/item/storage/box/lights/mixed, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/starboard/fore) +"arH" = ( +/obj/structure/rack, +/obj/item/extinguisher, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"arI" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/costume, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"arJ" = ( +/obj/structure/rack, +/obj/item/clothing/suit/poncho, +/obj/item/clothing/head/sombrero, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"arK" = ( +/obj/effect/landmark/blobstart, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/starboard/fore) +"arL" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"arM" = ( +/obj/structure/rack, +/obj/item/book/manual/wiki/engineering_guide{ + pixel_x = 3; + pixel_y = 4 + }, +/obj/effect/spawner/lootdrop/maintenance, +/obj/item/storage/box/lights/mixed, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"arT" = ( +/obj/machinery/power/apc{ + areastring = "/area/maintenance/solars/starboard/fore"; + dir = 8; + name = "Starboard Bow Solar APC"; + pixel_x = -25; + pixel_y = 3 + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/solars/starboard/fore) +"arU" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/fore) +"arV" = ( +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/machinery/power/smes, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/fore) +"arW" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/effect/landmark/xeno_spawn, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"arX" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/light, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"arY" = ( +/obj/machinery/door/airlock/public/glass{ + name = "space-bridge access" + }, +/obj/machinery/button/door{ + id = "supplybridge"; + name = "Shuttle Bay Space Bridge Control"; + pixel_y = 27 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"arZ" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"asa" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/port) +"asb" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"asc" = ( +/obj/machinery/door/airlock/public/glass{ + name = "space-bridge access" + }, +/obj/machinery/button/door{ + id = "supplybridge"; + name = "Shuttle Bay Space Bridge Control"; + pixel_y = 27 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"asd" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/light, +/obj/effect/landmark/xeno_spawn, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"ase" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"asf" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Cargo Bay Bridge Access" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"asg" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"ash" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/port/fore) +"asi" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"asj" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"ask" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"asl" = ( +/obj/machinery/door/airlock/maintenance/abandoned{ + name = "Storage Room"; + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"asm" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/airlock/maintenance{ + name = "Brig Maintenance"; + req_one_access_txt = "63;12" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"asn" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Labor Shuttle Control Desk"; + 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) +"aso" = ( +/obj/structure/chair/office/dark{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"asp" = ( +/obj/machinery/computer/security{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"asq" = ( +/obj/effect/landmark/start/warden, +/obj/structure/chair/office/dark, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"asr" = ( +/obj/machinery/computer/crew{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"ass" = ( +/obj/machinery/newscaster/security_unit{ + pixel_y = -30 + }, +/obj/item/folder/red, +/obj/item/folder/red, +/obj/structure/table, +/obj/item/book/manual/wiki/security_space_law{ + pixel_x = -3; + pixel_y = 5 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"ast" = ( +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/pen, +/obj/structure/reagent_dispensers/peppertank{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"asu" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/structure/filingcabinet/chestdrawer{ + pixel_y = 2 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"asv" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"asw" = ( +/obj/structure/table, +/obj/machinery/button/door{ + id = "Prison Gate"; + name = "Prison Wing Lockdown"; + pixel_y = 7; + req_access_txt = "2" + }, +/obj/machinery/button/door{ + id = "Secure Gate"; + name = "Cell Window Control"; + pixel_x = -5; + pixel_y = -3; + specialfunctions = 4 + }, +/obj/machinery/button/door{ + id = "briglockdown"; + name = "Brig Lockdown Control"; + pixel_x = 5; + pixel_y = -3 + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/item/radio/intercom{ + dir = 4; + name = "Station Intercom (General)"; + pixel_x = 29; + pixel_y = -28 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"asx" = ( +/obj/structure/table, +/obj/machinery/recharger{ + pixel_y = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"asz" = ( +/obj/structure/table, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/item/folder/red, +/obj/item/restraints/handcuffs, +/obj/item/clothing/head/cone{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/clothing/head/cone{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/clothing/head/cone{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/clothing/head/cone{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/clothing/head/cone{ + pixel_x = -4; + pixel_y = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"asA" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/security/warden) +"asB" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"asP" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"asQ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance/abandoned{ + name = "Storage Room"; + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"asR" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"asS" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"atd" = ( +/mob/living/simple_animal/opossum, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/starboard/fore) +"ate" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"atj" = ( +/obj/machinery/space_heater, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/starboard) +"atk" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/airlock/engineering{ + name = "Starboard Bow Solar Access"; + req_access_txt = "10" + }, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/fore) +"atl" = ( +/obj/structure/sign/warning/electricshock, +/turf/closed/wall, +/area/maintenance/solars/starboard/fore) +"atm" = ( +/turf/closed/wall/r_wall, +/area/maintenance/starboard) +"atn" = ( +/obj/machinery/door/airlock/external{ + req_access_txt = "13" + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"ato" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Cargo Bay Bridge Access" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"atp" = ( +/obj/machinery/door/poddoor/shutters{ + id = "supplybridge" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"atq" = ( +/obj/machinery/door/poddoor/shutters{ + id = "supplybridge" + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"atr" = ( +/obj/machinery/door/poddoor/shutters{ + id = "supplybridge" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"ats" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"att" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"atu" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"atv" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"atx" = ( +/obj/structure/cable/yellow{ + 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/port/fore) +"aty" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/sorting/mail{ + dir = 4; + sortType = 2 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"atz" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"atA" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"atB" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance{ + req_one_access_txt = "12;63" + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"atD" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/grille, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"atE" = ( +/obj/structure/cable/yellow{ + 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/port/fore) +"atG" = ( +/obj/structure/cable/yellow{ + 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/plating, +/area/maintenance/port/fore) +"atH" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"atI" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"atK" = ( +/obj/machinery/computer/prisoner/gulag_teleporter_computer{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"atL" = ( +/obj/machinery/gulag_teleporter, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"atM" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/security/brig) +"atN" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"atO" = ( +/obj/structure/sign/warning/pods, +/turf/closed/wall/r_wall, +/area/security/warden) +"atP" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"atQ" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/security/warden) +"atR" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + name = "Brig Control"; + req_access_txt = "3" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/security/warden) +"atS" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + name = "Gear Room"; + req_one_access_txt = "1;4" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/security/warden) +"aua" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/fore) +"aub" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"auc" = ( +/turf/open/floor/plating{ + icon_state = "platingdmg2" + }, +/area/maintenance/fore) +"auo" = ( +/obj/structure/mopbucket, +/obj/item/mop, +/obj/effect/landmark/blobstart, +/turf/open/floor/plating{ + icon_state = "platingdmg2" + }, +/area/maintenance/starboard/fore) +"aup" = ( +/obj/structure/closet/crate/hydroponics, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"auq" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"aur" = ( +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"aus" = ( +/obj/structure/closet, +/obj/item/stock_parts/matter_bin, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"aut" = ( +/obj/machinery/door/airlock/maintenance/abandoned{ + name = "Storage Room"; + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/starboard) +"aux" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"auy" = ( +/obj/item/stack/sheet/cardboard, +/obj/item/flashlight, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"auz" = ( +/obj/structure/rack, +/obj/item/clothing/mask/gas, +/obj/item/clothing/glasses/sunglasses, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"auA" = ( +/obj/structure/closet/crate/medical, +/obj/item/stack/cable_coil, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"auB" = ( +/obj/structure/closet/emcloset, +/obj/structure/sign/warning/vacuum/external{ + pixel_x = 32 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"auC" = ( +/obj/structure/closet/crate{ + icon_state = "crateopen" + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"auD" = ( +/obj/structure/closet/crate{ + icon_state = "crateopen" + }, +/obj/structure/sign/warning/vacuum/external{ + pixel_y = 32 + }, +/obj/effect/decal/cleanable/cobweb, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 3; + name = "3maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"auE" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"auF" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating, +/area/maintenance/port) +"auG" = ( +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/port/fore) +"auH" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"auI" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"auJ" = ( +/obj/structure/grille, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/window/reinforced/tinted/fulltile, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"auK" = ( +/obj/structure/disposalpipe/junction/flip{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"auL" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"auM" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/port/fore) +"auN" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"auO" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"auP" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"auU" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/sign/warning/vacuum/external{ + pixel_x = -32 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"auV" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/junction, +/turf/open/floor/plasteel, +/area/security/brig) +"auW" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"auY" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"auZ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"ava" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/westleft{ + base_state = "right"; + dir = 2; + icon_state = "right"; + name = "Reception Window" + }, +/obj/machinery/door/window/brigdoor{ + dir = 1; + name = "Brig Control Desk"; + req_access_txt = "3" + }, +/obj/item/paper, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"avb" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Brig - Hallway - Entrance" + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"avc" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"avd" = ( +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = 26 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"ave" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"avf" = ( +/obj/machinery/firealarm{ + pixel_y = 28 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"avg" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"avh" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"avi" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/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) +"avj" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"avk" = ( +/turf/open/floor/plasteel/dark, +/area/security/brig) +"avq" = ( +/obj/item/cigbutt, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"avr" = ( +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/starboard) +"avs" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating, +/area/maintenance/starboard) +"avt" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"avu" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/sign/warning/radiation/rad_area{ + dir = 1; + pixel_y = 32 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"avv" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"avz" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"avA" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/sign/warning/radiation/rad_area{ + dir = 1; + pixel_y = 32 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"avB" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"avC" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/starboard/fore) +"avD" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg2" + }, +/area/maintenance/starboard/fore) +"avE" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/starboard/fore) +"avF" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"avG" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"avH" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"avI" = ( +/obj/structure/closet/crate, +/obj/item/stack/sheet/metal/fifty{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/stack/sheet/metal/fifty{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/stack/sheet/metal/fifty{ + pixel_x = 2; + pixel_y = 2 + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"avJ" = ( +/obj/structure/sign/warning/vacuum/external{ + pixel_x = 32 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"avK" = ( +/obj/structure/sign/warning/vacuum/external{ + pixel_y = 32 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"avL" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"avM" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/port/fore) +"avN" = ( +/obj/item/hand_labeler_refill, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"avO" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"avP" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"avQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance{ + req_one_access_txt = "12;50" + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"avR" = ( +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 1; + sortType = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"avS" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating{ + icon_state = "platingdmg2" + }, +/area/maintenance/port/fore) +"avT" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"avW" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"avY" = ( +/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) +"avZ" = ( +/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) +"awa" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"awb" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"awc" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/security/brig) +"awd" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"awe" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"awf" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/structure/disposalpipe/junction/flip{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"awg" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"awh" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"awi" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/mob/living/simple_animal/bot/secbot/beepsky{ + desc = "It's Officer Beepsky! Powered by a potato and a shot of whiskey, and with a sturdier reinforced chassis, too. "; + health = 45; + maxHealth = 45; + name = "Officer Beepsky" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"awj" = ( +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/security/brig) +"awk" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"awl" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"awm" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"awn" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"awo" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"awp" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"awq" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"awr" = ( +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/security/brig) +"aws" = ( +/turf/open/floor/plasteel, +/area/security/brig) +"awt" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"awu" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security{ + name = "Interrogation"; + req_access_txt = "63" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"awv" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"aww" = ( +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"awx" = ( +/obj/structure/table, +/obj/item/flashlight/lamp, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"awy" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"awz" = ( +/obj/machinery/camera{ + c_tag = "Interrogation room"; + dir = 8; + network = list("interrogation") + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"awB" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/item/storage/box/lights/mixed, +/turf/open/floor/plating, +/area/maintenance/fore) +"awI" = ( +/obj/machinery/door/airlock/maintenance/abandoned{ + name = "Storage Room"; + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"awJ" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/starboard/fore) +"awL" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"awM" = ( +/obj/structure/closet, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"awP" = ( +/obj/item/clothing/gloves/color/rainbow, +/obj/item/clothing/shoes/sneakers/rainbow, +/obj/item/clothing/under/color/rainbow, +/obj/item/clothing/head/soft/rainbow, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"awQ" = ( +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"awR" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"awS" = ( +/obj/structure/closet/crate, +/obj/item/coin/silver, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"awT" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"awU" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"awV" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"awY" = ( +/obj/machinery/door/airlock/external{ + name = "Solar Maintenance"; + req_access_txt = "10; 13" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/aft) +"awZ" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"axa" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"axb" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/red, +/turf/open/floor/plasteel, +/area/security/brig) +"axc" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/light, +/obj/machinery/camera{ + c_tag = "Brig - Hallway - Port"; + dir = 1 + }, +/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 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"axd" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"axe" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/security/brig) +"axf" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/door_timer{ + id = "Cell 2"; + name = "Cell 2"; + pixel_y = -32 + }, +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"axg" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"axh" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/machinery/door_timer{ + id = "Cell 3"; + name = "Cell 3"; + pixel_y = -32 + }, +/obj/effect/turf_decal/tile/red, +/turf/open/floor/plasteel, +/area/security/brig) +"axi" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/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/brig) +"axj" = ( +/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) +"axk" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold4w/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/brig) +"axl" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/power/apc/highcap/ten_k{ + areastring = "/area/security/brig"; + name = "Brig APC"; + pixel_x = 1; + pixel_y = -24 + }, +/obj/structure/cable/yellow, +/obj/machinery/button/flasher{ + id = "secentranceflasher"; + name = "Brig Entrance Flasher"; + pixel_x = -3; + pixel_y = -38; + req_access_txt = "1" + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"axm" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"axn" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"axo" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"axp" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/turf/open/floor/plasteel, +/area/security/brig) +"axq" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/effect/turf_decal/tile/red, +/turf/open/floor/plasteel, +/area/security/brig) +"axr" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/button/flasher{ + id = "holdingflash"; + pixel_y = -26; + req_access_txt = "1" + }, +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/tile/red, +/turf/open/floor/plasteel, +/area/security/brig) +"axs" = ( +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/light, +/obj/machinery/camera{ + c_tag = "Brig - Hallway - Starboard"; + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/turf/open/floor/plasteel, +/area/security/brig) +"axt" = ( +/obj/structure/cable/yellow{ + 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/red, +/turf/open/floor/plasteel, +/area/security/brig) +"axu" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/turf/open/floor/plasteel, +/area/security/brig) +"axv" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 27 + }, +/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) +"axw" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/security/brig) +"axx" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"axy" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"axz" = ( +/obj/structure/table, +/obj/item/folder/red, +/obj/item/taperecorder, +/obj/item/radio/intercom{ + broadcasting = 1; + freerange = 1; + frequency = 1424; + listening = 0; + name = "Interrogation Intercom"; + pixel_y = -24 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"axA" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"axB" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"axL" = ( +/obj/item/clothing/suit/caution, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"axM" = ( +/obj/structure/cable/yellow{ + 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/starboard/fore) +"axN" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/starboard/fore) +"axO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"axP" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"axQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/starboard/fore) +"axR" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/holopad, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"axS" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"aye" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 10 + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/space/nearstation) +"ayf" = ( +/obj/structure/closet/crate, +/obj/item/stack/sheet/glass{ + amount = 10 + }, +/obj/item/stack/rods, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"ayk" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Mining Dock Maintenance"; + req_access_txt = "48" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"aym" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Cargo Bay Warehouse Maintenance"; + req_one_access_txt = "48;50" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"ayn" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"ayu" = ( +/obj/machinery/door/window/northleft{ + dir = 8; + name = "Jetpack Storage"; + pixel_x = -1; + req_access_txt = "19" + }, +/obj/structure/window/reinforced, +/obj/structure/rack, +/obj/item/tank/jetpack/carbondioxide/eva{ + pixel_x = 4; + pixel_y = -1 + }, +/obj/item/tank/jetpack/carbondioxide/eva, +/obj/item/tank/jetpack/carbondioxide/eva{ + pixel_x = -4; + pixel_y = 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/ai_monitored/command/storage/eva) +"ayw" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/security/brig) +"ayx" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/machinery/door/window/brigdoor/security/cell{ + id = "Cell 1"; + name = "Cell 1" + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"ayy" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/security/brig) +"ayz" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/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) +"ayA" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/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) +"ayB" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/machinery/door/airlock/security/glass{ + id_tag = "innerbrig"; + name = "Brig"; + req_access_txt = "63" + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"ayC" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/machinery/door/airlock/security/glass{ + id_tag = "innerbrig"; + name = "Brig"; + req_access_txt = "63" + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"ayD" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/security/brig) +"ayE" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/machinery/door/window/brigdoor/security/holding{ + id = "Holding Cell"; + name = "Holding Cell" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"ayF" = ( +/turf/closed/wall/r_wall, +/area/security/detectives_office) +"ayG" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "detective_shutters"; + name = "detective's office shutters" + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/turf/open/floor/plating, +/area/security/detectives_office) +"ayH" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security{ + name = "Detective's Office"; + req_access_txt = "4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/security/detectives_office) +"ayI" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "detective_shutters"; + name = "detective's office shutters" + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/security/detectives_office) +"ayJ" = ( +/turf/closed/wall, +/area/security/detectives_office) +"ayQ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"ayR" = ( +/obj/item/wrench, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"azb" = ( +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"azd" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/space/nearstation) +"azg" = ( +/obj/item/stack/cable_coil, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"azq" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"azr" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/item/cigbutt, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"azB" = ( +/obj/machinery/camera{ + c_tag = "Gravity Generator Room"; + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/gravity_generator) +"azC" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/hallway/primary/fore) +"azD" = ( +/obj/machinery/flasher{ + id = "Cell 1"; + pixel_x = -28 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"azE" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"azF" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"azG" = ( +/obj/machinery/flasher{ + id = "Cell 2"; + pixel_x = -28 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"azH" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/machinery/flasher{ + id = "Cell 3"; + pixel_x = -28 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"azI" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/light/small{ + dir = 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, +/area/security/brig) +"azJ" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"azK" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/cable/yellow{ + 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 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"azL" = ( +/obj/structure/chair, +/obj/machinery/flasher{ + id = "holdingflash"; + pixel_x = -25 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"azM" = ( +/obj/structure/chair, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/security/brig) +"azN" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/security/brig) +"azO" = ( +/obj/structure/chair, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/security/brig) +"azP" = ( +/obj/structure/rack, +/obj/machinery/flasher{ + id = "holdingflash"; + pixel_x = 25 + }, +/obj/item/clothing/under/rank/prisoner, +/obj/item/clothing/under/rank/prisoner, +/obj/item/clothing/under/rank/prisoner, +/obj/item/clothing/under/rank/prisoner, +/obj/item/clothing/under/rank/prisoner, +/obj/item/clothing/shoes/sneakers/orange, +/obj/item/clothing/shoes/sneakers/orange, +/obj/item/clothing/shoes/sneakers/orange, +/obj/item/clothing/shoes/sneakers/orange, +/obj/item/clothing/shoes/sneakers/orange, +/obj/item/restraints/handcuffs, +/obj/item/restraints/handcuffs, +/obj/item/restraints/handcuffs, +/obj/item/restraints/handcuffs, +/obj/item/restraints/handcuffs, +/turf/open/floor/plasteel, +/area/security/brig) +"azQ" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -24 + }, +/obj/structure/filingcabinet, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/light_switch{ + pixel_y = 25 + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"azR" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"azS" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/carpet, +/area/security/detectives_office) +"azT" = ( +/obj/structure/table/wood, +/obj/item/storage/fancy/cigarettes, +/obj/item/clothing/glasses/sunglasses, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/carpet, +/area/security/detectives_office) +"azU" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/obj/structure/table/wood, +/obj/machinery/computer/security/telescreen{ + desc = "Used for watching Prison Wing holding areas."; + name = "Prison Monitor"; + network = list("prison"); + pixel_y = 30 + }, +/obj/item/flashlight/lamp/green{ + pixel_x = 1; + pixel_y = 5 + }, +/obj/item/restraints/handcuffs, +/turf/open/floor/carpet, +/area/security/detectives_office) +"azV" = ( +/obj/structure/table/wood, +/obj/item/storage/secure/safe{ + pixel_x = 32 + }, +/obj/machinery/button/door{ + id = "detective_shutters"; + name = "detective's office shutters control"; + pixel_y = 26; + req_access_txt = "4" + }, +/obj/machinery/computer/security/wooden_tv{ + pixel_x = 3; + pixel_y = 2 + }, +/turf/open/floor/carpet, +/area/security/detectives_office) +"azW" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plating, +/area/maintenance/fore) +"azY" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg2" + }, +/area/maintenance/fore) +"azZ" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"aAi" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/cable/yellow{ + 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/starboard/fore) +"aAj" = ( +/obj/structure/cable/yellow{ + 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 = 8 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"aAk" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/starboard/fore) +"aAl" = ( +/obj/structure/cable/yellow{ + 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/starboard/fore) +"aAm" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/grille, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"aAn" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"aAs" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"aAA" = ( +/obj/docking_port/stationary{ + dir = 8; + dwidth = 3; + height = 5; + id = "mining_home"; + name = "mining shuttle bay"; + roundstart_template = /datum/map_template/shuttle/mining/box; + width = 7 + }, +/turf/open/space/basic, +/area/space) +"aAV" = ( +/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) +"aAW" = ( +/obj/machinery/door/airlock/external{ + name = "Labor Camp Shuttle Airlock" + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/fore) +"aAX" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 28 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Labor Shuttle Dock"; + dir = 8 + }, +/obj/machinery/flasher{ + id = "PRelease"; + pixel_x = 24; + pixel_y = 20 + }, +/obj/machinery/gulag_item_reclaimer{ + pixel_y = 24 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/fore) +"aAY" = ( +/obj/structure/bed, +/obj/item/bedsheet, +/turf/open/floor/plasteel, +/area/security/brig) +"aAZ" = ( +/obj/structure/closet/secure_closet/brig{ + id = "Cell 1"; + name = "Cell 1 Locker" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"aBa" = ( +/obj/structure/closet/secure_closet/brig{ + id = "Cell 2"; + name = "Cell 2 Locker" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"aBb" = ( +/obj/structure/closet/secure_closet/brig{ + id = "Cell 3"; + name = "Cell 3 Locker" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"aBc" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -26 + }, +/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) +"aBd" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"aBe" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/extinguisher_cabinet{ + pixel_x = 27 + }, +/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) +"aBf" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"aBg" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"aBh" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"aBi" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"aBj" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"aBk" = ( +/obj/structure/closet/secure_closet/detective, +/obj/effect/landmark/blobstart, +/obj/machinery/camera{ + c_tag = "Detective's Office"; + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aBl" = ( +/obj/machinery/holopad, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aBm" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/carpet, +/area/security/detectives_office) +"aBn" = ( +/obj/structure/table/wood, +/obj/item/folder/red, +/obj/item/hand_labeler, +/turf/open/floor/carpet, +/area/security/detectives_office) +"aBo" = ( +/obj/effect/landmark/start/detective, +/obj/structure/chair/office/dark{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/carpet, +/area/security/detectives_office) +"aBp" = ( +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/obj/machinery/computer/secure_data{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/security/detectives_office) +"aBq" = ( +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/fore) +"aBr" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/maintenance/fore) +"aBs" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/effect/landmark/blobstart, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"aBC" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"aCj" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + name = "Labor Camp Shuttle Airlock" + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/fore) +"aCk" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/machinery/door/poddoor/preopen{ + id = "Secure Gate"; + name = "brig shutters" + }, +/turf/open/floor/plating, +/area/security/brig) +"aCl" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/machinery/door/poddoor/preopen{ + id = "Secure Gate"; + name = "brig shutters" + }, +/turf/open/floor/plating, +/area/security/brig) +"aCm" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/machinery/door/poddoor/preopen{ + id = "Secure Gate"; + name = "brig shutters" + }, +/turf/open/floor/plating, +/area/security/brig) +"aCn" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/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/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"aCo" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "Secure Gate"; + name = "brig shutters" + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/security/brig) +"aCp" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/firedoor, +/obj/machinery/flasher{ + id = "secentranceflasher"; + pixel_x = 25 + }, +/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/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"aCq" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + name = "Security Desk"; + req_access_txt = "63" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"aCr" = ( +/obj/machinery/door/airlock/security{ + name = "Court Cell"; + req_access_txt = "63" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"aCt" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aCu" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/security/detectives_office) +"aCv" = ( +/obj/structure/table/wood, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/pen, +/turf/open/floor/carpet, +/area/security/detectives_office) +"aCw" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/carpet, +/area/security/detectives_office) +"aCx" = ( +/obj/machinery/computer/med_data{ + dir = 8 + }, +/obj/machinery/newscaster{ + pixel_x = 28 + }, +/turf/open/floor/carpet, +/area/security/detectives_office) +"aCy" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/fore) +"aCz" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"aCM" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"aDa" = ( +/turf/open/floor/plating, +/area/construction/mining/aux_base) +"aDb" = ( +/turf/closed/wall, +/area/construction/mining/aux_base) +"aDc" = ( +/obj/structure/closet/crate, +/obj/item/coin/silver, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"aDu" = ( +/turf/closed/wall, +/area/hallway/primary/fore) +"aDv" = ( +/obj/machinery/door/poddoor/preopen{ + id = "prison release"; + name = "prisoner processing blast door" + }, +/obj/machinery/button/door{ + id = "prison release"; + name = "Labor Camp Shuttle Lockdown"; + pixel_x = -25; + req_access_txt = "2" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aDw" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aDx" = ( +/obj/structure/chair/stool, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aDy" = ( +/obj/structure/sign/warning/electricshock{ + pixel_y = 32 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aDz" = ( +/obj/structure/sign/warning/electricshock{ + pixel_y = 32 + }, +/obj/machinery/camera{ + c_tag = "Fore Primary Hallway Cells" + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aDA" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/status_display/evac{ + pixel_y = 32 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aDB" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aDC" = ( +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aDD" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aDE" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/machinery/door/poddoor/preopen{ + id = "briglockdown"; + name = "brig shutters" + }, +/turf/open/floor/plating, +/area/security/brig) +"aDF" = ( +/obj/machinery/computer/secure_data, +/obj/machinery/button/flasher{ + id = "secentranceflasher"; + name = "Brig Entrance Flash Control"; + pixel_x = -24; + pixel_y = 24; + req_access_txt = "1" + }, +/obj/machinery/button/door{ + id = "Secure Gate"; + name = "Cell Window Control"; + pixel_x = 5; + pixel_y = 27; + specialfunctions = 4 + }, +/obj/machinery/button/door{ + id = "briglockdown"; + name = "Brig Lockdown Control"; + pixel_x = 5; + pixel_y = 37 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/button/door{ + desc = "A remote control switch for the medbay foyer."; + id = "innerbrig"; + name = "Brig Interior Doors Control"; + normaldoorcontrol = 1; + pixel_x = -5; + pixel_y = 37; + 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 = -5; + pixel_y = 27; + req_access_txt = "63" + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"aDG" = ( +/obj/structure/filingcabinet/chestdrawer{ + pixel_y = 3 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"aDH" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/button/flasher{ + id = "holdingflash"; + name = "holding cell flasher button"; + pixel_x = 23; + pixel_y = 23; + req_access_txt = "1" + }, +/obj/machinery/camera{ + c_tag = "Brig - Desk"; + dir = 8 + }, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_x = 29; + pixel_y = -2 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"aDI" = ( +/obj/machinery/requests_console{ + department = "Detective's office"; + pixel_x = -30 + }, +/obj/structure/table/wood, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/item/book/manual/wiki/security_space_law, +/obj/item/camera/detective, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aDJ" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aDK" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aDL" = ( +/obj/machinery/light/small, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -26 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aDM" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aDN" = ( +/obj/machinery/vending/wardrobe/det_wardrobe, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aDO" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/fore) +"aEI" = ( +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -22 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aEJ" = ( +/obj/structure/sign/warning/vacuum/external{ + pixel_y = 32 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aEK" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=1.5-Fore-Central"; + location = "1-BrigCells" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aEL" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aEM" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aEN" = ( +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aEO" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aEP" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aEQ" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aER" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aES" = ( +/obj/structure/cable/yellow{ + 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/fore) +"aET" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=1-BrigCells"; + location = "0-SecurityDesk" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aEU" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aEV" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/westleft{ + base_state = "right"; + icon_state = "right"; + name = "Outer Window" + }, +/obj/machinery/door/window/brigdoor{ + dir = 4; + name = "Security Desk"; + req_access_txt = "1" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/item/radio/off, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "briglockdown"; + name = "brig shutters" + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"aEW" = ( +/obj/structure/chair/office/dark{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"aEX" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"aEY" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"aEZ" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/table, +/obj/item/bodybag, +/obj/item/clothing/gloves/color/latex, +/obj/item/clothing/mask/surgical, +/turf/open/floor/plasteel/dark, +/area/security/detectives_office) +"aFa" = ( +/obj/machinery/door/window{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/security/detectives_office) +"aFb" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Detective Maintenance"; + req_access_txt = "4" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/fore) +"aFM" = ( +/obj/machinery/door/airlock/maintenance{ + req_one_access_txt = "12;63;48;50" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"aFV" = ( +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -26 + }, +/obj/machinery/camera{ + c_tag = "Storage Wing - Security Access Door"; + dir = 4 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/fore) +"aFW" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/fore) +"aFX" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/fore) +"aFY" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security{ + name = "Security-Storage Backroom"; + req_access_txt = "63" + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/fore) +"aFZ" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aGa" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aGb" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/extinguisher_cabinet{ + pixel_y = -30 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aGc" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aGd" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aGe" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aGf" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/power/apc/highcap/five_k{ + areastring = "/area/hallway/primary/fore"; + name = "Fore Primary Hallway APC"; + pixel_y = -27 + }, +/obj/structure/cable/yellow, +/obj/machinery/light, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aGg" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aGh" = ( +/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 = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aGi" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aGj" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + 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) +"aGk" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aGl" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aGm" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/effect/turf_decal/tile/red, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aGn" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/effect/turf_decal/tile/red, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aGo" = ( +/obj/item/beacon, +/obj/effect/turf_decal/tile/red, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aGp" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow, +/obj/machinery/door/poddoor/preopen{ + id = "briglockdown"; + name = "brig shutters" + }, +/turf/open/floor/plating, +/area/security/brig) +"aGq" = ( +/obj/machinery/computer/security{ + dir = 1 + }, +/obj/machinery/newscaster/security_unit{ + pixel_y = -30 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"aGr" = ( +/obj/structure/table, +/obj/item/folder/red{ + pixel_x = 3 + }, +/obj/item/folder/white{ + pixel_x = -4; + pixel_y = 2 + }, +/obj/machinery/computer/security/telescreen{ + desc = "Used for watching Prison Wing holding areas."; + dir = 1; + name = "Prison Monitor"; + network = list("prison"); + pixel_y = -30 + }, +/obj/item/restraints/handcuffs, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"aGs" = ( +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/pen, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 24 + }, +/obj/structure/reagent_dispensers/peppertank{ + pixel_y = -30 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"aGt" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"aGu" = ( +/obj/structure/bodycontainer/morgue, +/turf/open/floor/plasteel/dark, +/area/security/detectives_office) +"aGv" = ( +/obj/machinery/light/small, +/turf/open/floor/plasteel/dark, +/area/security/detectives_office) +"aGw" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"aGx" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/maintenance/fore) +"aGy" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"aGE" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/grille, +/turf/open/floor/plating, +/area/maintenance/fore) +"aGN" = ( +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/port) +"aHu" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/fore) +"aHv" = ( +/obj/structure/chair/office/dark, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/fore) +"aHw" = ( +/obj/structure/table, +/obj/machinery/recharger, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/fore) +"aHx" = ( +/turf/closed/wall/r_wall, +/area/hallway/primary/fore) +"aHy" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow, +/turf/open/floor/plating, +/area/hallway/primary/fore) +"aHz" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aHA" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aHB" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/red, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aHC" = ( +/obj/structure/sign/directions/security{ + dir = 1; + pixel_y = 8 + }, +/turf/closed/wall, +/area/security/courtroom) +"aHD" = ( +/turf/closed/wall, +/area/security/courtroom) +"aHE" = ( +/turf/closed/wall/r_wall, +/area/security/courtroom) +"aHF" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security{ + name = "Court Cell"; + req_access_txt = "63" + }, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"aHH" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Law Office Maintenance"; + req_access_txt = "38" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"aHQ" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"aHV" = ( +/obj/structure/closet, +/obj/item/storage/box/donkpockets, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"aHW" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/starboard/fore) +"aIf" = ( +/obj/machinery/camera{ + c_tag = "Auxillary Base Construction"; + dir = 1 + }, +/obj/machinery/button/door{ + id = "aux_base_shutters"; + name = "Public Shutters Control"; + pixel_y = -24; + req_one_access_txt = "32;47;48" + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"aIv" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/starboard/fore) +"aIC" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/security{ + name = "Security-Storage Backroom"; + req_access_txt = "63" + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/fore) +"aID" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/fore) +"aIE" = ( +/obj/structure/table, +/obj/item/folder/red, +/obj/item/restraints/handcuffs, +/obj/machinery/newscaster/security_unit{ + pixel_y = -30 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/fore) +"aIF" = ( +/obj/machinery/light/small, +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/fore) +"aIG" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/hallway/primary/fore) +"aIH" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/hallway/primary/fore) +"aII" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aIJ" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aIK" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aIL" = ( +/obj/structure/closet/secure_closet/courtroom, +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/obj/item/gavelblock, +/obj/item/gavelhammer, +/turf/open/floor/plasteel, +/area/security/courtroom) +"aIM" = ( +/obj/structure/chair{ + name = "Bailiff" + }, +/turf/open/floor/plasteel, +/area/security/courtroom) +"aIN" = ( +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = 20 + }, +/turf/open/floor/plasteel, +/area/security/courtroom) +"aIO" = ( +/obj/structure/chair{ + name = "Judge" + }, +/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, +/area/security/courtroom) +"aIP" = ( +/obj/structure/chair{ + name = "Judge" + }, +/obj/machinery/status_display/evac{ + pixel_y = 32 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Courtroom" + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/courtroom) +"aIQ" = ( +/obj/structure/chair{ + name = "Judge" + }, +/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, +/area/security/courtroom) +"aIR" = ( +/turf/open/floor/plasteel, +/area/security/courtroom) +"aIS" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"aIT" = ( +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"aIZ" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/maintenance/fore) +"aJi" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/spawner/lootdrop/maintenance, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"aJA" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"aJL" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/maintenance{ + req_one_access_txt = "12;63;48;50" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"aJM" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/maintenance{ + req_one_access_txt = "12;63;48;50" + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"aJS" = ( +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/ai_upload) +"aJT" = ( +/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) +"aJU" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aJV" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aJW" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security{ + name = "Brig"; + req_access_txt = "63; 42" + }, +/turf/open/floor/plasteel, +/area/security/courtroom) +"aJX" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/security/courtroom) +"aJY" = ( +/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/security/courtroom) +"aJZ" = ( +/obj/structure/table/wood, +/obj/item/radio/intercom{ + broadcasting = 1; + dir = 8; + listening = 0; + name = "Station Intercom (Court)" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/courtroom) +"aKa" = ( +/obj/structure/table/wood, +/obj/item/gavelblock, +/obj/item/gavelhammer, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/courtroom) +"aKb" = ( +/obj/structure/table/wood, +/obj/item/book/manual/wiki/security_space_law, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/courtroom) +"aKc" = ( +/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/security/courtroom) +"aKd" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/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/security/courtroom) +"aKe" = ( +/obj/machinery/door/window/southleft{ + name = "Court Cell"; + req_access_txt = "2" + }, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"aKk" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/maintenance{ + req_one_access_txt = "1;4;38;12" + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"aKw" = ( +/obj/effect/decal/cleanable/cobweb, +/obj/structure/closet/crate{ + icon_state = "crateopen" + }, +/obj/item/wirecutters, +/obj/item/weldingtool, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"aKM" = ( +/obj/machinery/deepfryer, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/service/kitchen) +"aKZ" = ( +/obj/machinery/door/window/northleft{ + dir = 8; + name = "MuleBot Supply Access"; + req_access_txt = "50" + }, +/obj/structure/plasticflaps/opaque, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"aLa" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"aLb" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/landmark/blobstart, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"aLc" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"aLd" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/port) +"aLe" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"aLk" = ( +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/item/cigbutt, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"aLo" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/space, +/area/space/nearstation) +"aLp" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/ai_upload) +"aLq" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/porta_turret/ai, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai_upload) +"aLr" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/flasher{ + id = "AI"; + pixel_y = 24 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai_upload) +"aLs" = ( +/obj/structure/sign/plaques/kiddie{ + pixel_y = 32 + }, +/obj/structure/table, +/obj/machinery/camera/motion{ + c_tag = "AI Upload Chamber - Fore"; + network = list("aiupload") + }, +/obj/item/kirbyplants/photosynthetic{ + pixel_y = 10 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai_upload) +"aLt" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai_upload) +"aLu" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/porta_turret/ai, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai_upload) +"aLv" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/ai_upload) +"aLw" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/space, +/area/space/nearstation) +"aLx" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/hallway/primary/fore) +"aLy" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -22 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aLz" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/security/courtroom) +"aLA" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/courtroom) +"aLB" = ( +/obj/effect/landmark/start/lawyer, +/turf/open/floor/plasteel, +/area/security/courtroom) +"aLC" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/courtroom) +"aLJ" = ( +/obj/structure/rack, +/obj/item/stock_parts/matter_bin, +/turf/open/floor/plating{ + icon_state = "platingdmg2" + }, +/area/maintenance/starboard/fore) +"aLZ" = ( +/obj/effect/landmark/blobstart, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/starboard/fore) +"aMp" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/wood, +/area/commons/dorms) +"aMq" = ( +/obj/structure/window/reinforced, +/turf/open/space, +/area/space/nearstation) +"aMr" = ( +/obj/structure/window/reinforced, +/obj/structure/lattice, +/turf/open/space, +/area/space/nearstation) +"aMG" = ( +/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/structure/window/reinforced, +/obj/effect/spawner/lootdrop/aimodule_neutral, +/obj/item/aiModule/core/full/custom, +/obj/machinery/flasher{ + id = "AI"; + pixel_y = 24 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai_upload) +"aMH" = ( +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai_upload) +"aMI" = ( +/obj/structure/table, +/obj/machinery/door/window{ + dir = 8; + name = "High-Risk Modules"; + req_access_txt = "20" + }, +/obj/structure/window/reinforced, +/obj/machinery/flasher{ + id = "AI"; + pixel_y = 24 + }, +/obj/effect/spawner/lootdrop/aimodule_harmful, +/obj/item/aiModule/supplied/oxygen, +/obj/item/aiModule/supplied/protectStation, +/obj/item/aiModule/zeroth/oneHuman, +/obj/item/aiModule/reset/purge, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai_upload) +"aMJ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_x = -29 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aMK" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -24 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/security/courtroom) +"aML" = ( +/obj/structure/chair{ + dir = 4; + name = "Prosecution" + }, +/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/courtroom) +"aMM" = ( +/obj/structure/table/wood, +/obj/item/folder/red, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/courtroom) +"aMN" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/security/courtroom) +"aMO" = ( +/obj/structure/table/wood, +/obj/item/folder/blue, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/courtroom) +"aMP" = ( +/obj/structure/chair{ + dir = 8; + name = "Defense" + }, +/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/security/courtroom) +"aMQ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock{ + name = "Law Office"; + req_access_txt = "38" + }, +/turf/open/floor/wood, +/area/security/courtroom) +"aNm" = ( +/obj/structure/rack, +/obj/item/clothing/suit/hazardvest, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"aNw" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/space, +/area/space/nearstation) +"aNA" = ( +/obj/structure/closet{ + name = "Evidence Closet 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/security/warden) +"aNC" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/lattice, +/turf/open/space, +/area/space/nearstation) +"aNS" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/starboard/fore) +"aNZ" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/ai_upload) +"aOa" = ( +/obj/machinery/porta_turret/ai{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai_upload) +"aOb" = ( +/obj/machinery/computer/upload/borg, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/window/westleft{ + dir = 2; + layer = 3.1; + name = "Cyborg Upload Console Window"; + req_access_txt = "16" + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai_upload) +"aOd" = ( +/obj/machinery/computer/upload/ai, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/window/westleft{ + base_state = "right"; + dir = 2; + icon_state = "right"; + layer = 3.1; + name = "Upload Console Window"; + req_access_txt = "16" + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai_upload) +"aOe" = ( +/obj/machinery/porta_turret/ai{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai_upload) +"aOf" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/courtroom) +"aOg" = ( +/obj/structure/chair{ + dir = 4; + name = "Prosecution" + }, +/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/courtroom) +"aOh" = ( +/obj/structure/table/wood, +/obj/item/paper, +/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/security/courtroom) +"aOi" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/courtroom) +"aOj" = ( +/obj/item/beacon, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/courtroom) +"aOk" = ( +/obj/structure/table/wood, +/obj/effect/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/security/courtroom) +"aOl" = ( +/obj/structure/chair{ + dir = 8; + name = "Defense" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/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/security/courtroom) +"aOm" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 27 + }, +/turf/open/floor/plasteel, +/area/security/courtroom) +"aOU" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/turf/open/space, +/area/space/nearstation) +"aOV" = ( +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/turf/open/space, +/area/space/nearstation) +"aOX" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/turf/open/space, +/area/space/nearstation) +"aOY" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/space, +/area/space/nearstation) +"aPa" = ( +/obj/structure/table, +/obj/item/folder/yellow, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/item/storage/firstaid/regular{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/effect/turf_decal/bot{ + dir = 1 + }, +/turf/open/floor/plasteel{ + dir = 1 + }, +/area/command/gateway) +"aPl" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"aPs" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/structure/cable/yellow, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/ai_upload) +"aPt" = ( +/obj/structure/table, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/item/aiModule/supplied/quarantine, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai_upload) +"aPu" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai_upload) +"aPv" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai_upload) +"aPw" = ( +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/machinery/ai_slipper{ + uses = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai_upload) +"aPx" = ( +/obj/structure/table, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/item/aiModule/supplied/freeform, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai_upload) +"aPy" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/structure/cable/yellow, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/ai_upload) +"aPz" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=0-SecurityDesk"; + location = "16-Fore" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aPA" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 24 + }, +/obj/machinery/camera{ + c_tag = "Fore Primary Hallway Aft"; + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aPB" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/security/courtroom) +"aPC" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Courtroom"; + req_access_txt = "42" + }, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"aPD" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/security/courtroom) +"aPS" = ( +/obj/structure/rack, +/obj/item/clothing/gloves/color/fyellow, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"aPT" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/starboard/fore) +"aQz" = ( +/obj/structure/table, +/obj/item/aiModule/reset, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/status_display/ai{ + pixel_x = -32 + }, +/obj/machinery/flasher{ + id = "AI"; + pixel_y = -24 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai_upload) +"aQA" = ( +/obj/machinery/power/apc/highcap/five_k{ + areastring = "/area/ai_monitored/turret_protected/ai_upload"; + name = "Upload APC"; + pixel_y = -24 + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/machinery/camera/motion{ + c_tag = "AI Upload Chamber - Port"; + dir = 1; + network = list("aiupload") + }, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai_upload) +"aQB" = ( +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai_upload) +"aQC" = ( +/obj/item/radio/intercom{ + broadcasting = 1; + frequency = 1447; + name = "Private AI Channel"; + pixel_y = -25 + }, +/obj/machinery/camera/motion{ + c_tag = "AI Upload Chamber - Starboard"; + dir = 1; + network = list("aiupload") + }, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai_upload) +"aQD" = ( +/obj/structure/table, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/status_display/evac{ + pixel_x = 32 + }, +/obj/machinery/flasher{ + id = "AI"; + pixel_y = -24 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai_upload) +"aQE" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -27 + }, +/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) +"aQF" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/window/reinforced/tinted/fulltile, +/turf/open/floor/plating, +/area/security/courtroom) +"aQG" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/obj/machinery/vending/cigarette, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"aQH" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"aQJ" = ( +/obj/machinery/vending/coffee, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"aRi" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/item/cigbutt, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"aRu" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"aRA" = ( +/turf/closed/wall, +/area/hallway/secondary/entry) +"aRD" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/computer/camera_advanced/base_construction{ + dir = 4 + }, +/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/construction/mining/aux_base) +"aRE" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"aRF" = ( +/obj/structure/table, +/obj/item/stack/sheet/metal/fifty, +/obj/item/stack/sheet/metal/fifty, +/obj/item/stack/sheet/glass/fifty, +/obj/item/pipe_dispenser, +/obj/machinery/light{ + dir = 4 + }, +/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/construction/mining/aux_base) +"aRG" = ( +/turf/open/floor/plating, +/area/maintenance/port/fore) +"aRT" = ( +/obj/machinery/flasher{ + id = "AI"; + pixel_y = -24 + }, +/obj/machinery/porta_turret/ai{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai_upload) +"aRU" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai_upload) +"aRV" = ( +/obj/machinery/porta_turret/ai{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai_upload) +"aRW" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aRX" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/grunge{ + name = "Courtroom" + }, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"aRY" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"aRZ" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=16-Fore"; + location = "15-Court" + }, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"aSa" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"aSo" = ( +/obj/item/book/manual/wiki/engineering_hacking{ + pixel_x = 4; + pixel_y = 5 + }, +/obj/item/book/manual/wiki/engineering_construction{ + pixel_y = 3 + }, +/obj/structure/closet/crate, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"aSD" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/space, +/area/space/nearstation) +"aSG" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/turf/open/space, +/area/space/nearstation) +"aSH" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/hallway/secondary/entry) +"aSI" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"aSJ" = ( +/obj/machinery/computer/shuttle/mining{ + dir = 4 + }, +/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/construction/mining/aux_base) +"aSK" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"aSL" = ( +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + areastring = "/area/construction/mining/aux_base"; + name = "Auxillary Base Construction APC"; + pixel_y = -24 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"aSM" = ( +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"aSN" = ( +/obj/structure/table, +/obj/item/stack/sheet/plasteel{ + amount = 10 + }, +/obj/item/stack/rods/fifty, +/obj/item/storage/box/lights/mixed, +/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/construction/mining/aux_base) +"aSO" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/maintenance/port) +"aSP" = ( +/obj/structure/closet/crate{ + icon_state = "crateopen" + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"aSX" = ( +/turf/closed/wall, +/area/security/checkpoint/supply) +"aSY" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"aSZ" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Tool Storage Maintenance"; + req_access_txt = "12" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/port) +"aTi" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/highsecurity{ + name = "AI Upload"; + req_access_txt = "16" + }, +/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/ai_upload) +"aTj" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aTk" = ( +/obj/effect/spawner/structure/window/reinforced/tinted, +/turf/open/floor/plating, +/area/security/courtroom) +"aTl" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"aTm" = ( +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -26 + }, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"aTn" = ( +/obj/machinery/newscaster{ + pixel_y = -32 + }, +/obj/machinery/light, +/obj/machinery/camera{ + c_tag = "Courtroom - Gallery"; + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"aTo" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"aTp" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"aTC" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"aTQ" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/lattice, +/turf/open/space, +/area/space/nearstation) +"aTV" = ( +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/ai) +"aTW" = ( +/obj/machinery/power/smes{ + charge = 5e+006 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"aTX" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/ai) +"aUb" = ( +/obj/structure/sign/warning/pods, +/turf/closed/wall, +/area/hallway/secondary/entry) +"aUc" = ( +/obj/machinery/door/airlock/external{ + name = "Escape Pod One" + }, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"aUd" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"aUj" = ( +/obj/structure/closet/secure_closet/security/cargo, +/obj/machinery/light_switch{ + pixel_x = -25 + }, +/obj/machinery/airalarm{ + pixel_y = 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/supply) +"aUl" = ( +/obj/item/screwdriver{ + pixel_y = 10 + }, +/obj/item/radio/off, +/obj/machinery/light{ + dir = 1 + }, +/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/checkpoint/supply) +"aUm" = ( +/obj/structure/filingcabinet, +/obj/structure/reagent_dispensers/peppertank{ + 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/checkpoint/supply) +"aUv" = ( +/turf/closed/wall/r_wall, +/area/hallway/primary/central) +"aUw" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/turf/open/floor/plating, +/area/hallway/primary/central) +"aUx" = ( +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/ai_upload_foyer) +"aUy" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/obj/machinery/turretid{ + control_area = "/area/ai_monitored/turret_protected/ai_upload"; + icon_state = "control_stun"; + name = "AI Upload turret control"; + pixel_y = 28 + }, +/obj/item/radio/intercom{ + broadcasting = 1; + frequency = 1447; + name = "Private AI Channel"; + pixel_x = -24; + pixel_y = 24 + }, +/obj/effect/landmark/start/cyborg, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + areastring = "/area/ai_monitored/turret_protected/ai_upload_foyer"; + name = "AI Upload Access APC"; + pixel_y = -27 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/computer/security/telescreen{ + desc = "Used for watching the AI Upload."; + dir = 4; + name = "AI Upload Monitor"; + network = list("aiupload"); + pixel_x = -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/ai_monitored/turret_protected/ai_upload_foyer) +"aUz" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + 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 + }, +/obj/effect/landmark/start/cyborg, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai_upload_foyer) +"aUA" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/effect/landmark/start/cyborg, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/camera/motion{ + c_tag = "AI Upload Foyer"; + network = list("aiupload") + }, +/obj/machinery/airalarm{ + pixel_y = 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/ai_monitored/turret_protected/ai_upload_foyer) +"aUB" = ( +/obj/structure/sign/directions/security{ + dir = 1; + pixel_y = 8 + }, +/obj/structure/sign/directions/engineering{ + dir = 4 + }, +/obj/structure/sign/directions/command{ + pixel_y = -8 + }, +/turf/closed/wall/r_wall, +/area/hallway/primary/fore) +"aUC" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Fore Primary Hallway" + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aUD" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Fore Primary Hallway" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aUE" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Fore Primary Hallway" + }, +/obj/effect/turf_decal/tile/red, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aUF" = ( +/obj/structure/sign/directions/evac, +/obj/structure/sign/directions/medical{ + pixel_y = 8 + }, +/obj/structure/sign/directions/science{ + pixel_y = -8 + }, +/turf/closed/wall, +/area/security/courtroom) +"aUG" = ( +/obj/machinery/power/apc{ + areastring = "/area/security/courtroom"; + name = "Courtroom APC"; + pixel_x = 1; + pixel_y = -24 + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/structure/table, +/obj/item/storage/fancy/donut_box, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"aUH" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"aUI" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"aUJ" = ( +/obj/structure/table, +/obj/item/book/manual/wiki/security_space_law{ + pixel_x = -3; + pixel_y = 5 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/item/book/manual/wiki/security_space_law{ + pixel_x = -3; + pixel_y = 5 + }, +/obj/item/book/manual/wiki/security_space_law{ + pixel_x = -3; + pixel_y = 5 + }, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"aUU" = ( +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"aUV" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"aUW" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/starboard/fore) +"aVf" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/engineering{ + name = "Supermatter Engine"; + req_access_txt = "10" + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"aVk" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/space, +/area/space/nearstation) +"aVl" = ( +/obj/machinery/porta_turret/ai{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"aVm" = ( +/obj/machinery/status_display/evac{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"aVn" = ( +/obj/structure/showcase/cyborg/old{ + pixel_y = 20 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"aVp" = ( +/obj/machinery/camera{ + c_tag = "AI Chamber - Fore"; + network = list("aicore") + }, +/obj/structure/showcase/cyborg/old{ + pixel_y = 20 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"aVq" = ( +/obj/machinery/status_display/evac{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"aVr" = ( +/obj/machinery/porta_turret/ai{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"aVs" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"aVt" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/item/kirbyplants{ + icon_state = "plant-20" + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"aVu" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"aVv" = ( +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = 21 + }, +/obj/structure/chair, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"aVw" = ( +/obj/structure/chair, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"aVx" = ( +/obj/structure/chair, +/obj/machinery/camera{ + c_tag = "Arrivals - Fore Arm - Far" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"aVy" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/status_display/evac{ + pixel_y = 32 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"aVz" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"aVA" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-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/hallway/secondary/entry) +"aVB" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"aVC" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/sign/map/left{ + desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; + icon_state = "map-left-MS"; + pixel_y = 32 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"aVD" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/sign/map/right{ + desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; + icon_state = "map-right-MS"; + pixel_y = 32 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"aVE" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/hallway/secondary/entry) +"aVM" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + name = "Security Post - Cargo"; + req_access_txt = "63" + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/supply) +"aVN" = ( +/obj/structure/cable/yellow{ + 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/supply) +"aVO" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/supply) +"aVP" = ( +/obj/structure/chair/office/dark, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/effect/landmark/start/depsec/supply, +/turf/open/floor/plasteel, +/area/security/checkpoint/supply) +"aVQ" = ( +/obj/item/radio/intercom{ + dir = 4; + name = "Station Intercom (General)"; + pixel_x = 27 + }, +/obj/machinery/computer/security/mining{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/supply) +"aVU" = ( +/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) +"aVV" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/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) +"aVW" = ( +/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) +"aVX" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/ai_upload_foyer) +"aVY" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/highsecurity{ + name = "Secure Network Access"; + req_access_txt = "19" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + 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/ai_monitored/turret_protected/ai_upload_foyer) +"aVZ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/ai_upload_foyer) +"aWa" = ( +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/item/kirbyplants{ + icon_state = "applebush" + }, +/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/hallway/primary/central) +"aWb" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aWc" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/status_display/evac{ + pixel_y = 32 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aWd" = ( +/obj/machinery/camera{ + c_tag = "Central Primary Hallway - Fore" + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aWe" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aWf" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aWg" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aWh" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aWi" = ( +/obj/structure/sign/map/left{ + desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; + icon_state = "map-left-MS"; + pixel_y = 32 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aWj" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/sign/map/right{ + desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; + icon_state = "map-right-MS"; + pixel_y = 32 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aWk" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 27 + }, +/obj/item/kirbyplants{ + icon_state = "plant-16" + }, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = 21 + }, +/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/hallway/primary/central) +"aWl" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/grunge{ + name = "Courtroom" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"aWp" = ( +/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/primary/central) +"aWq" = ( +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/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) +"aWr" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/structure/cable/yellow{ + icon_state = "2-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/central) +"aWs" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"aWt" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"aWu" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"aWH" = ( +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"aWK" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 10 + }, +/turf/open/space, +/area/space/nearstation) +"aWL" = ( +/obj/machinery/status_display/ai{ + pixel_x = -32 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"aWM" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"aWN" = ( +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"aWO" = ( +/obj/machinery/ai_slipper{ + uses = 10 + }, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"aWP" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"aWQ" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"aWR" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/status_display/ai{ + pixel_x = 32 + }, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"aWT" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"aWU" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"aWV" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 2 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"aWW" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"aWX" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"aWY" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"aWZ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"aXa" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"aXb" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"aXc" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"aXd" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 27 + }, +/obj/machinery/camera{ + c_tag = "Arrivals - Fore Arm"; + dir = 8 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white/corner, +/area/hallway/secondary/entry) +"aXm" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/security/checkpoint/supply) +"aXn" = ( +/obj/machinery/recharger{ + pixel_y = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/table/reinforced, +/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) +"aXo" = ( +/obj/item/paper_bin{ + pixel_x = 1; + pixel_y = 9 + }, +/obj/item/pen, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/table/reinforced, +/obj/machinery/camera{ + c_tag = "Security Post - Cargo"; + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/supply) +"aXp" = ( +/obj/item/book/manual/wiki/security_space_law, +/obj/machinery/newscaster{ + pixel_y = -32 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/supply) +"aXq" = ( +/obj/machinery/computer/secure_data{ + 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/checkpoint/supply) +"aXr" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/effect/landmark/blobstart, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/port/fore) +"aXs" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/item/trash/popcorn, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"aXt" = ( +/obj/structure/cable/yellow{ + 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 = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"aXu" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance{ + req_one_access_txt = "12;63;48;50" + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"aXv" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aXw" = ( +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aXx" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aXy" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/firealarm{ + pixel_y = 32 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aXz" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aXA" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aXB" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aXC" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aXD" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aXE" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Central Primary Hallway - Fore - AI Upload" + }, +/obj/structure/sign/warning/securearea{ + desc = "A warning sign which reads 'HIGH-POWER TURRETS AHEAD'."; + name = "\improper HIGH-POWER TURRETS AHEAD"; + pixel_y = 32 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aXF" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = 21 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aXG" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aXH" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/machinery/status_display/ai{ + pixel_y = 32 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aXI" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/sign/warning/securearea{ + pixel_y = 32 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aXJ" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aXK" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/plaque{ + icon_state = "L1" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aXL" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/plaque{ + icon_state = "L3" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aXM" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/plaque{ + icon_state = "L5" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aXN" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/plaque{ + icon_state = "L7" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aXO" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/effect/turf_decal/plaque{ + icon_state = "L9" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aXP" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/plaque{ + icon_state = "L11" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aXQ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/plaque{ + icon_state = "L13" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aXR" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aXS" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aXT" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aXU" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aXV" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aXW" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aXX" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aXY" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aXZ" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aYa" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/effect/landmark/blobstart, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"aYb" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/starboard/fore) +"aYc" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"aYe" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"aYf" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"aYg" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"aYh" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"aYu" = ( +/turf/closed/wall, +/area/security/checkpoint/engineering) +"aYx" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/obj/structure/lattice, +/turf/open/space, +/area/space/nearstation) +"aYy" = ( +/obj/machinery/camera{ + c_tag = "AI Chamber - Port"; + dir = 4; + network = list("aicore") + }, +/obj/structure/showcase/cyborg/old{ + dir = 4; + pixel_x = -9; + pixel_y = 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/ai_monitored/turret_protected/ai) +"aYz" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "AI Core shutters"; + name = "AI core shutters" + }, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/ai) +"aYA" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"aYB" = ( +/obj/structure/showcase/cyborg/old{ + dir = 8; + pixel_x = 9; + pixel_y = 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/ai_monitored/turret_protected/ai) +"aYC" = ( +/obj/structure/sign/warning/docking, +/turf/closed/wall, +/area/hallway/secondary/entry) +"aYE" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"aYF" = ( +/obj/item/kirbyplants{ + icon_state = "plant-05" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"aYG" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/obj/structure/sign/warning/vacuum/external{ + pixel_y = -32 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"aYH" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"aYI" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white/corner, +/area/hallway/secondary/entry) +"aYS" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/security/checkpoint/supply) +"aYT" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/maintenance{ + req_one_access_txt = "12;63;48;50" + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"aYU" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aYV" = ( +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/disposalpipe/junction{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aYW" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aYX" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aYY" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=3-Central-Port"; + location = "2.2-Leaving-Storage" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aYZ" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aZa" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aZb" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aZc" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aZd" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aZe" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/machinery/holopad, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aZf" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aZg" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/plaque{ + icon_state = "L2" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aZh" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/plaque{ + icon_state = "L4" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aZi" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=2.1-Storage"; + location = "1.5-Fore-Central" + }, +/obj/effect/turf_decal/plaque{ + icon_state = "L6" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aZk" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/plaque{ + icon_state = "L10" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aZl" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/plaque{ + icon_state = "L12" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aZm" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/plaque{ + icon_state = "L14" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aZn" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aZo" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aZp" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=15-Court"; + location = "14.9-CrewQuarters-Central" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aZq" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aZr" = ( +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aZs" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aZv" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/airlock/maintenance/abandoned{ + name = "Storage Room"; + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"aZL" = ( +/obj/structure/filingcabinet, +/obj/structure/reagent_dispensers/peppertank{ + 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/engineering) +"aZM" = ( +/obj/structure/table, +/obj/item/radio/intercom{ + dir = 4; + name = "Station Intercom (General)"; + pixel_y = 29 + }, +/obj/machinery/recharger{ + pixel_y = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/engineering) +"aZN" = ( +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = -1; + pixel_y = 5 + }, +/obj/item/pen, +/obj/machinery/newscaster/security_unit{ + 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/checkpoint/engineering) +"aZQ" = ( +/obj/effect/landmark/start/ai/secondary, +/obj/item/radio/intercom{ + freerange = 1; + listening = 0; + name = "Custom Channel"; + pixel_x = -10; + pixel_y = 22 + }, +/obj/item/radio/intercom{ + freerange = 1; + name = "Common Channel"; + pixel_x = -27 + }, +/obj/item/radio/intercom{ + freerange = 1; + frequency = 1447; + name = "Private Channel"; + pixel_x = -10; + pixel_y = -25 + }, +/obj/machinery/door/window{ + base_state = "rightsecure"; + dir = 4; + icon_state = "rightsecure"; + layer = 4.1; + name = "Secondary AI Core Access"; + obj_integrity = 300; + pixel_x = 4; + req_access_txt = "16" + }, +/turf/open/floor/circuit/green, +/area/ai_monitored/turret_protected/ai) +"aZR" = ( +/obj/machinery/holopad, +/obj/machinery/flasher{ + id = "AI"; + pixel_x = -25; + pixel_y = -25 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/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) +"aZS" = ( +/obj/machinery/ai_slipper{ + uses = 10 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"aZV" = ( +/obj/machinery/door/window{ + base_state = "rightsecure"; + dir = 4; + icon_state = "rightsecure"; + name = "Primary AI Core Access"; + obj_integrity = 300; + req_access_txt = "16" + }, +/obj/machinery/camera{ + c_tag = "AI Chamber - Core"; + network = list("aicore") + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/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) +"aZW" = ( +/obj/machinery/ai_slipper{ + uses = 10 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"aZX" = ( +/obj/machinery/holopad, +/obj/machinery/flasher{ + id = "AI"; + pixel_x = 25; + pixel_y = 25 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/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) +"aZY" = ( +/obj/effect/landmark/start/ai/secondary, +/obj/item/radio/intercom{ + freerange = 1; + listening = 0; + name = "Custom Channel"; + pixel_x = 10; + pixel_y = 22 + }, +/obj/item/radio/intercom{ + freerange = 1; + name = "Common Channel"; + pixel_x = 27 + }, +/obj/item/radio/intercom{ + freerange = 1; + frequency = 1447; + name = "Private Channel"; + pixel_x = 10; + pixel_y = -25 + }, +/obj/machinery/door/window{ + base_state = "leftsecure"; + dir = 8; + icon_state = "leftsecure"; + layer = 4.1; + name = "Tertiary AI Core Access"; + obj_integrity = 300; + pixel_x = -3; + req_access_txt = "16" + }, +/turf/open/floor/circuit/green, +/area/ai_monitored/turret_protected/ai) +"aZZ" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"baa" = ( +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bab" = ( +/obj/machinery/vending/cigarette, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bac" = ( +/obj/machinery/vending/coffee, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bad" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bae" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white/corner, +/area/hallway/secondary/entry) +"baf" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/maintenance{ + req_one_access_txt = "12;48;50;1" + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"bag" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/port/fore) +"bai" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"baj" = ( +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"bak" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Cargo Bay Maintenance"; + req_one_access_txt = "48;50" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"baz" = ( +/obj/machinery/computer/cargo/request, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"baA" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/obj/machinery/status_display/supply{ + pixel_y = 32 + }, +/obj/structure/table, +/obj/item/folder/yellow, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"baB" = ( +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"baC" = ( +/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/hallway/primary/port) +"baD" = ( +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/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/hallway/primary/port) +"baE" = ( +/turf/closed/wall, +/area/hallway/primary/port) +"baF" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/extinguisher_cabinet{ + pixel_x = -27 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Central Primary Hallway - Fore - Port Corner"; + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"baG" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"baH" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/sign/departments/custodian{ + pixel_x = 32; + pixel_y = -32 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"baI" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"baJ" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/mob/living/simple_animal/bot/cleanbot{ + auto_patrol = 1; + icon_state = "cleanbot1"; + name = "Mopficcer Sweepsky" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"baK" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"baL" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/obj/machinery/light, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + pixel_y = -30 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"baM" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"baN" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"baO" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"baP" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"baQ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"baR" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"baS" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/holopad, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"baT" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"baU" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"baV" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Central Primary Hallway - Fore - Courtroom"; + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"baW" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/obj/machinery/light, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"baX" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"baY" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/structure/extinguisher_cabinet{ + pixel_y = -30 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"baZ" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_x = -27; + pixel_y = -29 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bba" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bbb" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/camera{ + c_tag = "Central Primary Hallway - Fore - Starboard Corner"; + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bbh" = ( +/obj/effect/decal/cleanable/cobweb, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"bbi" = ( +/obj/effect/landmark/xeno_spawn, +/obj/item/cigbutt, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"bbj" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/starboard/fore) +"bbo" = ( +/turf/closed/wall, +/area/maintenance/solars/port/fore) +"bbB" = ( +/obj/item/screwdriver{ + pixel_y = 10 + }, +/obj/item/radio/off, +/obj/machinery/computer/security/telescreen/minisat{ + dir = 4; + pixel_x = -29 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/engineering) +"bbC" = ( +/obj/structure/chair/office/dark{ + dir = 4 + }, +/obj/effect/landmark/start/depsec/engineering, +/turf/open/floor/plasteel, +/area/security/checkpoint/engineering) +"bbD" = ( +/obj/structure/table, +/obj/item/book/manual/wiki/security_space_law, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/requests_console{ + department = "Security"; + departmentType = 5; + pixel_x = 30 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/engineering) +"bbF" = ( +/obj/structure/showcase/cyborg/old{ + dir = 4; + pixel_x = -9; + pixel_y = 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/ai_monitored/turret_protected/ai) +"bbH" = ( +/obj/machinery/camera{ + c_tag = "AI Chamber - Starboard"; + dir = 8; + network = list("aicore") + }, +/obj/structure/showcase/cyborg/old{ + dir = 8; + pixel_x = 9; + pixel_y = 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/ai_monitored/turret_protected/ai) +"bbI" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bbJ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white/corner, +/area/hallway/secondary/entry) +"bbK" = ( +/turf/closed/wall, +/area/security/checkpoint/customs) +"bbL" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bbM" = ( +/obj/item/stack/sheet/cardboard, +/obj/item/storage/box/lights/mixed, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"bbW" = ( +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bbX" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bbY" = ( +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bbZ" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bca" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/machinery/light{ + dir = 4 + }, +/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/hallway/primary/port) +"bcb" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_x = -29 + }, +/obj/machinery/status_display/evac{ + pixel_x = -32 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bcc" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bcg" = ( +/turf/closed/wall, +/area/maintenance/central) +"bch" = ( +/obj/machinery/door/airlock{ + name = "Central Emergency Storage" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/central) +"bci" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/hallway/primary/central) +"bcl" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bcm" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bcs" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating, +/area/maintenance/starboard) +"bct" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"bcM" = ( +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/engineering) +"bcN" = ( +/obj/machinery/computer/secure_data{ + dir = 8 + }, +/obj/machinery/computer/security/telescreen{ + desc = "Used for monitoring the engine."; + dir = 8; + name = "Engine Monitor"; + network = list("engine"); + pixel_x = 32 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/engineering) +"bcO" = ( +/obj/structure/easel, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/starboard/fore) +"bcP" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/status_display/ai{ + pixel_x = -32 + }, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"bcQ" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/space, +/area/space/nearstation) +"bcV" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 24 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white/corner, +/area/hallway/secondary/entry) +"bcW" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/security/checkpoint/customs) +"bcX" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/obj/structure/table/reinforced, +/obj/item/book/manual/wiki/security_space_law{ + pixel_x = -3; + pixel_y = 5 + }, +/obj/machinery/light_switch{ + pixel_y = 26 + }, +/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) +"bcZ" = ( +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = 20 + }, +/obj/machinery/computer/security, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/customs) +"bda" = ( +/obj/machinery/computer/card, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/requests_console{ + department = "Security"; + departmentType = 5; + pixel_y = 30 + }, +/obj/machinery/camera{ + c_tag = "Customs Checkpoint" + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/customs) +"bdb" = ( +/obj/machinery/computer/secure_data, +/obj/machinery/newscaster/security_unit{ + 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/customs) +"bdc" = ( +/obj/machinery/light_switch{ + pixel_x = 27 + }, +/obj/structure/reagent_dispensers/peppertank{ + pixel_y = 30 + }, +/obj/structure/closet/secure_closet/security, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 24 + }, +/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) +"bdd" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/port/fore) +"bde" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/space_heater, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"bdr" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bds" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bdt" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bdu" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bdv" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bdw" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/hallway/primary/port) +"bdx" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bdy" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/sorting/mail{ + dir = 1; + sortType = 22 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bdz" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 24 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bdE" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plating, +/area/maintenance/central) +"bdF" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/central) +"bdG" = ( +/turf/closed/wall/r_wall, +/area/maintenance/central) +"bdO" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bdP" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bdQ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bdW" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"bem" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/machinery/camera/autoname{ + dir = 4 + }, +/obj/machinery/button/door{ + desc = "A remote control-switch for the engineering security doors."; + id = "Engineering"; + name = "Engineering Lockdown"; + pixel_x = -24; + pixel_y = -6; + req_access_txt = "1" + }, +/obj/machinery/button/door{ + id = "atmos"; + name = "Atmospherics Lockdown"; + pixel_x = -24; + pixel_y = 5; + req_access_txt = "1" + }, +/obj/structure/cable/yellow{ + icon_state = "2-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/engineering) +"ben" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/engineering) +"beo" = ( +/obj/structure/closet/secure_closet/security/engine, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 24 + }, +/obj/structure/cable/yellow{ + icon_state = "2-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/checkpoint/engineering) +"beq" = ( +/obj/structure/sign/warning/vacuum/external, +/turf/closed/wall/r_wall, +/area/space/nearstation) +"beu" = ( +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"bex" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"beK" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/security/checkpoint/customs) +"beL" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/table/reinforced, +/obj/item/folder/red, +/obj/item/folder/red, +/obj/structure/cable/yellow{ + 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/customs) +"beM" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/customs) +"beN" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/customs) +"beO" = ( +/obj/structure/chair/office/dark, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/customs) +"beP" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/customs) +"beQ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/customs) +"beR" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Security Maintenance"; + req_access_txt = "1" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"beS" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"beT" = ( +/obj/effect/landmark/blobstart, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"beU" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Mailroom Maintenance"; + req_access_txt = "50" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"bfd" = ( +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bff" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bfg" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bfh" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bfi" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bfn" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Custodial Maintenance"; + req_access_txt = "26" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/central) +"bfo" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/central) +"bfp" = ( +/obj/item/flashlight{ + pixel_x = 1; + pixel_y = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/central) +"bfq" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/central) +"bfE" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -22 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bfF" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bfK" = ( +/obj/structure/closet/emcloset, +/obj/structure/sign/map/left{ + icon_state = "map-left-MS"; + 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/hallway/primary/starboard) +"bfL" = ( +/obj/structure/sign/map/right{ + desc = "A framed picture of the station. Clockwise from security in red at the top, you see engineering in yellow, science in purple, escape in checkered red-and-white, medbay in green, arrivals in checkered red-and-blue, and then cargo in brown."; + icon_state = "map-right-MS"; + pixel_y = 32 + }, +/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/starboard) +"bfM" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"bfN" = ( +/turf/closed/wall, +/area/hallway/primary/starboard) +"bfU" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"bfV" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow, +/turf/open/floor/plating, +/area/security/checkpoint/engineering) +"bfW" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + name = "Engineering Security Post"; + req_access_txt = "63" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/engineering) +"bfX" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow, +/turf/open/floor/plating, +/area/security/checkpoint/engineering) +"bgh" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -26 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"bgi" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"bgj" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/machinery/ai_slipper{ + uses = 10 + }, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"bgk" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"bgl" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"bgm" = ( +/obj/structure/table/reinforced, +/obj/item/phone{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/cigbutt/cigarbutt{ + pixel_x = 5; + pixel_y = -1 + }, +/obj/item/radio/intercom{ + broadcasting = 1; + frequency = 1447; + listening = 0; + name = "Station Intercom (AI Private)"; + pixel_x = 28 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"bgn" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/turf/open/space, +/area/space/nearstation) +"bgo" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/turf/open/space, +/area/space/nearstation) +"bgv" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white/corner, +/area/hallway/secondary/entry) +"bgw" = ( +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -22 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/closet, +/obj/item/crowbar, +/obj/item/assembly/flash/handheld, +/obj/item/radio, +/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) +"bgx" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/customs) +"bgy" = ( +/obj/item/paper_bin{ + pixel_x = 1; + pixel_y = 9 + }, +/obj/item/pen, +/obj/structure/table/reinforced, +/obj/structure/cable/yellow{ + 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/customs) +"bgz" = ( +/obj/item/paper, +/obj/structure/table/reinforced, +/obj/machinery/door/window/brigdoor{ + name = "Arrivals Security Checkpoint"; + pixel_y = -8; + req_access_txt = "1" + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/customs) +"bgA" = ( +/obj/machinery/recharger{ + pixel_y = 4 + }, +/obj/structure/table/reinforced, +/obj/structure/cable/yellow{ + 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/customs) +"bgB" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/airalarm{ + pixel_y = 28 + }, +/obj/structure/closet/crate/secure/weapon{ + desc = "A secure clothing crate."; + name = "formal uniform crate"; + req_access_txt = "3" + }, +/obj/item/clothing/under/rank/security/officer/formal, +/obj/item/clothing/under/rank/security/officer/formal, +/obj/item/clothing/under/rank/security/officer/formal, +/obj/item/clothing/under/rank/security/officer/formal, +/obj/item/clothing/under/rank/security/officer/formal, +/obj/item/clothing/under/rank/security/officer/formal, +/obj/item/clothing/suit/armor/navyblue, +/obj/item/clothing/suit/armor/navyblue, +/obj/item/clothing/suit/armor/navyblue, +/obj/item/clothing/suit/armor/navyblue, +/obj/item/clothing/suit/armor/navyblue, +/obj/item/clothing/suit/armor/navyblue, +/obj/item/clothing/under/rank/security/warden/formal, +/obj/item/clothing/suit/armor/vest/warden/navyblue, +/obj/item/clothing/under/rank/security/head_of_security/formal, +/obj/item/clothing/suit/armor/hos/navyblue, +/obj/item/clothing/head/beret/sec/navyofficer, +/obj/item/clothing/head/beret/sec/navyofficer, +/obj/item/clothing/head/beret/sec/navyofficer, +/obj/item/clothing/head/beret/sec/navyofficer, +/obj/item/clothing/head/beret/sec/navyofficer, +/obj/item/clothing/head/beret/sec/navyofficer, +/obj/item/clothing/head/beret/sec/navywarden, +/obj/item/clothing/head/beret/sec/navyhos, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/security/warden) +"bgC" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"bgD" = ( +/obj/machinery/space_heater, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"bgU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bgV" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bgW" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bgX" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/structure/disposalpipe/junction{ + dir = 2 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bgY" = ( +/obj/effect/turf_decal/tile/brown, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bgZ" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bhe" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/central) +"bhA" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bhB" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=14.2-Central-CrewQuarters"; + location = "14-Starboard-Central" + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bhC" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bhD" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Starboard Primary Hallway" + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bhE" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bhF" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bhG" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bhH" = ( +/obj/machinery/firealarm{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bhI" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Starboard Primary Hallway - Tech Storage" + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bhJ" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bhK" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bhL" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bhM" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bhN" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bhO" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bhP" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/structure/sign/warning/securearea{ + pixel_y = 32 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bhR" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bhS" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=14-Starboard-Central"; + location = "13.3-Engineering-Central" + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bii" = ( +/obj/docking_port/stationary/random{ + dir = 4; + id = "pod_lavaland3"; + name = "lavaland" + }, +/turf/open/space, +/area/space/nearstation) +"bim" = ( +/obj/structure/table/reinforced, +/obj/item/folder/blue{ + pixel_y = 2 + }, +/obj/item/pen, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"bin" = ( +/obj/structure/chair/office/dark{ + dir = 8 + }, +/obj/machinery/status_display/ai{ + pixel_y = -32 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"bio" = ( +/obj/machinery/camera{ + c_tag = "AI Chamber - Aft"; + dir = 1; + network = list("aicore") + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"biq" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"bir" = ( +/obj/structure/chair/office/dark{ + dir = 4 + }, +/obj/machinery/status_display/evac{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"bis" = ( +/obj/structure/table/reinforced, +/obj/item/folder/blue{ + pixel_y = 2 + }, +/obj/item/pen, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"biu" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"biv" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white/corner, +/area/hallway/secondary/entry) +"biw" = ( +/obj/structure/sign/warning/pods, +/turf/closed/wall, +/area/security/checkpoint/customs) +"bix" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/closed/wall, +/area/security/checkpoint/customs) +"biy" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/security{ + name = "Customs Desk"; + req_access_txt = "1" + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/security/checkpoint/customs) +"biz" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow, +/turf/open/floor/plating, +/area/security/checkpoint/customs) +"biA" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"biB" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/obj/machinery/door/airlock/maintenance{ + req_one_access_txt = "12;48;50;1" + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"biC" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall, +/area/maintenance/port/fore) +"biN" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/structure/closet/crate{ + icon_state = "crateopen" + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"biO" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"biP" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"biQ" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"biR" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/landmark/start/assistant, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"biW" = ( +/obj/item/storage/box/lights/mixed, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/central) +"biX" = ( +/obj/item/clothing/mask/gas, +/turf/open/floor/plating, +/area/maintenance/central) +"bjl" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/extinguisher_cabinet{ + pixel_x = -27 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bjm" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bjn" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bjo" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Starboard Primary Hallway" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bjp" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bjq" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bjr" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bjs" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bjt" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bju" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bjv" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/junction{ + dir = 2 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bjw" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bjx" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bjy" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bjz" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bjA" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bjB" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bjC" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bjD" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bjE" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 28 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bjP" = ( +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/aisat/foyer) +"bjQ" = ( +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/aisat_interior) +"bjR" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/aisat_interior) +"bjS" = ( +/obj/machinery/power/terminal{ + dir = 1 + }, +/obj/machinery/flasher{ + id = "AI"; + pixel_x = -24; + pixel_y = 28 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"bjV" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bjW" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bjX" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/cafeteria, +/area/hallway/secondary/entry) +"bjY" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bjZ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/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/hallway/primary/port) +"bka" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bkb" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bkc" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/item/radio/intercom{ + pixel_y = 21 + }, +/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 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bkd" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bke" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/structure/sign/map/left{ + desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; + icon_state = "map-left-MS"; + pixel_y = 32 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bkf" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 30 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/structure/sign/map/right{ + desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; + icon_state = "map-right-MS"; + pixel_y = 32 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bks" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/machinery/autolathe/secure{ + name = "public autolathe" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bkt" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/holopad, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bku" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/effect/turf_decal/tile/brown, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bkv" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/structure/rack, +/obj/item/storage/box, +/obj/item/storage/box, +/obj/item/storage/box, +/obj/item/stack/packageWrap{ + pixel_x = 2; + pixel_y = -3 + }, +/obj/item/stack/packageWrap{ + pixel_x = 2; + pixel_y = -3 + }, +/obj/item/stack/packageWrap{ + pixel_x = 2; + pixel_y = -3 + }, +/obj/item/hand_labeler, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bkw" = ( +/obj/structure/table, +/obj/item/toner, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_x = 30 + }, +/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/hallway/primary/port) +"bkx" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bky" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bkA" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/item/tank/internals/air, +/turf/open/floor/plating, +/area/maintenance/central) +"bkB" = ( +/obj/item/extinguisher, +/turf/open/floor/plating, +/area/maintenance/central) +"bkQ" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bkR" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=13.1-Engineering-Enter"; + location = "12-Central-Starboard" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bkS" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bkT" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Starboard Primary Hallway" + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bkU" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bkV" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bkW" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bkX" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -29 + }, +/obj/machinery/light, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bkY" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + pixel_y = -30 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bkZ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bla" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"blb" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/machinery/camera{ + c_tag = "Starboard Primary Hallway - Auxiliary Tool Storage"; + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"blc" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bld" = ( +/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/starboard) +"ble" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"blf" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Starboard Primary Hallway - Engineering"; + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"blg" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=13.2-Tcommstore"; + location = "13.1-Engineering-Enter" + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"blh" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bli" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"blt" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/maintenance/disposal) +"blu" = ( +/obj/structure/lattice, +/obj/structure/transit_tube/curved/flipped{ + dir = 4 + }, +/turf/open/space, +/area/space/nearstation) +"blv" = ( +/obj/structure/lattice, +/obj/structure/transit_tube/crossing/horizontal, +/turf/open/space, +/area/space/nearstation) +"blw" = ( +/obj/structure/transit_tube/curved{ + dir = 8 + }, +/turf/open/space, +/area/space/nearstation) +"blx" = ( +/turf/closed/wall, +/area/space/nearstation) +"bly" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/turf/open/space, +/area/space/nearstation) +"blB" = ( +/obj/machinery/computer/teleporter, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -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 + }, +/obj/machinery/light{ + dir = 1; + light_color = "#cee5d2" + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat/foyer) +"blC" = ( +/obj/machinery/teleport/station, +/obj/machinery/status_display/evac{ + 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/ai_monitored/turret_protected/aisat/foyer) +"blD" = ( +/obj/machinery/teleport/hub, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/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/foyer) +"blE" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"blF" = ( +/obj/structure/showcase/cyborg/old{ + pixel_y = 20 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/landmark/start/cyborg, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"blG" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/landmark/start/cyborg, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"blH" = ( +/obj/structure/showcase/cyborg/old{ + pixel_y = 20 + }, +/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) +"blI" = ( +/obj/machinery/door/airlock/highsecurity{ + name = "AI Chamber"; + req_access_txt = "16" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "AI Chamber entrance shutters"; + name = "AI Chamber entrance shutters" + }, +/obj/machinery/flasher{ + id = "AI"; + pixel_x = -26; + pixel_y = 3 + }, +/obj/item/radio/intercom{ + broadcasting = 1; + frequency = 1447; + listening = 0; + name = "Station Intercom (AI Private)"; + pixel_x = 28 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"blT" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"blU" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white/corner, +/area/hallway/secondary/entry) +"blW" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"blX" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"blY" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=5-Customs"; + location = "4-Customs" + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"blZ" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bma" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bmb" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bmc" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bmd" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bmk" = ( +/obj/machinery/door/firedoor, +/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/hallway/primary/port) +"bml" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bmm" = ( +/obj/structure/sign/directions/security{ + dir = 1; + pixel_y = 8 + }, +/obj/structure/sign/directions/engineering{ + dir = 4 + }, +/obj/structure/sign/directions/command{ + pixel_y = -8 + }, +/turf/closed/wall/r_wall, +/area/hallway/primary/port) +"bmn" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bmr" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating, +/area/maintenance/central) +"bms" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/canister/air, +/turf/open/floor/plating, +/area/maintenance/central) +"bmt" = ( +/obj/item/radio/off, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/central) +"bmu" = ( +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=4"; + dir = 4; + freq = 1400; + location = "Bridge" + }, +/obj/structure/plasticflaps/opaque, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/maintenance/central) +"bmJ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/status_display/evac{ + pixel_x = -32 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bmK" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bmQ" = ( +/obj/machinery/door/airlock/maintenance{ + req_one_access_txt = "12;25;46" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/starboard) +"bmR" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/maintenance/starboard) +"bmS" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/airlock{ + name = "Starboard Emergency Storage" + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"bmT" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/maintenance{ + req_one_access_txt = "12;25;46" + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"bmU" = ( +/obj/structure/sign/directions/engineering{ + dir = 4; + pixel_y = 8 + }, +/turf/closed/wall, +/area/maintenance/starboard) +"bmV" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bmW" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bmX" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 8; + sortType = 6 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bno" = ( +/obj/structure/transit_tube/diagonal, +/turf/open/space, +/area/space/nearstation) +"bnw" = ( +/obj/structure/showcase/cyborg/old{ + dir = 4; + pixel_x = -9; + pixel_y = 2 + }, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -22 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat/foyer) +"bnx" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat/foyer) +"bny" = ( +/obj/machinery/turretid{ + control_area = "/area/ai_monitored/turret_protected/aisat_interior"; + name = "Antechamber Turret Control"; + pixel_x = 30; + req_access_txt = "65" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/obj/machinery/ai_slipper{ + uses = 10 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat/foyer) +"bnz" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/aisat_interior) +"bnA" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "MiniSat - Antechamber"; + dir = 4; + network = list("minisat") + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"bnB" = ( +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/landmark/start/cyborg, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"bnD" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/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) +"bnK" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -24 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/camera{ + c_tag = "Arrivals - Station Entrance"; + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bnL" = ( +/obj/machinery/hydroponics/constructable, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/sign/poster/official/hydro_ad{ + pixel_y = -32 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"bnR" = ( +/obj/structure/chair/comfy, +/turf/open/floor/plasteel/grimy, +/area/hallway/primary/port) +"bnS" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bnT" = ( +/obj/structure/disposalpipe/junction/flip{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bnU" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/firealarm{ + pixel_y = 32 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bnV" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bnW" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bnX" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bnY" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bnZ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Port Primary Hallway - Middle" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"boa" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"boc" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bod" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = 21 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"boe" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bof" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bog" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"boh" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"boi" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Port Primary Hallway" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"boj" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bok" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=4-Customs"; + location = "3-Central-Port" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"boJ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/item/radio/intercom{ + dir = 8; + name = "Station Intercom (General)"; + pixel_x = -28 + }, +/obj/machinery/camera{ + c_tag = "Central Primary Hallway - Starboard - Art Storage"; + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"boK" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"boV" = ( +/obj/item/storage/box/lights/mixed, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/starboard) +"boW" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"boX" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"boY" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plating, +/area/maintenance/starboard) +"boZ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/space_heater, +/turf/open/floor/plating, +/area/maintenance/starboard) +"bpa" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"bpb" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/starboard) +"bpc" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"bpd" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -27 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bpe" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bpf" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bpt" = ( +/obj/machinery/vending/wardrobe/sec_wardrobe, +/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) +"bpu" = ( +/turf/closed/wall/r_wall, +/area/space/nearstation) +"bpw" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/transit_tube/horizontal, +/turf/open/space, +/area/space/nearstation) +"bpx" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/transit_tube/crossing/horizontal, +/turf/open/space, +/area/space/nearstation) +"bpy" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/transit_tube/horizontal, +/turf/open/space, +/area/space/nearstation) +"bpz" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/transit_tube/junction/flipped{ + dir = 8 + }, +/turf/open/space, +/area/space/nearstation) +"bpA" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/space, +/area/space/nearstation) +"bpB" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/space, +/area/space/nearstation) +"bpI" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/hatch{ + name = "MiniSat Foyer"; + req_one_access_txt = "32;19" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat/foyer) +"bpJ" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat/foyer) +"bpL" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat/foyer) +"bpM" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/hatch{ + name = "MiniSat Antechamber"; + req_one_access_txt = "32;19" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"bpN" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"bpO" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"bpP" = ( +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/ai_slipper{ + uses = 10 + }, +/mob/living/simple_animal/bot/secbot/pingsky, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"bpQ" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"bpR" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"bpS" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "MiniSat Maintenance"; + req_access_txt = "32" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"bqb" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bqc" = ( +/obj/machinery/holopad, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bqd" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bqj" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bqk" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bql" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bqm" = ( +/obj/machinery/turretid{ + icon_state = "control_stun"; + name = "AI Chamber turret control"; + pixel_x = 3; + pixel_y = -23 + }, +/obj/machinery/door/window{ + base_state = "leftsecure"; + dir = 8; + icon_state = "leftsecure"; + name = "Primary AI Core Access"; + obj_integrity = 300; + req_access_txt = "16" + }, +/obj/machinery/newscaster/security_unit{ + pixel_x = 4; + pixel_y = 33 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/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) +"bqn" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bqo" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bqp" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bqq" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bqr" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bqs" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bqt" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/sorting/mail{ + dir = 8; + sortType = 3 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bqu" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bqv" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bqw" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bqx" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Port Primary Hallway" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bqy" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bqz" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bqA" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bra" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"brb" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"brc" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"brl" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Bar Maintenance"; + req_access_txt = "25" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"brm" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"brn" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"bro" = ( +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/structure/disposalpipe/sorting/mail{ + dir = 2; + sortType = 19 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"brp" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance{ + req_one_access_txt = "12;25;46" + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"brq" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"brr" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/starboard) +"brs" = ( +/obj/item/assembly/prox_sensor, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/starboard) +"brt" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/item/storage/box/lights/mixed, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/starboard) +"bru" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"brv" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/maintenance{ + req_one_access_txt = "12;25;46" + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"brw" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"brx" = ( +/obj/machinery/requests_console{ + department = "AI"; + departmentType = 5; + pixel_x = 30; + pixel_y = 30 + }, +/obj/machinery/ai_slipper{ + uses = 10 + }, +/obj/machinery/flasher{ + id = "AI"; + pixel_x = 23; + pixel_y = -23 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/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) +"bry" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"brz" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/sign/warning/securearea{ + pixel_x = 32 + }, +/turf/open/floor/plasteel/dark/corner, +/area/hallway/primary/starboard) +"brM" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/transit_tube/curved{ + dir = 4 + }, +/turf/open/space, +/area/space/nearstation) +"brO" = ( +/obj/structure/transit_tube/diagonal/topleft, +/turf/open/space, +/area/space/nearstation) +"brW" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -28 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat/foyer) +"brX" = ( +/obj/machinery/status_display/ai{ + pixel_y = 32 + }, +/obj/machinery/porta_turret/ai, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/obj/machinery/computer/security/telescreen{ + desc = "Used for watching the RD's goons from the safety of his office."; + dir = 4; + name = "Research Monitor"; + network = list("rd"); + 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/ai_monitored/turret_protected/aisat_interior) +"brY" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/power/apc/highcap/five_k{ + areastring = "/area/ai_monitored/turret_protected/aisat/foyer"; + name = "MiniSat Foyer APC"; + pixel_y = -29 + }, +/obj/structure/cable/yellow, +/obj/machinery/camera/motion{ + c_tag = "MiniSat Foyer"; + dir = 8; + network = list("minisat") + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat/foyer) +"brZ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/aisat_interior) +"bsa" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -22 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/mob/living/simple_animal/bot/floorbot, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"bsb" = ( +/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/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"bsc" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"bsd" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"bse" = ( +/obj/machinery/status_display/evac{ + pixel_y = 32 + }, +/obj/machinery/porta_turret/ai, +/obj/machinery/computer/security/telescreen/minisat{ + 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/ai_monitored/turret_protected/aisat_interior) +"bsf" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat/foyer) +"bsj" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/space, +/area/space/nearstation) +"bsk" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"bsl" = ( +/obj/machinery/vending/cola/random, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bsm" = ( +/obj/item/beacon, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bsn" = ( +/obj/structure/closet/firecloset, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bso" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bsu" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bsv" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bsw" = ( +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -28 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bsx" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bsy" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bsz" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bsA" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + pixel_y = -30 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bsB" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bsC" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bsD" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bsE" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/status_display/evac{ + pixel_y = -32 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bsG" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/light, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bsH" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Port Primary Hallway - Starboard"; + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bsJ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Port Primary Hallway" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bsK" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bsL" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=7-Command-Starboard"; + location = "6-Port-Central" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bth" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/effect/landmark/blobstart, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/central) +"bti" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/maintenance{ + req_one_access_txt = "20;12" + }, +/turf/open/floor/plating, +/area/maintenance/central) +"btj" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"btk" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bts" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/starboard) +"btt" = ( +/obj/item/stock_parts/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg2" + }, +/area/maintenance/starboard) +"btu" = ( +/obj/item/storage/toolbox/emergency, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/starboard) +"btv" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/item/cigbutt, +/turf/open/floor/plating, +/area/maintenance/starboard) +"btw" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/starboard) +"btx" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/hallway/primary/starboard) +"bty" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/corner, +/area/hallway/primary/starboard) +"btz" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Engineering Foyer Maintenance"; + req_one_access_txt = "32;19" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/starboard) +"btI" = ( +/obj/structure/lattice, +/obj/structure/transit_tube/curved{ + dir = 4 + }, +/turf/open/space, +/area/space/nearstation) +"btJ" = ( +/obj/structure/lattice, +/obj/structure/transit_tube/curved/flipped{ + dir = 8 + }, +/turf/open/space, +/area/space/nearstation) +"btK" = ( +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/obj/structure/lattice, +/turf/open/space, +/area/space/nearstation) +"btL" = ( +/turf/closed/wall/r_wall, +/area/tcommsat/computer) +"btM" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/tcommsat/computer) +"btN" = ( +/obj/machinery/door/airlock/hatch{ + name = "Telecomms Control Room"; + req_one_access_txt = "19; 61" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + 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/tcommsat/computer) +"btO" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"btP" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"btQ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"btR" = ( +/obj/item/kirbyplants{ + icon_state = "plant-18" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"btS" = ( +/obj/structure/sign/warning/vacuum/external{ + pixel_y = 32 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"btT" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"btW" = ( +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/holopad/secure, +/turf/open/floor/plasteel, +/area/engineering/gravity_generator) +"btY" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"btZ" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bua" = ( +/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/port) +"bub" = ( +/obj/structure/closet/emcloset, +/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/hallway/primary/port) +"buc" = ( +/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/port) +"bud" = ( +/obj/machinery/door/airlock/maintenance{ + req_one_access_txt = "12;27;37" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/port) +"buf" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central) +"buj" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"buk" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/sorting/mail{ + dir = 1; + sortType = 15 + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bul" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"buK" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/camera{ + c_tag = "Captain's Office - Emergency Escape"; + dir = 4 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg2" + }, +/area/maintenance/central) +"buL" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"buM" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/extinguisher_cabinet{ + pixel_x = 27 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"buU" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/canister/air, +/turf/open/floor/plating, +/area/maintenance/starboard) +"buV" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plating{ + icon_state = "platingdmg2" + }, +/area/maintenance/starboard) +"buX" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"buY" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance{ + req_one_access_txt = "12;25;46" + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"buZ" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/hallway/primary/starboard) +"bva" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bvb" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel/dark/corner, +/area/hallway/primary/starboard) +"bvc" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"bvd" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"bve" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg2" + }, +/area/maintenance/starboard) +"bvf" = ( +/obj/item/radio/intercom{ + freerange = 1; + name = "Common Channel"; + pixel_x = -27; + pixel_y = -7 + }, +/obj/item/radio/intercom{ + freerange = 1; + listening = 0; + name = "Custom Channel"; + pixel_y = -27 + }, +/obj/item/radio/intercom{ + freerange = 1; + frequency = 1447; + name = "Private Channel"; + pixel_x = 27; + pixel_y = -7 + }, +/obj/effect/landmark/start/ai, +/obj/machinery/button/door{ + id = "AI Core shutters"; + name = "AI Core shutters control"; + pixel_x = 24; + pixel_y = -22; + req_access_txt = "16" + }, +/obj/machinery/button/door{ + id = "AI Chamber entrance shutters"; + name = "AI Chamber entrance shutters control"; + pixel_x = -23; + pixel_y = -23; + req_access_txt = "16" + }, +/turf/open/floor/circuit/green, +/area/ai_monitored/turret_protected/ai) +"bvg" = ( +/obj/effect/landmark/blobstart, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"bvh" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/starboard) +"bvu" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/announcement_system, +/turf/open/floor/plasteel/grimy, +/area/tcommsat/computer) +"bvw" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/showcase/cyborg/old{ + pixel_y = 20 + }, +/turf/open/floor/plasteel/grimy, +/area/tcommsat/computer) +"bvx" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/grimy, +/area/tcommsat/computer) +"bvy" = ( +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/obj/structure/showcase/cyborg/old{ + pixel_y = 20 + }, +/turf/open/floor/plasteel/grimy, +/area/tcommsat/computer) +"bvz" = ( +/obj/structure/table/wood, +/obj/machinery/status_display/ai{ + pixel_y = 31 + }, +/obj/item/flashlight/lamp, +/turf/open/floor/plasteel/grimy, +/area/tcommsat/computer) +"bvA" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/item/radio/intercom{ + dir = 8; + freerange = 1; + name = "Station Intercom (Telecomms)"; + pixel_y = 30 + }, +/obj/structure/table/wood, +/obj/item/phone{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/cigbutt/cigarbutt{ + pixel_x = 5; + pixel_y = -1 + }, +/turf/open/floor/plasteel/grimy, +/area/tcommsat/computer) +"bvB" = ( +/obj/item/kirbyplants{ + icon_state = "plant-20" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bvC" = ( +/obj/structure/chair, +/obj/structure/sign/warning/vacuum/external{ + pixel_y = 32 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bvD" = ( +/obj/structure/chair, +/obj/effect/landmark/start/assistant, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bvE" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bvF" = ( +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bvG" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bvH" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bvI" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bvJ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bvK" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bvL" = ( +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bvN" = ( +/obj/machinery/atmospherics/pipe/simple/dark/visible, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"bvT" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/science/xenobiology) +"bvV" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bvY" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bwh" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/extinguisher_cabinet{ + pixel_x = -27 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bwG" = ( +/obj/machinery/door/airlock/command{ + name = "Emergency Escape"; + req_access_txt = "20" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/central) +"bwH" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/junction, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/central) +"bwI" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bwJ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bwY" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/starboard) +"bwZ" = ( +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/hallway/primary/starboard) +"bxa" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bxb" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 27 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/corner, +/area/hallway/primary/starboard) +"bxn" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/chair/office/dark{ + dir = 1 + }, +/turf/open/floor/plasteel/grimy, +/area/tcommsat/computer) +"bxo" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/grimy, +/area/tcommsat/computer) +"bxp" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/tcommsat/computer) +"bxq" = ( +/turf/open/floor/plasteel/grimy, +/area/tcommsat/computer) +"bxr" = ( +/obj/structure/chair/office/dark{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/tcommsat/computer) +"bxs" = ( +/obj/machinery/computer/security/telescreen{ + dir = 8; + name = "Telecomms Camera Monitor"; + network = list("tcomms"); + pixel_x = 26 + }, +/obj/machinery/computer/telecomms/monitor{ + dir = 8; + network = "tcommsat" + }, +/turf/open/floor/plasteel/grimy, +/area/tcommsat/computer) +"bxt" = ( +/obj/machinery/light, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bxu" = ( +/obj/machinery/camera{ + c_tag = "Arrivals - Middle Arm - Far"; + dir = 1 + }, +/obj/machinery/status_display/evac{ + pixel_y = -32 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bxv" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bxw" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bxx" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/sign/warning/vacuum/external{ + pixel_y = -32 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bxy" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/light, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bxz" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Arrivals - Middle Arm"; + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bxA" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bxB" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel/white/corner, +/area/hallway/secondary/entry) +"bxC" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/white/corner, +/area/hallway/secondary/entry) +"bxD" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel/white/corner, +/area/hallway/secondary/entry) +"bxG" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/window/reinforced, +/obj/structure/showcase/machinery/cloning_pod{ + layer = 4; + pixel_x = 2; + pixel_y = 5 + }, +/turf/open/floor/carpet, +/area/command/corporate_showroom) +"bxL" = ( +/obj/structure/sign/warning/vacuum/external{ + pixel_y = 32 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/vending/coffee, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bxN" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bxS" = ( +/obj/item/cigbutt, +/obj/machinery/power/apc/highcap/five_k{ + areastring = "/area/maintenance/port"; + name = "Port Maintenance APC"; + pixel_y = -24 + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/maintenance/port) +"bxT" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/port) +"bxY" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"byu" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/central) +"byv" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -24 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"byw" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"byx" = ( +/obj/machinery/porta_turret/ai, +/obj/machinery/flasher{ + id = "AI"; + pixel_y = 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/ai_monitored/turret_protected/ai) +"byM" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 24 + }, +/obj/effect/turf_decal/tile/blue, +/mob/living/simple_animal/bot/cleanbot, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"byP" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/item/beacon, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/hallway/primary/starboard) +"byQ" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/corner, +/area/hallway/primary/starboard) +"bzi" = ( +/obj/structure/lattice, +/obj/structure/grille, +/turf/closed/wall/r_wall, +/area/space/nearstation) +"bzj" = ( +/obj/structure/grille, +/obj/structure/lattice, +/turf/closed/wall/r_wall, +/area/space/nearstation) +"bzn" = ( +/obj/machinery/computer/message_monitor{ + dir = 4 + }, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/turf/open/floor/plasteel/grimy, +/area/tcommsat/computer) +"bzo" = ( +/obj/structure/chair/office/dark{ + dir = 8 + }, +/turf/open/floor/plasteel/grimy, +/area/tcommsat/computer) +"bzp" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel/grimy, +/area/tcommsat/computer) +"bzr" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/grimy, +/area/tcommsat/computer) +"bzs" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/chair/office/dark, +/turf/open/floor/plasteel/grimy, +/area/tcommsat/computer) +"bzw" = ( +/obj/machinery/door/airlock{ + name = "Port Emergency Storage" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bzC" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/port) +"bzI" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bzJ" = ( +/turf/closed/wall, +/area/hallway/secondary/command) +"bzL" = ( +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"bzM" = ( +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = 21 + }, +/obj/structure/sign/warning/electricshock{ + pixel_y = 32 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"bzN" = ( +/obj/machinery/status_display/evac{ + pixel_y = 32 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"bzO" = ( +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = 21 + }, +/obj/effect/turf_decal/bot, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"bzP" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/flasher{ + id = "hopflash"; + pixel_x = 28; + pixel_y = -28 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"bzQ" = ( +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = -2; + pixel_y = 4 + }, +/obj/item/pen, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"bzR" = ( +/turf/closed/wall/r_wall, +/area/hallway/secondary/command) +"bAh" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/maintenance/central) +"bAx" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/pump, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Starboard Primary Hallway - Atmospherics"; + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/hallway/primary/starboard) +"bAy" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bAz" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/corner, +/area/hallway/primary/starboard) +"bAS" = ( +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 2 + }, +/obj/structure/lattice, +/turf/open/space, +/area/space/nearstation) +"bAT" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 2 + }, +/turf/open/space, +/area/space/nearstation) +"bAU" = ( +/obj/machinery/microwave{ + pixel_y = 4 + }, +/obj/structure/table/wood, +/turf/open/floor/plasteel/grimy, +/area/tcommsat/computer) +"bAV" = ( +/obj/machinery/light/small, +/obj/item/storage/box/donkpockets, +/obj/structure/table/wood, +/turf/open/floor/plasteel/grimy, +/area/tcommsat/computer) +"bAW" = ( +/obj/structure/table/wood, +/obj/machinery/status_display/evac{ + pixel_y = 31 + }, +/obj/item/radio/off{ + pixel_y = 4 + }, +/obj/item/screwdriver{ + pixel_y = 10 + }, +/turf/open/floor/plasteel/grimy, +/area/tcommsat/computer) +"bAX" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/grimy, +/area/tcommsat/computer) +"bAY" = ( +/obj/structure/filingcabinet{ + pixel_x = 3 + }, +/turf/open/floor/plasteel/grimy, +/area/tcommsat/computer) +"bBa" = ( +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Telecomms Admin"; + departmentType = 5; + name = "Telecomms RC"; + pixel_y = -30 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 24 + }, +/obj/item/paper_bin{ + pixel_x = -1; + pixel_y = 6 + }, +/obj/structure/table/wood, +/turf/open/floor/plasteel/grimy, +/area/tcommsat/computer) +"bBb" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/structure/lattice, +/turf/open/space, +/area/space/nearstation) +"bBc" = ( +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bBh" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/snacks/chips, +/turf/open/floor/plasteel/grimy, +/area/hallway/primary/port) +"bBj" = ( +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/starboard) +"bBk" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/command/gateway) +"bBl" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bBq" = ( +/obj/structure/rack, +/obj/item/flashlight, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/port) +"bBy" = ( +/obj/structure/sign/directions/command{ + dir = 4; + pixel_y = -8 + }, +/obj/structure/sign/directions/security{ + dir = 1; + pixel_y = 8 + }, +/obj/structure/sign/directions/engineering{ + dir = 4 + }, +/turf/closed/wall, +/area/hallway/secondary/command) +"bBz" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/hallway/secondary/command) +"bBA" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + id = "hopqueue"; + name = "HoP Queue Shutters" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/loading_area{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"bBB" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/hallway/secondary/command) +"bBC" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "hopqueue"; + name = "HoP Queue Shutters" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/effect/turf_decal/loading_area, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"bBD" = ( +/obj/structure/sign/directions/command{ + dir = 1; + pixel_y = -8 + }, +/turf/closed/wall/r_wall, +/area/hallway/secondary/command) +"bBG" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/goonplaque{ + desc = "\"This is a plaque in honour of our comrades on the G4407 Stations. Hopefully TG4407 model can live up to your fame and fortune.\" Scratched in beneath that is a crude image of sentient postcards in a realm of darkness. The station model number is MSv42A-160516" + }, +/area/hallway/primary/port) +"bBO" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/maintenance{ + req_one_access_txt = "20;12" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/central) +"bBP" = ( +/obj/structure/sign/directions/engineering{ + dir = 4 + }, +/obj/structure/sign/directions/security{ + dir = 1; + pixel_y = 8 + }, +/obj/structure/sign/directions/command{ + dir = 8; + pixel_y = -8 + }, +/turf/closed/wall, +/area/maintenance/central) +"bBQ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bBR" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=12-Central-Starboard"; + location = "11.1-Command-Starboard" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bBW" = ( +/obj/machinery/camera{ + c_tag = "Head of Personnel's Office"; + dir = 1 + }, +/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, +/obj/machinery/light, +/turf/open/floor/wood, +/area/command/heads_quarters/hop) +"bCe" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/pump, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/hallway/primary/starboard) +"bCf" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/corner, +/area/hallway/primary/starboard) +"bCz" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/purple/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/orange/visible, +/turf/open/space, +/area/space/nearstation) +"bCD" = ( +/turf/closed/wall/r_wall, +/area/tcommsat/server) +"bCE" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/tcommsat/server) +"bCF" = ( +/obj/machinery/door/airlock/hatch{ + name = "Telecomms Server Room" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/turf/open/floor/plasteel/dark, +/area/tcommsat/server) +"bCG" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/sign/warning/vacuum/external, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"bCH" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white/corner, +/area/hallway/secondary/entry) +"bCI" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bCJ" = ( +/obj/item/storage/toolbox/emergency, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/port) +"bCK" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/starboard) +"bCN" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bCQ" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/white/corner, +/area/hallway/secondary/entry) +"bCW" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bCX" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/junction{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bCY" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bCZ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/public/glass{ + name = "Command Hallway" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"bDa" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"bDb" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"bDd" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"bDe" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"bDf" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"bDg" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"bDh" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = 21 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"bDi" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/status_display/evac{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"bDj" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"bDk" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"bDl" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"bDm" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"bDn" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"bDo" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/status_display/ai{ + pixel_y = 32 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"bDq" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"bDr" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"bDs" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"bDu" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = 21 + }, +/obj/machinery/camera{ + c_tag = "Command Hallway - Starboard" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"bDv" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/status_display/evac{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"bDw" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/airalarm{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"bDx" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"bDy" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Command Hallway" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"bDz" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bDA" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bDB" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bDM" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/scrubber, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/hallway/primary/starboard) +"bDN" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bEf" = ( +/obj/machinery/telecomms/processor/preset_one, +/obj/machinery/camera{ + c_tag = "Telecomms - Server Room - Fore-Port"; + network = list("ss13","tcomms") + }, +/turf/open/floor/circuit/green/telecomms/mainframe, +/area/tcommsat/server) +"bEg" = ( +/obj/structure/showcase/cyborg/old{ + pixel_y = 20 + }, +/turf/open/floor/plasteel/dark/telecomms, +/area/tcommsat/server) +"bEh" = ( +/obj/machinery/telecomms/receiver/preset_left, +/turf/open/floor/circuit/green/telecomms/mainframe, +/area/tcommsat/server) +"bEi" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/dark, +/area/tcommsat/server) +"bEj" = ( +/obj/machinery/telecomms/receiver/preset_right, +/turf/open/floor/circuit/green/telecomms/mainframe, +/area/tcommsat/server) +"bEk" = ( +/obj/machinery/telecomms/processor/preset_three, +/obj/machinery/camera{ + c_tag = "Telecomms - Server Room - Fore-Starboard"; + network = list("ss13","tcomms") + }, +/turf/open/floor/circuit/green/telecomms/mainframe, +/area/tcommsat/server) +"bEl" = ( +/obj/machinery/door/airlock/external{ + name = "Transport Airlock" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"bEm" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"bEn" = ( +/obj/machinery/status_display/evac{ + pixel_x = 32 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/white/corner, +/area/hallway/secondary/entry) +"bEo" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/item/storage/box/lights/mixed, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bEp" = ( +/obj/machinery/vending/coffee, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/port) +"bEt" = ( +/obj/structure/chair/comfy{ + dir = 8 + }, +/turf/open/floor/plasteel/grimy, +/area/hallway/primary/port) +"bEB" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=11.1-Command-Starboard"; + location = "11-Command-Port" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bEC" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bED" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/public/glass{ + name = "Command Hallway" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"bEE" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"bEF" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"bEG" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"bEH" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/light, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"bEI" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/extinguisher_cabinet{ + pixel_y = -30 + }, +/obj/machinery/camera{ + c_tag = "Command Hallway - Port"; + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"bEJ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"bEK" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"bEL" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"bEM" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/machinery/newscaster{ + pixel_y = -29 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"bEN" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"bEO" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"bEP" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"bEQ" = ( +/obj/machinery/holopad, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"bER" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"bES" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"bET" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/light, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"bEU" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"bEV" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/machinery/newscaster{ + pixel_y = -29 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"bEW" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"bEX" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"bEY" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"bEZ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/extinguisher_cabinet{ + pixel_y = -30 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"bFa" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/light, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"bFb" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"bFc" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"bFd" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"bFe" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"bFf" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Command Hallway" + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"bFg" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bFh" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=7.5-Starboard-Aft-Corner"; + location = "7-Command-Starboard" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bFi" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bFA" = ( +/obj/machinery/door/airlock{ + name = "Theatre Stage"; + req_one_access_txt = "12;46" + }, +/obj/structure/cable/yellow{ + 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/starboard) +"bFB" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"bFC" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/scrubber, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/window/reinforced, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/hallway/primary/starboard) +"bFD" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bFE" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/corner, +/area/hallway/primary/starboard) +"bFY" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/turf/open/space, +/area/space/nearstation) +"bGc" = ( +/obj/machinery/telecomms/bus/preset_one, +/turf/open/floor/circuit/green/telecomms/mainframe, +/area/tcommsat/server) +"bGd" = ( +/turf/open/floor/plasteel/dark/telecomms, +/area/tcommsat/server) +"bGe" = ( +/turf/open/floor/circuit/green/telecomms/mainframe, +/area/tcommsat/server) +"bGf" = ( +/obj/machinery/telecomms/bus/preset_three, +/turf/open/floor/circuit/green/telecomms/mainframe, +/area/tcommsat/server) +"bGh" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat/foyer) +"bGj" = ( +/obj/machinery/vending/cola/random, +/obj/machinery/newscaster{ + pixel_x = -30 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/port) +"bGp" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/starboard) +"bGq" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Library Maintenance"; + req_one_access_txt = "12;37" + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bGw" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/camera{ + c_tag = "Central Primary Hallway - Port"; + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bGF" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow, +/turf/open/floor/plating, +/area/hallway/secondary/command) +"bGG" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"bGH" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"bGI" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"bGJ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"bGK" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"bGL" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 27 + }, +/obj/machinery/camera{ + c_tag = "Command Hallway - Central"; + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"bGQ" = ( +/obj/machinery/vending/cola/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/command) +"bGR" = ( +/obj/machinery/vending/cigarette, +/obj/machinery/newscaster{ + 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/command) +"bGS" = ( +/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/command) +"bGT" = ( +/obj/machinery/door/airlock/maintenance{ + req_one_access_txt = "12;17" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/central) +"bGU" = ( +/obj/structure/sign/directions/evac, +/obj/structure/sign/directions/medical{ + pixel_y = 8 + }, +/obj/structure/sign/directions/science{ + pixel_y = -8 + }, +/turf/closed/wall, +/area/maintenance/central) +"bGV" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bGW" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bGX" = ( +/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) +"bHl" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/starboard) +"bHm" = ( +/obj/item/crowbar, +/obj/item/wrench, +/obj/structure/table, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bHn" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=13.3-Engineering-Central"; + location = "13.2-Tcommstore" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bHo" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 24 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/corner, +/area/hallway/primary/starboard) +"bHr" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/orange/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bHC" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/telecomms, +/area/tcommsat/server) +"bHD" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/telecomms, +/area/tcommsat/server) +"bHF" = ( +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/telecomms, +/area/tcommsat/server) +"bHG" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/telecomms, +/area/tcommsat/server) +"bHH" = ( +/obj/structure/closet/firecloset, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bHI" = ( +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/white/corner, +/area/hallway/secondary/entry) +"bHJ" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/newscaster{ + pixel_x = 28; + pixel_y = 1 + }, +/turf/open/floor/plasteel/white/corner, +/area/hallway/secondary/entry) +"bHM" = ( +/obj/structure/chair/comfy{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/hallway/primary/port) +"bHW" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bHX" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bIi" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"bIj" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"bIk" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"bIl" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/hallway/secondary/command) +"bIq" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/central) +"bIr" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bIs" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bIv" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 10 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"bIx" = ( +/obj/structure/rack, +/obj/item/clothing/shoes/winterboots, +/obj/item/clothing/suit/hooded/wintercoat, +/turf/open/floor/plating, +/area/maintenance/department/science/xenobiology) +"bID" = ( +/obj/structure/cable, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solars/port/fore) +"bIE" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating{ + icon_state = "platingdmg2" + }, +/area/maintenance/starboard) +"bIF" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/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/hallway/primary/starboard) +"bIG" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bIH" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/item/kirbyplants{ + icon_state = "plant-22" + }, +/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/hallway/primary/starboard) +"bJb" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 4 + }, +/turf/open/space, +/area/space/nearstation) +"bJe" = ( +/obj/structure/lattice, +/obj/structure/grille, +/obj/structure/lattice, +/obj/structure/lattice, +/turf/closed/wall/r_wall, +/area/space/nearstation) +"bJf" = ( +/obj/structure/lattice, +/obj/structure/grille, +/obj/structure/lattice, +/turf/closed/wall/r_wall, +/area/space/nearstation) +"bJg" = ( +/obj/machinery/telecomms/message_server, +/turf/open/floor/circuit/telecomms/mainframe, +/area/tcommsat/server) +"bJh" = ( +/obj/item/kirbyplants{ + icon_state = "plant-21" + }, +/turf/open/floor/plasteel/grimy, +/area/tcommsat/computer) +"bJi" = ( +/obj/machinery/light/small, +/obj/item/folder, +/obj/item/folder, +/obj/machinery/camera{ + c_tag = "Telecomms - Control Room"; + dir = 1; + network = list("ss13","tcomms") + }, +/obj/structure/table/wood, +/obj/item/pen, +/turf/open/floor/plasteel/grimy, +/area/tcommsat/computer) +"bJj" = ( +/obj/machinery/door/airlock/maintenance{ + req_one_access_txt = "12;27;37" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bJk" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/dark/telecomms, +/area/tcommsat/server) +"bJl" = ( +/obj/structure/lattice, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/space, +/area/space/nearstation) +"bJm" = ( +/obj/machinery/telecomms/bus/preset_two, +/turf/open/floor/circuit/telecomms/mainframe, +/area/tcommsat/server) +"bJn" = ( +/obj/machinery/blackbox_recorder, +/turf/open/floor/circuit/telecomms/mainframe, +/area/tcommsat/server) +"bJo" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/white/corner, +/area/hallway/secondary/entry) +"bJp" = ( +/obj/machinery/vending/snack/random, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/port) +"bJq" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bJr" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bJs" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bJC" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/extinguisher_cabinet{ + pixel_x = 27 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bJN" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"bJO" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"bJP" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"bJQ" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/item/beacon, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"bJR" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"bKb" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/central) +"bKc" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bKd" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bKK" = ( +/obj/structure/grille, +/obj/structure/lattice, +/obj/structure/lattice, +/turf/closed/wall/r_wall, +/area/space/nearstation) +"bKL" = ( +/obj/machinery/telecomms/processor/preset_two, +/turf/open/floor/circuit/telecomms/mainframe, +/area/tcommsat/server) +"bKM" = ( +/obj/structure/table/glass, +/obj/item/folder{ + pixel_y = 2 + }, +/obj/item/folder{ + pixel_y = 2 + }, +/obj/item/pen, +/turf/open/floor/circuit/green/telecomms/mainframe, +/area/tcommsat/server) +"bKN" = ( +/obj/machinery/telecomms/bus/preset_four, +/turf/open/floor/circuit/telecomms/mainframe, +/area/tcommsat/server) +"bKO" = ( +/obj/machinery/telecomms/hub/preset, +/turf/open/floor/circuit/green/telecomms/mainframe, +/area/tcommsat/server) +"bKP" = ( +/obj/machinery/telecomms/processor/preset_four, +/turf/open/floor/circuit/telecomms/mainframe, +/area/tcommsat/server) +"bKQ" = ( +/obj/structure/lattice, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/space, +/area/space/nearstation) +"bKS" = ( +/obj/item/kirbyplants{ + icon_state = "plant-06" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bKT" = ( +/obj/structure/chair, +/obj/effect/landmark/start/assistant, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bKU" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bKV" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bKW" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 24 + }, +/obj/machinery/camera{ + c_tag = "Arrivals - Aft Arm"; + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/white/corner, +/area/hallway/secondary/entry) +"bKX" = ( +/obj/structure/chair/comfy{ + dir = 1 + }, +/turf/open/floor/plasteel/grimy, +/area/hallway/primary/port) +"bLb" = ( +/obj/structure/table, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/port) +"bLc" = ( +/obj/structure/closet/crate{ + icon_state = "crateopen" + }, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 3; + name = "3maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bLd" = ( +/obj/structure/closet, +/obj/item/clothing/shoes/jackboots, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bLe" = ( +/obj/machinery/vending/autodrobe, +/turf/open/floor/plating, +/area/maintenance/port) +"bLf" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/costume, +/obj/effect/spawner/lootdrop/costume, +/turf/open/floor/plating, +/area/maintenance/port) +"bLg" = ( +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/structure/rack, +/obj/effect/spawner/lootdrop/costume, +/obj/effect/spawner/lootdrop/costume, +/turf/open/floor/plating, +/area/maintenance/port) +"bLG" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/item/cigbutt, +/obj/effect/landmark/blobstart, +/turf/open/floor/plating, +/area/maintenance/central) +"bLH" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/status_display/evac{ + pixel_x = -32 + }, +/obj/machinery/camera{ + c_tag = "Central Primary Hallway - Starboard - Kitchen"; + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bLX" = ( +/obj/structure/closet, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/starboard) +"bLY" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/open/floor/plating, +/area/maintenance/starboard) +"bLZ" = ( +/obj/structure/closet/cardboard, +/turf/open/floor/plating, +/area/maintenance/starboard) +"bMo" = ( +/obj/machinery/airalarm/server{ + dir = 4; + pixel_x = -22 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Telecomms - Server Room - Aft-Port"; + dir = 4; + network = list("ss13","tcomms") + }, +/turf/open/floor/plasteel/dark/telecomms, +/area/tcommsat/server) +"bMp" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel/dark/telecomms, +/area/tcommsat/server) +"bMq" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel/dark/telecomms, +/area/tcommsat/server) +"bMr" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark/telecomms, +/area/tcommsat/server) +"bMu" = ( +/obj/machinery/camera{ + c_tag = "Arrivals - Aft Arm - Far"; + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bMv" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bMw" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/item/radio/intercom{ + pixel_y = -25 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bMx" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bMy" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white/corner, +/area/hallway/secondary/entry) +"bMz" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel/white/corner, +/area/hallway/secondary/entry) +"bMA" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/structure/sign/map/left{ + desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; + icon_state = "map-left-MS"; + pixel_y = -32 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/white/corner, +/area/hallway/secondary/entry) +"bMB" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/structure/sign/map/right{ + desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; + icon_state = "map-right-MS"; + pixel_y = -32 + }, +/obj/item/kirbyplants{ + icon_state = "plant-03" + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel/white/corner, +/area/hallway/secondary/entry) +"bME" = ( +/obj/structure/mirror{ + pixel_x = -28 + }, +/obj/item/lipstick/black, +/obj/item/lipstick/jade{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/lipstick/purple{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/structure/table, +/turf/open/floor/plating, +/area/maintenance/port) +"bMF" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/port) +"bMG" = ( +/obj/structure/closet/crate{ + icon_state = "crateopen" + }, +/obj/item/rack_parts, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/port) +"bMR" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bNd" = ( +/obj/item/tank/internals/oxygen, +/obj/item/tank/internals/oxygen, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bNs" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/central) +"bNt" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/item/radio/intercom{ + dir = 8; + name = "Station Intercom (General)"; + pixel_x = -28 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bNu" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bNO" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/turf/open/floor/plating, +/area/maintenance/starboard) +"bNT" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/nuke_storage) +"bNX" = ( +/obj/machinery/telecomms/server/presets/common, +/turf/open/floor/circuit/telecomms/mainframe, +/area/tcommsat/server) +"bNY" = ( +/obj/machinery/telecomms/server/presets/engineering, +/turf/open/floor/circuit/telecomms/mainframe, +/area/tcommsat/server) +"bNZ" = ( +/obj/machinery/light/small, +/obj/machinery/camera{ + c_tag = "Telecomms - Server Room - Aft"; + dir = 1; + network = list("ss13","tcomms") + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/ntnet_relay, +/turf/open/floor/plasteel/dark/telecomms, +/area/tcommsat/server) +"bOa" = ( +/obj/machinery/telecomms/server/presets/medical, +/turf/open/floor/circuit/telecomms/mainframe, +/area/tcommsat/server) +"bOb" = ( +/obj/machinery/telecomms/server/presets/science, +/turf/open/floor/circuit/telecomms/mainframe, +/area/tcommsat/server) +"bOc" = ( +/obj/machinery/telecomms/broadcaster/preset_left, +/turf/open/floor/circuit/telecomms/mainframe, +/area/tcommsat/server) +"bOd" = ( +/obj/machinery/door/airlock/external{ + name = "Auxiliary Airlock" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"bOe" = ( +/obj/machinery/door/airlock/maintenance{ + req_one_access_txt = "12;27" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bOf" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bOi" = ( +/obj/structure/table, +/obj/item/clothing/mask/cigarette/pipe, +/turf/open/floor/plating, +/area/maintenance/port) +"bOn" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bOq" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/port/fore) +"bOv" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bON" = ( +/obj/structure/sign/warning/securearea{ + pixel_x = -32 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plating{ + icon_state = "platingdmg2" + }, +/area/maintenance/central) +"bOO" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bOY" = ( +/obj/machinery/door/airlock/external{ + req_access_txt = "13" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"bPf" = ( +/obj/machinery/door/airlock{ + name = "Theatre Backstage"; + req_access_txt = "46" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"bPg" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/sorting/mail{ + dir = 2; + sortType = 18 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"bPk" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"bPl" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plating, +/area/maintenance/starboard) +"bPm" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"bPn" = ( +/obj/machinery/atmospherics/components/trinary/filter, +/turf/open/floor/plating, +/area/maintenance/starboard) +"bPs" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/closed/wall, +/area/maintenance/starboard) +"bPA" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"bPC" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bPD" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/item/storage/box/lights/mixed, +/obj/structure/closet/firecloset, +/turf/open/floor/plating{ + icon_state = "platingdmg2" + }, +/area/maintenance/port) +"bPF" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bPG" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bPH" = ( +/obj/item/trash/candy, +/turf/open/floor/plating, +/area/maintenance/port) +"bPJ" = ( +/obj/structure/rack, +/obj/item/clothing/mask/horsehead, +/obj/effect/spawner/lootdrop/costume, +/turf/open/floor/plating, +/area/maintenance/port) +"bPK" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/maintenance/port) +"bPL" = ( +/obj/structure/rack, +/obj/item/storage/box, +/turf/open/floor/plating, +/area/maintenance/port) +"bPM" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating{ + icon_state = "platingdmg2" + }, +/area/maintenance/port) +"bPN" = ( +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/structure/closet/emcloset, +/turf/open/floor/plating, +/area/maintenance/port) +"bPY" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bQx" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Gateway Maintenance"; + req_access_txt = "17" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/central) +"bQy" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/central) +"bQz" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/extinguisher_cabinet{ + pixel_x = -27 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bQQ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/item/wrench, +/turf/open/floor/plating, +/area/maintenance/starboard) +"bQR" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/canister, +/turf/open/floor/plating, +/area/maintenance/starboard) +"bRc" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bRd" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/port) +"bRe" = ( +/obj/item/trash/cheesie, +/turf/open/floor/plating, +/area/maintenance/port) +"bRf" = ( +/obj/machinery/door/airlock/maintenance/abandoned{ + name = "Storage Room"; + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/port) +"bRo" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/item/radio/intercom{ + dir = 4; + name = "Station Intercom (General)"; + pixel_x = 27 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bRN" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/maintenance/central) +"bRO" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -24 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bSc" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/starboard) +"bSd" = ( +/obj/machinery/portable_atmospherics/canister, +/turf/open/floor/plating, +/area/maintenance/starboard) +"bSe" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/landmark/blobstart, +/turf/open/floor/plating, +/area/maintenance/starboard) +"bSf" = ( +/obj/item/crowbar, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/starboard) +"bSn" = ( +/obj/effect/turf_decal/stripes/line, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bSo" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bSp" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bSq" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bSr" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bSs" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bSt" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/port) +"bSu" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/port) +"bSv" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bSw" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bSD" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -24 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bSP" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/maintenance{ + req_one_access_txt = "12;17" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/central) +"bSQ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bSR" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/green, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bSS" = ( +/turf/closed/wall, +/area/hallway/primary/central) +"bSZ" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Kitchen Maintenance"; + req_access_txt = "28" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"bTa" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/landmark/blobstart, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"bTb" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"bTd" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"bTe" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"bTf" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible, +/obj/machinery/meter, +/turf/open/floor/plating, +/area/maintenance/starboard) +"bTg" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"bTh" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/starboard) +"bTn" = ( +/turf/closed/wall, +/area/maintenance/solars/port/aft) +"bTo" = ( +/obj/machinery/door/airlock/engineering{ + name = "Port Quarter Solar Access"; + req_access_txt = "10" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/solars/port/aft) +"bTp" = ( +/obj/structure/sign/warning/electricshock, +/turf/closed/wall, +/area/maintenance/solars/port/aft) +"bTr" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/airlock/maintenance/abandoned{ + name = "Storage Room"; + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bTs" = ( +/turf/closed/wall, +/area/maintenance/aft) +"bTt" = ( +/obj/item/storage/box, +/turf/open/floor/plating, +/area/maintenance/port) +"bTv" = ( +/obj/structure/rack, +/obj/item/paper, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/port) +"bTD" = ( +/obj/machinery/vending/snack/random, +/obj/machinery/newscaster{ + pixel_x = -30 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central) +"bTE" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=11-Command-Port"; + location = "10.2-Aft-Port-Corner" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bTF" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bTG" = ( +/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) +"bTH" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bTI" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bTJ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bTK" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bTL" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/firealarm{ + pixel_y = 28 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bTM" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = 21 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bTN" = ( +/obj/machinery/light{ + dir = 1 + }, +/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) +"bTO" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bTP" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bTQ" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bTR" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bTS" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bTT" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/status_display/evac{ + pixel_y = 32 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bTV" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/obj/structure/sign/map/left{ + desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; + icon_state = "map-left-MS"; + pixel_y = 32 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bTW" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/sign/map/right{ + desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; + icon_state = "map-right-MS"; + pixel_y = 32 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bTX" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = 21 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bTY" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/button/door{ + id = "gateshutter"; + name = "Gateway Shutter Control"; + pixel_y = 26; + req_access_txt = "19" + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bUa" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bUb" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bUc" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/sign/departments/botany{ + pixel_x = 32; + pixel_y = 32 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bUd" = ( +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = -2; + pixel_y = 8 + }, +/obj/item/pen, +/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, +/area/hallway/primary/central) +"bUs" = ( +/obj/structure/disposalpipe/sorting/mail{ + dir = 2; + sortType = 20 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"bUt" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"bUu" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"bUv" = ( +/obj/structure/cable/yellow{ + 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 = "panelscorched" + }, +/area/maintenance/starboard) +"bUx" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/maintenance/starboard) +"bUy" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister, +/turf/open/floor/plating, +/area/maintenance/starboard) +"bUL" = ( +/obj/machinery/telecomms/server/presets/security, +/turf/open/floor/circuit/telecomms/mainframe, +/area/tcommsat/server) +"bUO" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/solars/port/aft) +"bUP" = ( +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/machinery/power/smes, +/turf/open/floor/plating, +/area/maintenance/solars/port/aft) +"bUQ" = ( +/obj/item/cigbutt, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bUR" = ( +/obj/structure/closet, +/obj/item/storage/box/donkpockets, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bUS" = ( +/obj/machinery/door/airlock/maintenance{ + req_one_access_txt = "12;5;39;25;28" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"bUT" = ( +/obj/structure/table, +/obj/item/reagent_containers/food/condiment/enzyme{ + layer = 5 + }, +/obj/item/reagent_containers/food/condiment/flour, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"bUU" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"bUV" = ( +/obj/machinery/recharge_station, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"bUW" = ( +/obj/structure/table, +/obj/machinery/microwave{ + pixel_x = -3; + pixel_y = 6 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"bUX" = ( +/obj/structure/closet/crate/bin, +/obj/item/kitchen/knife, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"bUY" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central) +"bUZ" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bVa" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bVb" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bVc" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bVd" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bVe" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/plaque{ + icon_state = "L1" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bVf" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/plaque{ + icon_state = "L3" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bVg" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=10.2-Aft-Port-Corner"; + location = "10.1-Central-from-Aft" + }, +/obj/effect/turf_decal/plaque{ + icon_state = "L5" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bVh" = ( +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/effect/turf_decal/plaque{ + icon_state = "L7" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bVi" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=8.1-Aft-to-Escape"; + location = "8-Central-to-Aft" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/plaque{ + icon_state = "L9" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bVj" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/plaque{ + icon_state = "L11" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bVk" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/plaque{ + icon_state = "L13" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bVl" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bVm" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bVn" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bVo" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=8-Central-to-Aft"; + location = "7.5-Starboard-Aft-Corner" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bVp" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bVq" = ( +/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, +/area/hallway/primary/central) +"bVz" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/closed/wall, +/area/hallway/secondary/service) +"bVA" = ( +/obj/machinery/door/airlock{ + name = "Service Hall"; + req_access_txt = "null"; + req_one_access_txt = "25;26;35;28" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/hallway/secondary/service) +"bVB" = ( +/obj/structure/rack, +/obj/item/extinguisher, +/obj/item/storage/belt/utility, +/obj/item/clothing/mask/gas, +/obj/item/storage/box/lights/mixed, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/starboard) +"bVC" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plating, +/area/maintenance/starboard) +"bVE" = ( +/obj/structure/closet/crate, +/obj/item/storage/belt/utility, +/obj/item/stack/cable_coil/random, +/turf/open/floor/plating, +/area/maintenance/starboard) +"bVQ" = ( +/obj/structure/chair/stool, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/camera{ + c_tag = "Aft Port Solar Maintenance"; + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/solars/port/aft) +"bVR" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/landmark/xeno_spawn, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/solars/port/aft) +"bVS" = ( +/obj/machinery/power/terminal{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/item/radio/intercom{ + dir = 4; + name = "Station Intercom (General)"; + pixel_x = 27 + }, +/turf/open/floor/plating, +/area/maintenance/solars/port/aft) +"bVT" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plating, +/area/maintenance/port) +"bVU" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/port) +"bVV" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"bVW" = ( +/obj/structure/table, +/obj/item/kitchen/rollingpin, +/obj/item/reagent_containers/glass/beaker, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/port/aft) +"bWb" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bWc" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bWd" = ( +/obj/structure/cable/yellow{ + 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/port) +"bWf" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance{ + req_one_access_txt = "12;5;39;37;25;28" + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bWg" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/junction/flip{ + 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/central) +"bWh" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bWi" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/camera{ + c_tag = "Central Primary Hallway - Aft-Port Corner"; + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bWj" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bWk" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bWl" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bWm" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + pixel_y = -30 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bWn" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bWo" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bWp" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bWq" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bWr" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/effect/turf_decal/plaque{ + icon_state = "L2" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bWs" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/plaque{ + icon_state = "L4" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bWt" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/effect/turf_decal/plaque{ + icon_state = "L6" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bWu" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/plaque{ + icon_state = "L8" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bWv" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/plaque{ + icon_state = "L10" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bWw" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/plaque{ + icon_state = "L12" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bWx" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/plaque{ + icon_state = "L14" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bWy" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bWz" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bWA" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bWB" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bWC" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bWD" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bWE" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/structure/extinguisher_cabinet{ + pixel_y = -30 + }, +/obj/machinery/camera{ + c_tag = "Central Primary Hallway - Aft-Starboard Corner"; + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bWF" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bWG" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bWH" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bWI" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/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/central) +"bWJ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/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, +/area/hallway/primary/central) +"bWX" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/table, +/obj/item/storage/bag/plants, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/item/reagent_containers/glass/bucket, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/service) +"bWY" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"bWZ" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg2" + }, +/area/maintenance/starboard) +"bXa" = ( +/obj/structure/cable/yellow{ + 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/starboard) +"bXb" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"bXc" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/starboard) +"bXd" = ( +/obj/structure/cable/yellow{ + 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 = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/starboard) +"bXe" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Atmospherics Maintenance"; + req_access_txt = "24" + }, +/obj/structure/cable/yellow{ + 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/starboard) +"bXt" = ( +/obj/machinery/power/solar_control{ + dir = 1; + id = "aftport"; + name = "Port Quarter Solar Control" + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/solars/port/aft) +"bXu" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/maintenance/solars/port/aft) +"bXv" = ( +/obj/structure/sign/warning/vacuum/external{ + pixel_x = 32 + }, +/turf/open/floor/plating, +/area/maintenance/solars/port/aft) +"bXx" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bXy" = ( +/obj/structure/closet, +/obj/item/flashlight, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"bXz" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/port/aft) +"bXA" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"bXC" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"bXD" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg2" + }, +/area/maintenance/port/aft) +"bXE" = ( +/turf/open/floor/plating, +/area/maintenance/port/aft) +"bXF" = ( +/obj/structure/girder, +/obj/structure/grille, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"bXG" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/maintenance/port) +"bXH" = ( +/obj/structure/closet/crate, +/obj/item/coin/silver, +/obj/item/flashlight, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/port) +"bXI" = ( +/obj/structure/closet, +/obj/item/clothing/neck/stethoscope, +/obj/item/hemostat, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/port) +"bXJ" = ( +/obj/item/storage/box/lights/mixed, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/port) +"bXK" = ( +/turf/closed/wall, +/area/medical/storage) +"bXL" = ( +/turf/closed/wall, +/area/security/checkpoint/medical) +"bXM" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -27 + }, +/obj/item/kirbyplants{ + icon_state = "applebush" + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bXN" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bXO" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bXP" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bXQ" = ( +/obj/machinery/camera{ + c_tag = "Central Primary Hallway - Aft-Port"; + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bXR" = ( +/obj/machinery/light/small, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bXS" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bXT" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bXU" = ( +/obj/machinery/light/small, +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bXV" = ( +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bXW" = ( +/obj/machinery/camera{ + c_tag = "Central Primary Hallway - Aft-Starboard"; + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bXX" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bXY" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bXZ" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 24 + }, +/obj/item/kirbyplants{ + icon_state = "plant-10" + }, +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bYa" = ( +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/disposal/bin, +/obj/machinery/newscaster{ + 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/primary/central) +"bYb" = ( +/obj/machinery/door/airlock/maintenance{ + req_one_access_txt = "12;35;47" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"bYc" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/hallway/primary/central) +"bYd" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Hydroponics Storage" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bYo" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/structure/disposalpipe/junction/flip{ + dir = 2 + }, +/obj/structure/table, +/obj/item/kitchen/rollingpin, +/turf/open/floor/plasteel, +/area/hallway/secondary/service) +"bYp" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/plasteel, +/area/hallway/secondary/service) +"bYr" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"bYs" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating, +/area/maintenance/starboard) +"bYt" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"bYu" = ( +/obj/item/cigbutt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"bYC" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/solars/port/aft) +"bYD" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/external{ + name = "Solar Maintenance"; + req_access_txt = "10; 13" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/turf/open/floor/plating, +/area/maintenance/solars/port/aft) +"bYE" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"bYH" = ( +/obj/structure/rack, +/obj/item/stack/rods{ + amount = 4 + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/port/aft) +"bYI" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"bYJ" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/item/stock_parts/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"bYK" = ( +/obj/machinery/mech_bay_recharge_port, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"bYL" = ( +/turf/open/floor/mech_bay_recharge_floor, +/area/maintenance/port/aft) +"bYM" = ( +/obj/machinery/computer/mech_bay_power_console, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/turf/open/floor/circuit, +/area/maintenance/port/aft) +"bYN" = ( +/obj/machinery/space_heater, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/port/aft) +"bYO" = ( +/obj/item/vending_refill/cola, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"bYP" = ( +/obj/structure/closet/crate{ + icon_state = "crateopen" + }, +/obj/item/storage/box/donkpockets, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"bYQ" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/airlock/maintenance{ + req_one_access_txt = "12;5;39;25;28" + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"bYR" = ( +/obj/machinery/vending/medical, +/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/storage) +"bYS" = ( +/obj/structure/noticeboard{ + pixel_y = 32 + }, +/obj/structure/table, +/obj/item/reagent_containers/glass/beaker/large{ + pixel_y = 3 + }, +/obj/item/reagent_containers/glass/beaker{ + pixel_x = 8; + pixel_y = 2 + }, +/obj/item/reagent_containers/glass/bottle/charcoal{ + pixel_x = -5 + }, +/obj/item/reagent_containers/glass/bottle/morphine, +/obj/item/reagent_containers/syringe/epinephrine{ + pixel_x = 3; + pixel_y = -2 + }, +/obj/item/reagent_containers/dropper, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/storage) +"bYT" = ( +/obj/structure/closet/secure_closet/medical3, +/obj/item/screwdriver{ + pixel_y = 6 + }, +/obj/item/storage/belt/medical{ + pixel_y = 2 + }, +/obj/item/clothing/neck/stethoscope, +/obj/item/radio/intercom{ + broadcasting = 1; + frequency = 1485; + listening = 0; + name = "Station Intercom (Medbay)"; + pixel_y = 30 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/storage) +"bYU" = ( +/obj/structure/closet/secure_closet/medical3, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/airalarm{ + pixel_y = 24 + }, +/obj/item/screwdriver{ + pixel_y = 6 + }, +/obj/item/storage/belt/medical{ + pixel_y = 2 + }, +/obj/item/clothing/neck/stethoscope, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/storage) +"bYV" = ( +/obj/machinery/vending/wardrobe/medi_wardrobe, +/obj/structure/sign/warning/nosmoking{ + pixel_y = 30 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/storage) +"bYW" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/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/storage) +"bYY" = ( +/obj/machinery/recharger{ + pixel_y = 4 + }, +/obj/structure/table/reinforced, +/obj/machinery/requests_console{ + department = "Security"; + departmentType = 5; + pixel_y = 30 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Security Post - Medbay"; + network = list("ss13","medbay") + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/medical) +"bYZ" = ( +/obj/item/pen, +/obj/structure/table/reinforced, +/obj/structure/reagent_dispensers/peppertank{ + pixel_x = 30 + }, +/obj/item/folder/red, +/obj/item/book/manual/wiki/security_space_law{ + pixel_x = 3; + pixel_y = 4 + }, +/obj/machinery/newscaster/security_unit{ + pixel_y = 32 + }, +/obj/item/screwdriver{ + pixel_y = 10 + }, +/obj/item/radio/off, +/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) +"bZa" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/medical/medbay/central) +"bZb" = ( +/obj/structure/sign/departments/medbay/alt, +/turf/closed/wall, +/area/medical/medbay/central) +"bZc" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/white/side, +/area/medical/medbay/central) +"bZd" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/white/side, +/area/medical/medbay/central) +"bZe" = ( +/obj/structure/sign/directions/security{ + dir = 1; + pixel_y = 8 + }, +/obj/structure/sign/directions/engineering{ + dir = 4 + }, +/obj/structure/sign/directions/command{ + dir = 1; + pixel_y = -8 + }, +/turf/closed/wall, +/area/medical/medbay/central) +"bZf" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Aft Primary Hallway" + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bZg" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Aft Primary Hallway" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bZh" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Aft Primary Hallway" + }, +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bZi" = ( +/obj/structure/sign/directions/medical{ + dir = 8; + pixel_y = 8 + }, +/obj/structure/sign/directions/evac, +/obj/structure/sign/directions/science{ + dir = 4; + pixel_y = -8 + }, +/turf/closed/wall, +/area/science/research) +"bZj" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/science/research) +"bZk" = ( +/obj/structure/sign/departments/science, +/turf/closed/wall, +/area/science/research) +"bZl" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/white/side, +/area/science/research) +"bZm" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white/side, +/area/science/research) +"bZn" = ( +/turf/closed/wall, +/area/science/research) +"bZo" = ( +/turf/closed/wall, +/area/security/checkpoint/science/research) +"bZq" = ( +/obj/item/reagent_containers/food/snacks/grown/wheat, +/obj/item/reagent_containers/food/snacks/grown/watermelon, +/obj/item/reagent_containers/food/snacks/grown/citrus/orange, +/obj/item/reagent_containers/food/snacks/grown/grapes, +/obj/structure/extinguisher_cabinet{ + pixel_x = -27 + }, +/obj/structure/table/glass, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bZs" = ( +/obj/item/cultivator, +/obj/item/crowbar, +/obj/item/plant_analyzer, +/obj/item/reagent_containers/glass/bucket, +/obj/structure/table/glass, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bZy" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/airlock{ + name = "Service Hall"; + req_access_txt = "null"; + req_one_access_txt = "25;26;35;28" + }, +/turf/open/floor/plating, +/area/hallway/secondary/service) +"bZz" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"bZA" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/starboard) +"bZB" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"bZC" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/maintenance/disposal/incinerator) +"bZD" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Incinerator Access"; + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/disposal/incinerator) +"bZE" = ( +/turf/closed/wall, +/area/maintenance/disposal/incinerator) +"bZN" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating/airless, +/area/maintenance/solars/port/aft) +"bZO" = ( +/obj/machinery/door/airlock/maintenance/abandoned{ + name = "Storage Room"; + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"bZP" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/circuit, +/area/maintenance/port/aft) +"bZQ" = ( +/turf/open/floor/circuit, +/area/maintenance/port/aft) +"bZR" = ( +/obj/structure/cable/yellow{ + 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/plating, +/area/maintenance/port/aft) +"bZS" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"bZT" = ( +/obj/machinery/space_heater, +/turf/open/floor/plating, +/area/maintenance/aft) +"bZU" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/mopbucket, +/obj/item/mop, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"bZV" = ( +/obj/item/storage/box/lights/mixed, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"bZW" = ( +/obj/item/cigbutt{ + pixel_x = 6; + pixel_y = -6 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/item/storage/toolbox/emergency, +/obj/item/hand_labeler, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"bZX" = ( +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=4"; + dir = 4; + freq = 1400; + location = "Medbay" + }, +/obj/structure/plasticflaps/opaque, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/window/northleft{ + dir = 8; + name = "MuleBot Access"; + req_access_txt = "50" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/medical/storage) +"bZY" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/landmark/start/paramedic, +/turf/open/floor/plasteel/white, +/area/medical/storage) +"bZZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/storage) +"caa" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/storage) +"cab" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel/white, +/area/medical/storage) +"cac" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/storage) +"cad" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + name = "Medbay Security Post"; + req_access_txt = "63" + }, +/obj/structure/cable/yellow{ + 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/medical) +"cae" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/light_switch{ + pixel_y = -25 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + 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/medical) +"caf" = ( +/turf/open/floor/plasteel, +/area/security/checkpoint/medical) +"cag" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/medical) +"cah" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/security/checkpoint/medical) +"cai" = ( +/obj/structure/table, +/obj/item/pen, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/item/storage/firstaid/regular, +/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) +"caj" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/table, +/obj/item/reagent_containers/glass/bottle/epinephrine{ + pixel_x = 7; + pixel_y = -3 + }, +/obj/item/reagent_containers/glass/bottle/charcoal{ + pixel_x = -4; + pixel_y = -3 + }, +/obj/item/reagent_containers/syringe/epinephrine{ + pixel_x = 3; + pixel_y = -2 + }, +/obj/item/reagent_containers/dropper, +/obj/item/reagent_containers/glass/beaker{ + pixel_x = 8; + 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) +"cak" = ( +/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) +"cal" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cam" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"can" = ( +/obj/structure/chair, +/obj/effect/landmark/start/assistant, +/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) +"cao" = ( +/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) +"cap" = ( +/obj/structure/table, +/obj/item/stack/medical/gauze, +/obj/item/stack/medical/mesh, +/obj/item/stack/medical/suture, +/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) +"caq" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"car" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cas" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cat" = ( +/obj/structure/table, +/obj/item/folder/white{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/item/clothing/glasses/science, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"cau" = ( +/obj/structure/table, +/obj/item/paper/pamphlet/gateway, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/item/paicard{ + pixel_x = -8 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"cav" = ( +/obj/structure/chair, +/obj/effect/landmark/start/assistant, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"caw" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/white, +/area/science/research) +"cax" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white, +/area/science/research) +"cay" = ( +/obj/structure/chair, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"caz" = ( +/obj/structure/table, +/obj/item/stack/cable_coil, +/obj/item/assembly/igniter{ + pixel_x = -4; + pixel_y = -4 + }, +/obj/item/screwdriver{ + pixel_y = 16 + }, +/obj/item/gps{ + gpstag = "RD0" + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"caA" = ( +/obj/structure/table, +/obj/item/stack/sheet/glass, +/obj/item/electronics/airlock, +/obj/item/assembly/timer{ + pixel_x = -4; + pixel_y = 2 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"caB" = ( +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = -2; + pixel_y = 4 + }, +/obj/item/pen, +/obj/machinery/status_display/evac{ + pixel_y = 32 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 24 + }, +/obj/machinery/camera{ + c_tag = "Research Division - Lobby"; + network = list("ss13","rd") + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"caC" = ( +/obj/structure/table, +/obj/machinery/recharger{ + pixel_y = 4 + }, +/obj/machinery/light_switch{ + pixel_x = -27; + pixel_y = 6 + }, +/obj/machinery/newscaster/security_unit{ + pixel_y = 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/science/research) +"caD" = ( +/obj/structure/table, +/obj/machinery/requests_console{ + department = "Security"; + departmentType = 5; + pixel_y = 30 + }, +/obj/machinery/button/door{ + id = "Biohazard"; + name = "Biohazard Shutter Control"; + pixel_x = -7; + req_access_txt = "47" + }, +/obj/machinery/button/door{ + desc = "A remote control switch for the research division entryway."; + id = "ResearchExt"; + name = "Research Exterior Airlock"; + normaldoorcontrol = 1; + pixel_x = 7; + pixel_y = 7 + }, +/obj/machinery/button/door{ + desc = "A remote control switch for the research division entryway."; + id = "ResearchInt"; + name = "Research Interior Airlock"; + normaldoorcontrol = 1; + pixel_x = 7; + pixel_y = -2 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/science/research) +"caE" = ( +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = 1; + pixel_y = 9 + }, +/obj/item/pen, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 24 + }, +/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/science/research) +"caG" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -24 + }, +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"caH" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"caT" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance{ + name = "Hydroponics Maintenance"; + req_access_txt = "35" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"caU" = ( +/obj/structure/disposalpipe/sorting/mail{ + sortType = 21 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"caW" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"caX" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/light_switch{ + pixel_y = 25 + }, +/turf/closed/wall, +/area/maintenance/disposal/incinerator) +"caY" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"caZ" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/obj/structure/sign/warning/deathsposal{ + pixel_y = 32 + }, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"cba" = ( +/obj/machinery/power/smes{ + capacity = 9e+006; + charge = 10000 + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"cbp" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cbq" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/port/aft) +"cbr" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cbs" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cbt" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cbu" = ( +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/aft) +"cbv" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/structure/light_construct{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cbw" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/port/aft) +"cbx" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cby" = ( +/obj/machinery/mecha_part_fabricator{ + name = "counterfeit exosuit fabricator"; + req_access = null + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cbz" = ( +/obj/structure/rack, +/obj/item/stack/sheet/cardboard, +/obj/item/radio/off, +/obj/structure/light_construct{ + dir = 1 + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cbA" = ( +/obj/structure/closet, +/obj/item/stack/sheet/metal{ + amount = 34 + }, +/obj/item/extinguisher/mini, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cbB" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/sorting/mail{ + dir = 1; + sortType = 9 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cbC" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cbD" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance{ + req_one_access_txt = "12;5" + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cbE" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/item/hand_labeler_refill, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cbF" = ( +/obj/item/reagent_containers/glass/bottle/morphine, +/obj/item/trash/candy, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/item/clothing/neck/stethoscope, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/port/aft) +"cbG" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cbH" = ( +/obj/item/tank/internals/air, +/obj/item/tank/internals/air, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cbI" = ( +/obj/machinery/door/airlock{ + name = "Medbay Emergency Storage"; + req_access_txt = "5" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cbJ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/storage) +"cbK" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/white, +/area/medical/storage) +"cbL" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/white, +/area/medical/storage) +"cbM" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/white, +/area/medical/storage) +"cbN" = ( +/obj/machinery/holopad, +/obj/effect/landmark/start/medical_doctor, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel/white, +/area/medical/storage) +"cbO" = ( +/obj/machinery/camera{ + c_tag = "Medbay Storage"; + dir = 8; + network = list("ss13","medbay") + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/storage) +"cbP" = ( +/obj/machinery/requests_console{ + department = "Medbay"; + departmentType = 1; + name = "Medbay RC" + }, +/turf/closed/wall, +/area/security/checkpoint/medical) +"cbQ" = ( +/obj/machinery/computer/secure_data{ + dir = 4 + }, +/obj/machinery/computer/security/telescreen{ + desc = "Used for monitoring medbay to ensure patient safety."; + dir = 1; + name = "Medbay Monitor"; + network = list("medbay"); + pixel_y = -29 + }, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_x = -27; + pixel_y = -10 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/medical) +"cbR" = ( +/obj/structure/chair/office/dark, +/obj/machinery/button/door{ + desc = "A remote control switch for the medbay foyer."; + id = "MedbayFoyer"; + name = "Medbay Doors Control"; + normaldoorcontrol = 1; + pixel_x = 24; + pixel_y = -24 + }, +/obj/effect/landmark/start/depsec/medical, +/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) +"cbS" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/security/checkpoint/medical) +"cbT" = ( +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cbU" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cbV" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cbW" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/machinery/holopad, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cbX" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cbY" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cbZ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cca" = ( +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"ccb" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/white/side{ + dir = 8 + }, +/area/medical/medbay/central) +"ccc" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/white/side{ + dir = 4 + }, +/area/science/research) +"ccd" = ( +/turf/open/floor/plasteel/white, +/area/science/research) +"cce" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"ccf" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"ccg" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"cch" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/obj/machinery/holopad, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white, +/area/science/research) +"cci" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"ccj" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"cck" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/security/checkpoint/science/research) +"ccl" = ( +/obj/item/screwdriver{ + pixel_y = 10 + }, +/obj/item/radio/off, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/science/research) +"ccm" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/structure/chair/office/dark{ + dir = 1 + }, +/obj/effect/landmark/start/depsec/science, +/turf/open/floor/plasteel, +/area/security/checkpoint/science/research) +"ccn" = ( +/obj/machinery/computer/secure_data{ + dir = 8 + }, +/obj/item/book/manual/wiki/security_space_law, +/obj/machinery/computer/security/telescreen{ + desc = "Used for watching the RD's goons from the safety of his office."; + dir = 8; + name = "Research Monitor"; + network = list("rd"); + pixel_x = 28; + pixel_y = 2 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/science/research) +"ccq" = ( +/obj/structure/table, +/obj/item/book/manual/hydroponics_pod_people, +/obj/machinery/light, +/obj/item/paper/guides/jobs/hydroponics, +/obj/machinery/camera{ + c_tag = "Hydroponics - Foyer"; + dir = 1 + }, +/obj/item/radio/intercom{ + pixel_y = -25 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/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) +"ccr" = ( +/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/hallway/primary/central) +"ccD" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"ccE" = ( +/obj/machinery/atmospherics/components/unary/tank/toxins{ + dir = 4 + }, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"ccF" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 4; + name = "plasma tank pump" + }, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"ccG" = ( +/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/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"ccH" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/pen, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"ccI" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"ccJ" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"ccK" = ( +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/power/terminal{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/dark/visible{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"ccU" = ( +/obj/structure/table/wood/poker, +/obj/item/toy/cards/deck{ + pixel_y = 4 + }, +/turf/open/floor/wood, +/area/service/bar) +"cdb" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cdc" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cdd" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/girder, +/obj/structure/grille, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cde" = ( +/obj/machinery/door/airlock/maintenance/abandoned{ + name = "Storage Room"; + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cdf" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cdg" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cdh" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cdi" = ( +/obj/structure/closet, +/obj/item/stack/sheet/glass{ + amount = 12 + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cdj" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cdk" = ( +/obj/item/trash/semki, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cdl" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cdm" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating, +/area/maintenance/aft) +"cdn" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/canister/air, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cdo" = ( +/obj/effect/landmark/xeno_spawn, +/obj/structure/closet/firecloset, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cdp" = ( +/obj/machinery/light_switch{ + pixel_x = -26 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/closet/l3closet, +/obj/machinery/power/apc{ + areastring = "/area/medical/storage"; + name = "Medbay Storage APC"; + pixel_y = -24 + }, +/obj/structure/cable/yellow, +/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/white, +/area/medical/storage) +"cdq" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/structure/closet/l3closet, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/storage) +"cdr" = ( +/obj/item/storage/box/bodybags{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/box/beakers{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/storage/box/rxglasses{ + pixel_x = 1; + pixel_y = 1 + }, +/obj/item/reagent_containers/spray/cleaner, +/obj/structure/table/glass, +/obj/item/clothing/glasses/hud/health, +/obj/item/clothing/glasses/hud/health, +/obj/item/clothing/glasses/hud/health, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/item/gun/syringe/dart, +/turf/open/floor/plasteel/white, +/area/medical/storage) +"cds" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/white, +/area/medical/storage) +"cdt" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/white, +/area/medical/storage) +"cdu" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/storage) +"cdv" = ( +/obj/machinery/rnd/production/techfab/department/medical, +/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/storage) +"cdw" = ( +/turf/closed/wall, +/area/medical/medbay/central) +"cdx" = ( +/obj/machinery/computer/crew, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/medical/medbay/central) +"cdy" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/shower{ + dir = 4; + name = "emergency shower" + }, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -22 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cdz" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cdA" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cdB" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/mob/living/simple_animal/bot/medbot{ + auto_patrol = 1; + desc = "A little medical robot, officially part of the Nanotrasen medical inspectorate. He looks somewhat underwhelmed."; + name = "Inspector Johnson" + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cdC" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cdD" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cdE" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cdF" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white/side{ + dir = 8 + }, +/area/medical/medbay/central) +"cdG" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cdH" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cdI" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cdJ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"cdK" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"cdL" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"cdM" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"cdN" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"cdO" = ( +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"cdP" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/security/checkpoint/science/research) +"cdQ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "2-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/research) +"cdR" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/science/research) +"cdS" = ( +/obj/structure/reagent_dispensers/peppertank{ + pixel_x = 30 + }, +/obj/structure/chair{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Security Post - Research Division"; + dir = 8; + network = list("ss13","rd") + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/science/research) +"cdU" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Hydroponics Maintenance"; + req_access_txt = "35" + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cdV" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/starboard) +"cdW" = ( +/obj/item/flashlight, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"cdX" = ( +/obj/structure/closet/crate, +/obj/item/coin/silver, +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/maintenance/starboard) +"cdY" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/item/storage/box/lights/mixed, +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/maintenance/starboard) +"cdZ" = ( +/obj/structure/sign/warning/nosmoking{ + pixel_x = -28 + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4; + name = "input gas connector port" + }, +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"cea" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 4; + name = "input port pump" + }, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"ceb" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 4 + }, +/obj/machinery/meter, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"cec" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"ced" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"cee" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"cef" = ( +/obj/structure/sign/warning/fire{ + pixel_x = 32 + }, +/obj/machinery/atmospherics/components/binary/pump{ + name = "Fuel Pipe to Incinerator" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"cem" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cen" = ( +/obj/structure/girder, +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"ceo" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cep" = ( +/obj/structure/rack, +/obj/item/screwdriver{ + pixel_y = 16 + }, +/obj/item/hand_labeler, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"ceq" = ( +/obj/structure/rack, +/obj/item/stack/cable_coil{ + pixel_x = -1; + pixel_y = -3 + }, +/obj/item/wrench, +/obj/item/flashlight/seclite, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cer" = ( +/obj/structure/rack, +/obj/item/stack/rods{ + amount = 23 + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"ceu" = ( +/obj/structure/grille, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cew" = ( +/obj/item/storage/firstaid/regular{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/storage/firstaid/fire{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/firstaid/fire, +/obj/item/storage/firstaid/fire{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/structure/table/glass, +/obj/machinery/door/window/eastleft{ + name = "First-Aid Supplies"; + req_access_txt = "5" + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/storage) +"cex" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/white, +/area/medical/storage) +"cey" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/landmark/start/paramedic, +/turf/open/floor/plasteel/white, +/area/medical/storage) +"cez" = ( +/obj/item/storage/firstaid/regular{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/storage/firstaid/toxin{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/firstaid/toxin, +/obj/item/storage/firstaid/toxin{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/structure/table/glass, +/obj/machinery/door/window/westleft{ + name = "First-Aid Supplies"; + req_access_txt = "5" + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/storage) +"ceA" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -26; + pixel_y = 28 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/newscaster{ + pixel_x = -30 + }, +/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) +"ceB" = ( +/obj/structure/chair/office/light{ + dir = 4 + }, +/obj/effect/landmark/start/medical_doctor, +/obj/machinery/button/door{ + desc = "A remote control switch for the medbay foyer."; + id = "MedbayFoyer"; + name = "Medbay Doors Control"; + normaldoorcontrol = 1; + pixel_x = 24; + pixel_y = 24 + }, +/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) +"ceC" = ( +/obj/machinery/telecomms/server/presets/command, +/turf/open/floor/circuit/telecomms/mainframe, +/area/tcommsat/server) +"ceD" = ( +/obj/structure/cable/yellow{ + 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/medbay/central) +"ceE" = ( +/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/medbay/central) +"ceF" = ( +/obj/structure/bed/roller, +/obj/item/radio/intercom{ + frequency = 1485; + name = "Station Intercom (Medbay)"; + pixel_y = -30 + }, +/obj/machinery/camera{ + c_tag = "Medbay Foyer"; + 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) +"ceG" = ( +/obj/machinery/light, +/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) +"ceH" = ( +/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) +"ceI" = ( +/obj/item/kirbyplants{ + icon_state = "plant-11" + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"ceJ" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"ceK" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_x = 26; + pixel_y = -26 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"ceL" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"ceN" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/item/stock_parts/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"ceO" = ( +/obj/structure/table, +/obj/item/stock_parts/cell/potato, +/obj/machinery/light, +/obj/machinery/newscaster{ + pixel_x = -1; + pixel_y = -29 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"ceQ" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"ceR" = ( +/obj/structure/disposalpipe/junction/flip{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"ceS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -30 + }, +/obj/item/kirbyplants{ + icon_state = "plant-08" + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"ceT" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"ceU" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"ceV" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/science/research) +"ceW" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/science/research) +"ceX" = ( +/obj/item/radio/intercom{ + dir = 4; + name = "Station Intercom (General)"; + pixel_x = 27 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/science/research) +"ceY" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"ceZ" = ( +/obj/structure/cable/yellow{ + 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/starboard/aft) +"cfa" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg2" + }, +/area/maintenance/starboard/aft) +"cfb" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cfc" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cfd" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/starboard/aft) +"cff" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/starboard/aft) +"cfg" = ( +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cfh" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cfi" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"cfj" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/starboard) +"cfk" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"cfl" = ( +/obj/machinery/door/airlock/maintenance/abandoned{ + name = "Storage Room"; + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"cfm" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"cfn" = ( +/obj/machinery/portable_atmospherics/canister, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4; + name = "input gas connector port" + }, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"cfo" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/general/visible, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"cfp" = ( +/obj/effect/landmark/xeno_spawn, +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"cfq" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"cfr" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 4; + name = "input port pump" + }, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"cfs" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 4 + }, +/obj/machinery/meter, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"cft" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/disposal/incinerator) +"cfu" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/green/visible, +/turf/open/space, +/area/space/nearstation) +"cfv" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow, +/obj/machinery/door/poddoor/preopen{ + id = "hosprivacy"; + name = "privacy shutters" + }, +/turf/open/floor/plating, +/area/command/heads_quarters/hos) +"cfw" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/manifold/yellow/visible{ + dir = 8 + }, +/turf/open/space, +/area/space/nearstation) +"cfx" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 9 + }, +/turf/open/space, +/area/space/nearstation) +"cfy" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/turf/open/space, +/area/space/nearstation) +"cfA" = ( +/obj/machinery/door/airlock/external, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"cfC" = ( +/obj/item/trash/pistachios, +/obj/structure/closet, +/obj/item/stack/sheet/glass, +/obj/item/extinguisher, +/obj/item/storage/belt/utility, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cfD" = ( +/obj/item/storage/box, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cfE" = ( +/obj/structure/closet/crate, +/obj/item/reagent_containers/dropper, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cfF" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cfL" = ( +/obj/item/storage/firstaid/regular{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/storage/firstaid/brute{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/firstaid/brute, +/obj/item/storage/firstaid/brute{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/machinery/light_switch{ + pixel_x = -26 + }, +/obj/machinery/light/small, +/obj/structure/table/glass, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + 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/white, +/area/medical/storage) +"cfM" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/storage) +"cfN" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/mob/living/simple_animal/bot/cleanbot{ + name = "Scrubs, MD"; + on = 0 + }, +/turf/open/floor/plasteel/white, +/area/medical/storage) +"cfO" = ( +/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/storage) +"cfP" = ( +/obj/item/storage/firstaid/regular{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/storage/firstaid/o2{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/firstaid/o2, +/obj/item/storage/firstaid/o2{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/structure/table/glass, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/storage) +"cfQ" = ( +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/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 = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cfR" = ( +/obj/structure/chair/office/light{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/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) +"cfS" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/item/reagent_containers/food/drinks/britcup, +/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/white, +/area/medical/medbay/central) +"cfT" = ( +/obj/structure/cable/yellow{ + 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/medbay/central) +"cfU" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/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/medbay/central) +"cfV" = ( +/obj/structure/sign/directions/medical{ + pixel_y = -7 + }, +/turf/closed/wall, +/area/medical/chemistry) +"cfW" = ( +/obj/structure/sign/departments/chemistry, +/turf/closed/wall, +/area/medical/chemistry) +"cfX" = ( +/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) +"cfY" = ( +/obj/machinery/smartfridge/chemistry/preloaded, +/turf/closed/wall, +/area/medical/chemistry) +"cfZ" = ( +/obj/structure/table/reinforced, +/obj/item/folder/white{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/machinery/door/window/northleft{ + dir = 2; + name = "Chemistry Desk"; + req_access_txt = "5; 33" + }, +/obj/machinery/door/firedoor, +/obj/item/folder/white{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "chemistry_shutters"; + name = "chemistry shutters" + }, +/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) +"cga" = ( +/turf/closed/wall, +/area/medical/chemistry) +"cgb" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cgc" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cgd" = ( +/turf/closed/wall/r_wall, +/area/science/lab) +"cge" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "research_shutters"; + name = "research shutters" + }, +/turf/open/floor/plating, +/area/science/lab) +"cgf" = ( +/obj/structure/table/reinforced, +/obj/item/pen, +/obj/item/folder/white{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/item/folder/white{ + pixel_x = 4; + pixel_y = -3 + }, +/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"; + name = "research shutters" + }, +/turf/open/floor/plating, +/area/science/lab) +"cgg" = ( +/obj/structure/sign/directions/science{ + pixel_y = -8 + }, +/turf/closed/wall/r_wall, +/area/science/lab) +"cgh" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/poddoor/preopen{ + id = "Biohazard"; + name = "biohazard containment door" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/research) +"cgi" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/poddoor/preopen{ + id = "Biohazard"; + name = "biohazard containment door" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/research) +"cgk" = ( +/obj/structure/closet/secure_closet/security/science, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/science/research) +"cgl" = ( +/obj/structure/filingcabinet, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 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/research) +"cgm" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cgn" = ( +/obj/item/cigbutt, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/starboard/aft) +"cgo" = ( +/turf/closed/wall/r_wall, +/area/science/research) +"cgp" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Research Maintenance"; + req_access_txt = "47" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/science/research) +"cgq" = ( +/turf/closed/wall/r_wall, +/area/science/explab) +"cgs" = ( +/turf/open/floor/plating{ + icon_state = "platingdmg2" + }, +/area/maintenance/starboard/aft) +"cgu" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"cgv" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"cgw" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"cgx" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"cgy" = ( +/obj/machinery/telecomms/server/presets/service, +/turf/open/floor/circuit/telecomms/mainframe, +/area/tcommsat/server) +"cgz" = ( +/turf/closed/wall/r_wall, +/area/maintenance/disposal/incinerator) +"cgH" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/port) +"cgI" = ( +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cgJ" = ( +/obj/structure/cable/yellow{ + 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/aft) +"cgL" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cgM" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cgN" = ( +/obj/structure/cable/yellow{ + 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/aft) +"cgO" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Medbay Maintenance"; + req_access_txt = "5" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cgU" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical/glass{ + name = "Medbay Storage"; + req_access_txt = "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/storage) +"cgV" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/medical/storage) +"cgW" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/airlock/medical/glass{ + name = "Medbay Storage"; + req_access_txt = "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/storage) +"cgX" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/airlock/medical/glass{ + name = "Medbay Desk"; + req_access_txt = "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/medbay/central) +"cgY" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/medical/medbay/central) +"cgZ" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical/glass{ + id_tag = "MedbayFoyer"; + name = "Medbay"; + req_access_txt = "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 + }, +/obj/effect/mapping_helpers/airlock/unres, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cha" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical/glass{ + id_tag = "MedbayFoyer"; + name = "Medbay"; + req_access_txt = "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 + }, +/obj/effect/mapping_helpers/airlock/unres, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"chb" = ( +/obj/machinery/chem_heater, +/obj/machinery/light_switch{ + pixel_x = -23 + }, +/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) +"chc" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/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) +"chd" = ( +/obj/item/reagent_containers/glass/beaker/large, +/obj/item/reagent_containers/glass/beaker/large, +/obj/item/reagent_containers/glass/beaker{ + pixel_x = 8; + pixel_y = 2 + }, +/obj/item/reagent_containers/glass/beaker{ + pixel_x = 8; + pixel_y = 2 + }, +/obj/item/reagent_containers/dropper, +/obj/item/reagent_containers/dropper, +/obj/structure/table/glass, +/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) +"che" = ( +/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, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"chf" = ( +/obj/machinery/chem_dispenser{ + layer = 2.7 + }, +/obj/machinery/button/door{ + id = "chemistry_shutters"; + name = "chemistry shutters control"; + pixel_x = 24; + pixel_y = 24; + req_access_txt = "5; 33" + }, +/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) +"chg" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"chh" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"chi" = ( +/obj/structure/table, +/obj/item/crowbar, +/obj/item/wrench, +/obj/item/clothing/mask/gas, +/obj/item/multitool{ + pixel_x = 3 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/noticeboard{ + pixel_y = 31 + }, +/turf/open/floor/plasteel, +/area/science/lab) +"chj" = ( +/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/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/lab) +"chk" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/lab) +"chm" = ( +/obj/machinery/button/door{ + id = "research_shutters"; + name = "research shutters control"; + pixel_x = 28; + req_access_txt = "7" + }, +/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/lab) +"chn" = ( +/obj/machinery/telecomms/broadcaster/preset_right, +/turf/open/floor/circuit/telecomms/mainframe, +/area/tcommsat/server) +"cho" = ( +/obj/machinery/telecomms/server/presets/supply, +/turf/open/floor/circuit/telecomms/mainframe, +/area/tcommsat/server) +"chp" = ( +/turf/closed/wall/r_wall, +/area/security/checkpoint/science/research) +"chq" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + name = "Security Post - Research Division"; + req_access_txt = "63" + }, +/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/research) +"chr" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/maintenance{ + req_one_access_txt = "12;47" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"chs" = ( +/obj/item/paper, +/obj/structure/sign/map/left{ + desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; + icon_state = "map-left-MS"; + pixel_y = 32 + }, +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_x = -32 + }, +/obj/item/storage/box/donkpockets, +/obj/structure/table/glass, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/science/research) +"cht" = ( +/obj/structure/sign/map/right{ + desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; + icon_state = "map-right-MS"; + pixel_y = 32 + }, +/obj/structure/table/glass, +/obj/item/radio/off, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/science/research) +"chu" = ( +/obj/machinery/status_display/ai{ + pixel_y = 32 + }, +/obj/structure/chair/stool, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/science/research) +"chv" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/science/research) +"chx" = ( +/turf/open/floor/engine, +/area/science/explab) +"chy" = ( +/obj/structure/sign/warning/nosmoking{ + pixel_y = 32 + }, +/obj/machinery/camera{ + c_tag = "Experimentation Lab - Test Chamber"; + network = list("ss13","rd") + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/engine, +/area/science/explab) +"chA" = ( +/obj/item/radio/intercom{ + pixel_y = 25 + }, +/turf/open/floor/engine, +/area/science/explab) +"chB" = ( +/obj/machinery/space_heater, +/obj/effect/landmark/blobstart, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"chC" = ( +/obj/structure/closet/crate, +/obj/item/storage/belt/utility, +/obj/item/stack/cable_coil/random, +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"chD" = ( +/obj/structure/closet/crate{ + icon_state = "crateopen" + }, +/obj/item/cane, +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"chE" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"chF" = ( +/obj/structure/closet, +/obj/item/flashlight, +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"chG" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/item/storage/toolbox/emergency, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -29 + }, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"chH" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/item/extinguisher, +/obj/machinery/light/small, +/obj/structure/extinguisher_cabinet{ + pixel_y = -31 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"chI" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/components/binary/valve{ + name = "output gas to space" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"chJ" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = -31 + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"chK" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -26 + }, +/obj/machinery/camera{ + c_tag = "Storage Wing"; + dir = 1 + }, +/obj/machinery/light, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/construction/storage_wing) +"chZ" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cia" = ( +/turf/closed/wall, +/area/medical/surgery) +"cib" = ( +/obj/structure/closet/secure_closet/medical2, +/turf/open/floor/plasteel/white/corner, +/area/medical/surgery) +"cic" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel/white/side{ + dir = 1 + }, +/area/medical/surgery) +"cid" = ( +/obj/structure/curtain{ + icon_state = "closed" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"cil" = ( +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + 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) +"cim" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/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/white, +/area/medical/medbay/central) +"cin" = ( +/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/white, +/area/medical/medbay/central) +"cio" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/sign/warning/nosmoking{ + pixel_y = 28 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"ciq" = ( +/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/white, +/area/medical/medbay/central) +"cir" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cis" = ( +/obj/machinery/button/door{ + desc = "A remote control switch for the medbay foyer."; + id = "MedbayFoyer"; + name = "Medbay Exit Button"; + normaldoorcontrol = 1; + pixel_y = 26 + }, +/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) +"cit" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/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) +"ciu" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + 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) +"civ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical/glass{ + name = "Chemistry Lab"; + req_access_txt = "5; 33" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"ciw" = ( +/obj/structure/cable/yellow{ + 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 = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"cix" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"ciy" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"ciz" = ( +/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) +"ciA" = ( +/obj/machinery/chem_master, +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/noticeboard{ + desc = "A board for pinning important notices upon. Probably helpful for keeping track of requests."; + name = "requests board"; + pixel_x = 32 + }, +/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) +"ciB" = ( +/obj/machinery/rnd/destructive_analyzer, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/lab) +"ciC" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/lab) +"ciD" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/rnd/production/protolathe/department/science, +/turf/open/floor/plasteel, +/area/science/lab) +"ciE" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/lab) +"ciF" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel/white, +/area/science/lab) +"ciG" = ( +/obj/machinery/disposal/bin{ + pixel_x = 5 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 24 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/lab) +"ciH" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/obj/machinery/shower{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"ciI" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"ciK" = ( +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/research) +"ciL" = ( +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"ciM" = ( +/obj/effect/landmark/blobstart, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/item/cigbutt, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"ciN" = ( +/obj/structure/chair/stool, +/obj/machinery/newscaster{ + pixel_x = -30 + }, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/science/research) +"ciO" = ( +/obj/structure/chair/stool, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/science/research) +"ciP" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/science/research) +"ciQ" = ( +/obj/item/cigbutt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/science/research) +"ciR" = ( +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/obj/machinery/vending/cola/random, +/turf/open/floor/plasteel/white/side{ + dir = 4 + }, +/area/science/research) +"ciS" = ( +/obj/machinery/rnd/bepis, +/turf/open/floor/engine, +/area/science/explab) +"ciT" = ( +/obj/item/beacon, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/engine, +/area/science/explab) +"ciU" = ( +/obj/machinery/rnd/experimentor, +/turf/open/floor/engine, +/area/science/explab) +"ciV" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/engine, +/area/science/explab) +"ciW" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/engine, +/area/science/explab) +"ciX" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/starboard/aft) +"ciY" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/general/visible, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/disposal/incinerator) +"cja" = ( +/obj/effect/mapping_helpers/airlock/locked, +/obj/machinery/door/airlock/public/glass/incinerator/atmos_interior, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/machinery/embedded_controller/radio/airlock_controller/incinerator_atmos{ + pixel_x = 40; + pixel_y = 8 + }, +/turf/open/floor/engine, +/area/maintenance/disposal/incinerator) +"cjb" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible, +/turf/closed/wall/r_wall, +/area/maintenance/disposal/incinerator) +"cjp" = ( +/obj/machinery/vending/boozeomat, +/turf/open/floor/wood, +/area/maintenance/port/aft) +"cjq" = ( +/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/effect/spawner/lootdrop/keg, +/turf/open/floor/wood{ + icon_state = "wood-broken3" + }, +/area/maintenance/port/aft) +"cjr" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"cjs" = ( +/obj/item/reagent_containers/food/drinks/drinkingglass{ + pixel_x = 4; + pixel_y = 5 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass{ + pixel_x = 6; + pixel_y = -1 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass{ + pixel_x = -4; + pixel_y = 6 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass{ + pixel_x = -5; + pixel_y = 2 + }, +/obj/structure/table/wood, +/obj/structure/light_construct/small{ + dir = 1 + }, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass, +/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass, +/turf/open/floor/wood, +/area/maintenance/port/aft) +"cjt" = ( +/obj/structure/chair/stool, +/turf/open/floor/wood, +/area/maintenance/port/aft) +"cjv" = ( +/obj/machinery/computer/arcade, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cjw" = ( +/obj/structure/table, +/obj/item/storage/backpack/duffelbag/med/surgery{ + pixel_y = 5 + }, +/obj/machinery/light_switch{ + pixel_x = -26 + }, +/obj/machinery/vending/wallmed{ + pixel_y = 29 + }, +/turf/open/floor/plasteel/white/corner, +/area/medical/surgery) +"cjz" = ( +/obj/structure/closet/secure_closet/medical2, +/turf/open/floor/plasteel/white/corner{ + dir = 8 + }, +/area/medical/surgery) +"cjA" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/white/corner{ + dir = 4 + }, +/area/medical/surgery) +"cjB" = ( +/obj/machinery/iv_drip, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/machinery/firealarm{ + pixel_y = 28 + }, +/turf/open/floor/plasteel/white/side, +/area/medical/surgery) +"cjC" = ( +/obj/structure/table, +/obj/item/radio/intercom{ + broadcasting = 1; + frequency = 1485; + listening = 0; + name = "Station Intercom (Medbay)"; + pixel_y = 22 + }, +/obj/item/clothing/gloves/color/latex, +/obj/item/clothing/suit/apron/surgical, +/turf/open/floor/plasteel/white/side, +/area/medical/surgery) +"cjD" = ( +/obj/structure/table, +/obj/item/storage/backpack/duffelbag/med/surgery{ + pixel_y = 5 + }, +/obj/machinery/light_switch{ + pixel_x = 28 + }, +/obj/machinery/vending/wallmed{ + pixel_y = 29 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 8 + }, +/area/medical/surgery) +"cjK" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/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) +"cjL" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cjM" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cjN" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cjO" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cjP" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cjQ" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cjR" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/obj/machinery/shower{ + dir = 8; + name = "emergency shower" + }, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cjS" = ( +/obj/item/stack/sheet/mineral/plasma, +/obj/item/stack/sheet/mineral/plasma, +/obj/structure/table/glass, +/obj/item/reagent_containers/glass/bottle/epinephrine, +/obj/item/reagent_containers/glass/bottle/charcoal{ + pixel_x = 7; + pixel_y = 4 + }, +/obj/item/storage/pill_bottle/epinephrine{ + pixel_x = 3 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"cjT" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"cjU" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"cjV" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"cjW" = ( +/obj/item/assembly/timer{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/assembly/timer{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/assembly/igniter{ + pixel_x = 3; + pixel_y = -7 + }, +/obj/item/assembly/igniter{ + pixel_x = 3; + pixel_y = -7 + }, +/obj/item/assembly/igniter{ + pixel_x = 3; + pixel_y = -7 + }, +/obj/item/assembly/igniter{ + pixel_x = 3; + pixel_y = -7 + }, +/obj/item/assembly/timer{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/assembly/timer{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/structure/table/glass, +/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) +"cjX" = ( +/obj/machinery/computer/rdconsole/core{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/science/lab) +"cjY" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/science/lab) +"cjZ" = ( +/obj/item/reagent_containers/glass/beaker/sulphuric, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/rnd/production/circuit_imprinter/department/science, +/turf/open/floor/plasteel, +/area/science/lab) +"cka" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/lab) +"ckb" = ( +/obj/effect/landmark/start/scientist, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/lab) +"ckc" = ( +/obj/structure/table, +/obj/item/stock_parts/manipulator, +/obj/item/stock_parts/capacitor, +/obj/item/stock_parts/capacitor, +/obj/item/stock_parts/manipulator, +/obj/item/stock_parts/micro_laser, +/obj/item/stock_parts/micro_laser, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/item/clothing/glasses/science, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/lab) +"ckd" = ( +/obj/effect/spawner/structure/window, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/science/lab) +"cke" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"ckf" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"ckg" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"ckh" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/closet/firecloset, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/research) +"cki" = ( +/obj/item/storage/toolbox/emergency, +/obj/item/clothing/mask/gas, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"ckj" = ( +/obj/machinery/light/small, +/obj/item/stock_parts/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"ckk" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/item/flashlight, +/obj/effect/landmark/blobstart, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"ckl" = ( +/obj/item/stack/packageWrap, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"ckm" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -24 + }, +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/item/cigbutt, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/science/research) +"ckn" = ( +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/science/research) +"cko" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/science/research) +"ckp" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/science/research) +"ckq" = ( +/obj/machinery/vending/coffee, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_x = 29 + }, +/turf/open/floor/plasteel/white/side{ + dir = 4 + }, +/area/science/research) +"ckr" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/engine, +/area/science/explab) +"cks" = ( +/obj/machinery/button/door{ + id = "telelab"; + name = "Test Chamber Blast Doors"; + pixel_y = -25 + }, +/turf/open/floor/engine, +/area/science/explab) +"ckt" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/engine, +/area/science/explab) +"cku" = ( +/obj/structure/closet, +/obj/item/storage/box/donkpockets, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 3; + name = "3maintenance loot spawner" + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"ckv" = ( +/obj/structure/closet/crate, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/item/assembly/infra, +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"ckw" = ( +/obj/structure/table, +/obj/effect/decal/cleanable/cobweb, +/obj/item/shard, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"ckx" = ( +/obj/structure/table, +/obj/structure/sign/departments/medbay{ + pixel_y = 32 + }, +/obj/item/reagent_containers/glass/beaker/large, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cky" = ( +/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/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/blood/gibs/old, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"ckz" = ( +/obj/structure/table, +/obj/item/storage/toolbox/emergency, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"ckA" = ( +/obj/structure/table, +/obj/item/reagent_containers/food/drinks/drinkingglass{ + pixel_x = 4; + pixel_y = 5 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass{ + pixel_x = 6; + pixel_y = -1 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass{ + pixel_x = -4; + pixel_y = 6 + }, +/obj/item/reagent_containers/dropper, +/obj/item/reagent_containers/dropper, +/obj/item/reagent_containers/syringe, +/obj/item/reagent_containers/syringe, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"ckB" = ( +/obj/item/reagent_containers/glass/bottle/toxin{ + pixel_x = 4; + pixel_y = 2 + }, +/obj/structure/table, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/machinery/reagentgrinder{ + pixel_y = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"ckC" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/components/binary/pump/on{ + name = "Incinerator Output Pump" + }, +/obj/structure/disposalpipe/segment, +/turf/open/space, +/area/maintenance/disposal/incinerator) +"ckD" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/sign/warning/fire{ + pixel_x = -32 + }, +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 1 + }, +/obj/machinery/airlock_sensor/incinerator_atmos{ + pixel_x = -8; + pixel_y = 24 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/engine, +/area/maintenance/disposal/incinerator) +"ckE" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume/incinerator_atmos{ + dir = 8 + }, +/turf/open/floor/engine, +/area/maintenance/disposal/incinerator) +"ckF" = ( +/obj/structure/sign/warning/fire{ + pixel_x = 32 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/components/binary/pump/on, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/engine, +/area/maintenance/disposal/incinerator) +"ckN" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"ckO" = ( +/obj/structure/closet/secure_closet/bar{ + pixel_x = -3; + pixel_y = -1; + req_access_txt = "25" + }, +/turf/open/floor/wood, +/area/maintenance/port/aft) +"ckP" = ( +/turf/open/floor/wood, +/area/maintenance/port/aft) +"ckQ" = ( +/turf/open/floor/wood{ + icon_state = "wood-broken7" + }, +/area/maintenance/port/aft) +"ckR" = ( +/obj/item/reagent_containers/rag, +/obj/structure/table/wood, +/turf/open/floor/wood{ + icon_state = "wood-broken4" + }, +/area/maintenance/port/aft) +"ckS" = ( +/turf/open/floor/wood{ + icon_state = "wood-broken5" + }, +/area/maintenance/port/aft) +"ckU" = ( +/obj/machinery/computer/operating{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/white/side{ + dir = 4 + }, +/area/medical/surgery) +"ckX" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel/white/side{ + dir = 8 + }, +/area/medical/surgery) +"ckY" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel/white/side{ + dir = 1 + }, +/area/medical/surgery) +"ckZ" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel/white/side{ + dir = 4 + }, +/area/medical/surgery) +"cla" = ( +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"clb" = ( +/obj/effect/landmark/start/medical_doctor, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"clc" = ( +/obj/machinery/computer/operating{ + dir = 8 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/white/side{ + dir = 8 + }, +/area/medical/surgery) +"clj" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"clk" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cll" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"clm" = ( +/obj/item/radio/intercom{ + broadcasting = 1; + frequency = 1485; + listening = 0; + name = "Station Intercom (Medbay)"; + pixel_y = -30 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cln" = ( +/obj/effect/turf_decal/tile/blue, +/obj/vehicle/ridden/wheelchair{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"clo" = ( +/obj/structure/bed/roller, +/obj/machinery/iv_drip, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"clp" = ( +/obj/machinery/light, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"clq" = ( +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"clr" = ( +/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/medbay/central) +"cls" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/window/eastright{ + name = "Chemistry Desk"; + req_access_txt = "5; 33" + }, +/obj/machinery/door/window/eastright{ + dir = 8; + name = "Chemistry Desk"; + req_access_txt = "5" + }, +/obj/item/reagent_containers/glass/bottle/morphine, +/obj/item/reagent_containers/glass/bottle/toxin{ + pixel_x = 5; + pixel_y = 4 + }, +/obj/item/reagent_containers/glass/bottle/epinephrine{ + pixel_x = 8 + }, +/obj/item/reagent_containers/glass/bottle/charcoal{ + pixel_x = -5 + }, +/obj/item/reagent_containers/syringe/epinephrine, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"clt" = ( +/obj/structure/chair/office/light{ + dir = 8 + }, +/obj/effect/landmark/start/chemist, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"clu" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/landmark/start/chemist, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"clv" = ( +/obj/structure/chair/office/light{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"clw" = ( +/obj/structure/table/glass, +/obj/item/folder/white{ + pixel_y = 2 + }, +/obj/item/grenade/chem_grenade, +/obj/item/grenade/chem_grenade, +/obj/item/grenade/chem_grenade, +/obj/item/grenade/chem_grenade, +/obj/item/screwdriver{ + pixel_x = -2; + pixel_y = 6 + }, +/obj/item/radio/headset/headset_med, +/obj/structure/extinguisher_cabinet{ + pixel_x = 24 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/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) +"clx" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/extinguisher_cabinet{ + pixel_x = -27 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cly" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/camera{ + c_tag = "Aft Primary Hallway - Fore"; + dir = 8 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 24 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"clz" = ( +/obj/item/stack/sheet/glass/fifty{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/stack/sheet/metal/fifty, +/obj/item/clothing/glasses/welding, +/obj/structure/table, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/lab) +"clA" = ( +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/lab) +"clB" = ( +/obj/structure/chair/stool, +/turf/open/floor/plasteel/white, +/area/science/lab) +"clC" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/chair/stool, +/turf/open/floor/plasteel/white, +/area/science/lab) +"clD" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/lab) +"clE" = ( +/obj/structure/table, +/obj/item/stock_parts/matter_bin, +/obj/item/stock_parts/matter_bin, +/obj/item/stock_parts/scanning_module, +/obj/item/stock_parts/scanning_module, +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/sign/warning/nosmoking{ + pixel_x = 30 + }, +/turf/open/floor/plasteel, +/area/science/lab) +"clF" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/shower{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"clG" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel/white, +/area/science/research) +"clH" = ( +/obj/machinery/shower{ + dir = 8 + }, +/obj/item/radio/intercom{ + dir = 8; + name = "Station Intercom (General)"; + pixel_y = -28 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/white, +/area/science/research) +"clI" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 24 + }, +/obj/structure/closet/firecloset, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/research) +"clJ" = ( +/obj/structure/plasticflaps/opaque, +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=2"; + freq = 1400; + location = "Research Division" + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/maintenance/starboard/aft) +"clK" = ( +/turf/closed/wall/r_wall, +/area/maintenance/aft) +"clL" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/item/storage/box/lights/mixed, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"clN" = ( +/obj/machinery/microwave{ + pixel_x = -3; + pixel_y = 6 + }, +/obj/structure/table/glass, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/science/research) +"clO" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/science/research) +"clP" = ( +/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/cafeteria{ + dir = 5 + }, +/area/science/research) +"clQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/noticeboard{ + pixel_y = -32 + }, +/obj/machinery/light, +/obj/machinery/camera{ + c_tag = "Research Division - Break Room"; + dir = 1; + network = list("ss13","rd") + }, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/science/research) +"clR" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/plasteel/white/side{ + dir = 4 + }, +/area/science/research) +"clS" = ( +/obj/structure/sign/warning/electricshock, +/turf/closed/wall/r_wall, +/area/science/explab) +"clT" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "telelab"; + name = "test chamber blast door" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/science/explab) +"clU" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "telelab"; + name = "test chamber blast door" + }, +/turf/open/floor/plating, +/area/science/explab) +"clV" = ( +/obj/machinery/door/poddoor/preopen{ + id = "telelab"; + name = "test chamber blast door" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/engine, +/area/science/explab) +"clW" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"clX" = ( +/obj/machinery/door/airlock/maintenance/abandoned{ + name = "Storage Room"; + req_one_access_txt = "12;47" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"clY" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"clZ" = ( +/obj/effect/landmark/xeno_spawn, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/blood/gibs/old, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cma" = ( +/obj/structure/rack, +/obj/item/clothing/suit/apron, +/obj/item/clothing/mask/surgical, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cmb" = ( +/obj/machinery/chem_master{ + pixel_x = -4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cmc" = ( +/obj/structure/lattice, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/general/visible, +/turf/open/space, +/area/space/nearstation) +"cmd" = ( +/obj/effect/mapping_helpers/airlock/locked, +/obj/machinery/door/airlock/public/glass/incinerator/atmos_exterior, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/engine, +/area/maintenance/disposal/incinerator) +"cmg" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/drinks/shaker, +/obj/item/reagent_containers/glass/beaker/cryoxadone, +/obj/item/reagent_containers/glass/beaker{ + pixel_x = 8; + pixel_y = 2 + }, +/obj/item/reagent_containers/dropper, +/turf/open/floor/wood, +/area/maintenance/port/aft) +"cmh" = ( +/obj/item/reagent_containers/food/drinks/ale, +/obj/structure/table/wood, +/turf/open/floor/wood, +/area/maintenance/port/aft) +"cmi" = ( +/obj/structure/light_construct/small{ + dir = 4 + }, +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_x = 30 + }, +/turf/open/floor/wood, +/area/maintenance/port/aft) +"cmk" = ( +/obj/structure/table/optable, +/turf/open/floor/plasteel/white/corner{ + dir = 4 + }, +/area/medical/surgery) +"cml" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plasteel/white/side{ + dir = 1 + }, +/area/medical/surgery) +"cmm" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/medical/surgery) +"cmn" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/plasteel/white/side{ + dir = 1 + }, +/area/medical/surgery) +"cmr" = ( +/obj/machinery/door/firedoor, +/obj/structure/extinguisher_cabinet{ + pixel_x = -27 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cms" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cmt" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cmy" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Medbay Maintenance"; + req_access_txt = "5" + }, +/turf/open/floor/plating, +/area/medical/medbay/central) +"cmz" = ( +/obj/machinery/reagentgrinder, +/obj/machinery/requests_console{ + department = "Chemistry"; + departmentType = 2; + pixel_x = -30; + receive_ore_updates = 1 + }, +/obj/structure/table/glass, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"cmA" = ( +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/machinery/holopad, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"cmB" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"cmC" = ( +/obj/item/stack/packageWrap, +/obj/item/stack/packageWrap, +/obj/item/stack/packageWrap, +/obj/item/stack/packageWrap, +/obj/item/stack/packageWrap, +/obj/item/hand_labeler, +/obj/structure/table/glass, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"cmD" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/sign/departments/chemistry{ + pixel_x = -32 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cmE" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/sign/departments/science{ + pixel_x = 32 + }, +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cmF" = ( +/obj/item/radio/intercom{ + dir = 8; + name = "Station Intercom (General)"; + pixel_x = -28 + }, +/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/white, +/area/science/lab) +"cmG" = ( +/obj/item/paper_bin{ + pixel_x = -2; + pixel_y = 6 + }, +/obj/structure/table, +/turf/open/floor/plasteel/white, +/area/science/lab) +"cmH" = ( +/obj/structure/table, +/obj/structure/disposalpipe/segment, +/obj/item/folder/white{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/item/disk/tech_disk, +/obj/item/disk/tech_disk, +/obj/item/disk/design_disk, +/obj/item/disk/design_disk, +/turf/open/floor/plasteel/white, +/area/science/lab) +"cmI" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/white, +/area/science/lab) +"cmJ" = ( +/obj/machinery/camera{ + c_tag = "Research and Development"; + dir = 8; + network = list("ss13","rd") + }, +/obj/machinery/light_switch{ + pixel_x = 27 + }, +/obj/structure/table, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil, +/obj/item/stock_parts/scanning_module{ + pixel_x = 2; + pixel_y = 3 + }, +/obj/item/stock_parts/scanning_module, +/turf/open/floor/plasteel, +/area/science/lab) +"cmL" = ( +/obj/machinery/door/window/westleft{ + dir = 2; + name = "Research Division Deliveries"; + req_access_txt = "47" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/research) +"cmM" = ( +/obj/machinery/door/airlock{ + name = "Research Emergency Storage"; + req_one_access_txt = "47" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cmN" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/medical{ + name = "Research Break Room"; + req_one_access_txt = "47" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/science/research) +"cmO" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/window/reinforced/tinted/fulltile, +/turf/open/floor/plating, +/area/science/research) +"cmP" = ( +/turf/closed/wall, +/area/science/explab) +"cmQ" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -27 + }, +/obj/machinery/requests_console{ + department = "Science"; + departmentType = 2; + name = "Science Requests Console"; + pixel_y = 30; + receive_ore_updates = 1 + }, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/science/explab) +"cmR" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin{ + pixel_x = -2; + pixel_y = 6 + }, +/obj/item/pen, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/science/explab) +"cmS" = ( +/obj/structure/table/reinforced, +/obj/item/hand_labeler, +/obj/item/stack/packageWrap, +/obj/item/stack/packageWrap, +/obj/item/stack/packageWrap, +/obj/item/taperecorder, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/science/explab) +"cmT" = ( +/obj/machinery/computer/rdconsole/experiment, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/science/explab) +"cmU" = ( +/obj/structure/table/reinforced, +/obj/item/clipboard, +/obj/item/book/manual/wiki/experimentor, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/science/explab) +"cmV" = ( +/obj/machinery/button/door{ + id = "telelab"; + name = "Test Chamber Blast Doors"; + pixel_y = 25 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/obj/structure/table/reinforced, +/obj/item/reagent_containers/glass/bottle/epinephrine{ + pixel_x = 7; + pixel_y = 2 + }, +/obj/item/reagent_containers/glass/bottle/charcoal{ + pixel_x = -2; + pixel_y = -1 + }, +/obj/item/reagent_containers/dropper, +/obj/item/stack/medical/suture{ + pixel_x = -2; + pixel_y = 6 + }, +/obj/item/stack/medical/mesh, +/obj/item/healthanalyzer, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/science/explab) +"cmW" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/science/explab) +"cmY" = ( +/obj/structure/closet/crate{ + icon_state = "crateopen" + }, +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cmZ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cna" = ( +/obj/structure/rack, +/obj/item/clothing/under/color/white, +/obj/item/clothing/head/soft/mime, +/obj/item/clothing/under/color/white, +/obj/item/clothing/head/soft/mime, +/obj/item/clothing/mask/surgical, +/obj/item/clothing/mask/surgical, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cnb" = ( +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/starboard/aft) +"cnc" = ( +/obj/machinery/chem_heater, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cnd" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/incinerator_output{ + dir = 1 + }, +/turf/open/floor/engine/vacuum, +/area/maintenance/disposal/incinerator) +"cne" = ( +/obj/machinery/igniter/incinerator_atmos, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/air_sensor/atmos/incinerator_tank{ + pixel_x = -32; + pixel_y = -32 + }, +/turf/open/floor/engine/vacuum, +/area/maintenance/disposal/incinerator) +"cnf" = ( +/obj/structure/sign/warning/vacuum/external{ + pixel_y = -32 + }, +/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/incinerator_input{ + dir = 1 + }, +/turf/open/floor/engine/vacuum, +/area/maintenance/disposal/incinerator) +"cng" = ( +/obj/machinery/door/poddoor/incinerator_atmos_aux, +/turf/open/floor/engine/vacuum, +/area/maintenance/disposal/incinerator) +"cnh" = ( +/obj/item/flashlight/lamp, +/obj/structure/table/wood, +/turf/open/floor/wood, +/area/maintenance/port/aft) +"cni" = ( +/obj/item/reagent_containers/food/drinks/bottle/tequila, +/obj/structure/table/wood, +/turf/open/floor/wood, +/area/maintenance/port/aft) +"cnj" = ( +/obj/item/reagent_containers/food/drinks/beer, +/obj/structure/table/wood, +/turf/open/floor/wood, +/area/maintenance/port/aft) +"cnk" = ( +/turf/open/floor/wood{ + icon_state = "wood-broken" + }, +/area/maintenance/port/aft) +"cnl" = ( +/obj/structure/mineral_door/wood{ + name = "The Gobbetting Barmaid" + }, +/turf/open/floor/wood, +/area/maintenance/port/aft) +"cnm" = ( +/obj/structure/sign/poster/official/cleanliness, +/turf/closed/wall, +/area/medical/surgery) +"cnp" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical/glass{ + name = "Operating Theatre"; + req_access_txt = "45" + }, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"cnq" = ( +/obj/machinery/smartfridge/organ/preloaded, +/turf/closed/wall, +/area/medical/surgery) +"cnr" = ( +/obj/effect/spawner/structure/window, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/medical/surgery) +"cnt" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/medical/surgery) +"cnv" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/closet/secure_closet/medical1{ + pixel_x = -3 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/cryo) +"cnw" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/medical/cryo) +"cnx" = ( +/obj/machinery/atmospherics/components/unary/cryo_cell, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/medical/cryo) +"cny" = ( +/obj/machinery/atmospherics/components/unary/cryo_cell, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/medical/cryo) +"cnz" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/medical/cryo) +"cnA" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cnB" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/extinguisher_cabinet{ + pixel_x = 27 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cnH" = ( +/obj/item/clothing/glasses/science{ + pixel_x = 2; + pixel_y = 4 + }, +/obj/item/clothing/glasses/science, +/obj/item/radio/intercom{ + dir = 8; + name = "Station Intercom (General)"; + pixel_x = -28 + }, +/obj/structure/table/glass, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil, +/obj/machinery/camera{ + c_tag = "Chemistry"; + dir = 4; + network = list("ss13","medbay") + }, +/obj/machinery/light{ + dir = 8 + }, +/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) +"cnI" = ( +/obj/structure/disposalpipe/junction/flip{ + dir = 2 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"cnJ" = ( +/obj/machinery/disposal/bin{ + pixel_x = 5 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"cnK" = ( +/obj/machinery/chem_dispenser{ + layer = 2.7 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"cnL" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "chemistry_shutters_2"; + name = "chemistry shutters" + }, +/turf/open/floor/plating, +/area/medical/chemistry) +"cnM" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin{ + pixel_x = -2; + pixel_y = 6 + }, +/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, +/area/hallway/primary/aft) +"cnN" = ( +/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, +/area/hallway/primary/aft) +"cnO" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cnP" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cnQ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/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, +/area/hallway/primary/aft) +"cnR" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "research_shutters_2"; + name = "research shutters" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/science/lab) +"cnS" = ( +/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/science/lab) +"cnT" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/chair/stool, +/turf/open/floor/plasteel/white, +/area/science/lab) +"cnU" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/chair/stool, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/lab) +"cnV" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/lab) +"cnW" = ( +/obj/structure/table, +/obj/item/stack/sheet/glass, +/obj/item/stack/sheet/glass, +/obj/item/stack/sheet/glass, +/obj/item/stock_parts/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/science/lab) +"cnX" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/science/lab) +"cnY" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/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/research) +"cnZ" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/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/white, +/area/science/research) +"coa" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"cob" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/sign/warning/nosmoking{ + pixel_y = 32 + }, +/obj/machinery/camera{ + c_tag = "Research Division Hallway - Central"; + network = list("ss13","rd") + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"coc" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"cod" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = 29 + }, +/turf/open/floor/plasteel/white/side{ + dir = 10 + }, +/area/science/research) +"coe" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/white/side, +/area/science/research) +"cof" = ( +/turf/open/floor/plasteel/white/side{ + dir = 6 + }, +/area/science/research) +"cog" = ( +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = 20 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"coh" = ( +/obj/structure/disposalpipe/segment, +/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/research) +"coi" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"coj" = ( +/obj/item/kirbyplants{ + icon_state = "plant-10" + }, +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/plasteel/white, +/area/science/research) +"cok" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -26 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/explab) +"col" = ( +/obj/structure/chair/office/light{ + dir = 4 + }, +/mob/living/simple_animal/pet/dog/pug{ + desc = "It's Pugley IV, the research department's lovable pug clone. Hopefully nothing happens to this one - fourth time lucky!"; + name = "Pugley IV"; + real_name = "Pugley IV" + }, +/turf/open/floor/plasteel/white, +/area/science/explab) +"com" = ( +/obj/structure/table/reinforced, +/obj/item/folder/white{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/item/folder/white{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/item/stack/sheet/mineral/plasma{ + pixel_y = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/explab) +"con" = ( +/obj/effect/landmark/start/scientist, +/obj/structure/chair/office/light{ + dir = 1; + pixel_y = 3 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/explab) +"coo" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/table/reinforced, +/obj/item/wrench, +/obj/item/crowbar, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/obj/item/clothing/glasses/science, +/obj/item/multitool{ + pixel_x = 3 + }, +/turf/open/floor/plasteel/white, +/area/science/explab) +"cop" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/holopad, +/turf/open/floor/plasteel/white, +/area/science/explab) +"coq" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 27 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/explab) +"cor" = ( +/obj/structure/girder, +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cos" = ( +/obj/structure/table, +/obj/item/paper_bin{ + pixel_y = 6 + }, +/obj/item/pen, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cot" = ( +/obj/structure/table, +/obj/item/folder/white{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/item/reagent_containers/blood/random, +/obj/item/reagent_containers/blood/random, +/obj/item/reagent_containers/blood{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/reagent_containers/blood{ + pixel_x = -3; + pixel_y = -3 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cou" = ( +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cov" = ( +/obj/structure/bed, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cow" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/rnd/production/techfab/department/service, +/turf/open/floor/plasteel, +/area/hallway/secondary/service) +"cox" = ( +/obj/structure/mineral_door/wood{ + name = "The Gobbetting Barmaid" + }, +/turf/open/floor/wood{ + icon_state = "wood-broken6" + }, +/area/maintenance/port/aft) +"coy" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/turf/open/floor/plasteel/dark, +/area/medical/surgery) +"coz" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/decal/cleanable/vomit/old{ + pixel_x = -2; + pixel_y = 7 + }, +/turf/open/floor/plasteel/dark, +/area/medical/surgery) +"coA" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/medical/surgery) +"coB" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/medical/surgery) +"coC" = ( +/obj/effect/landmark/start/medical_doctor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/medical/surgery) +"coD" = ( +/obj/item/cigbutt{ + pixel_x = -8; + pixel_y = 12 + }, +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel/dark, +/area/medical/surgery) +"coE" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/medical/surgery) +"coF" = ( +/obj/item/trash/popcorn{ + pixel_x = -5; + pixel_y = -4 + }, +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 24 + }, +/turf/open/floor/plasteel/dark, +/area/medical/surgery) +"coG" = ( +/obj/structure/table/optable, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/medical/surgery) +"coH" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/white, +/area/medical/cryo) +"coI" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/cryo) +"coJ" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/cryo) +"coK" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible, +/obj/effect/landmark/start/medical_doctor, +/turf/open/floor/plasteel, +/area/medical/cryo) +"coL" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 9 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/medical/cryo) +"coM" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/medical/cryo) +"coN" = ( +/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) +"coT" = ( +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/machinery/vending/wardrobe/chem_wardrobe, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"coU" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"coV" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"coW" = ( +/obj/structure/chair/office/light{ + dir = 4 + }, +/obj/effect/landmark/start/chemist, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"coX" = ( +/obj/structure/table/reinforced, +/obj/item/folder/white{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/window/eastright{ + dir = 8; + name = "Chemistry Desk"; + req_access_txt = "5; 33" + }, +/obj/item/folder/white{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/item/pen, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "chemistry_shutters_2"; + name = "chemistry shutters" + }, +/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) +"coY" = ( +/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, +/area/hallway/primary/aft) +"coZ" = ( +/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, +/area/hallway/primary/aft) +"cpa" = ( +/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, +/area/hallway/primary/aft) +"cpb" = ( +/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, +/area/hallway/primary/aft) +"cpc" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/eastright{ + name = "Research and Development Desk"; + req_one_access_txt = "7;29" + }, +/obj/item/folder/white{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/item/folder/white{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/machinery/door/firedoor, +/obj/item/pen, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "research_shutters_2"; + name = "research shutters" + }, +/turf/open/floor/plating, +/area/science/lab) +"cpd" = ( +/obj/effect/landmark/start/scientist, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/lab) +"cpe" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/white, +/area/science/lab) +"cpf" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel/white, +/area/science/lab) +"cpg" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/lab) +"cph" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/lab) +"cpj" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"cpk" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"cpl" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white, +/area/science/research) +"cpm" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"cpn" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/white, +/area/science/research) +"cpo" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"cpp" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"cpq" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/structure/disposalpipe/junction/flip{ + dir = 2 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel/white, +/area/science/research) +"cpr" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"cpt" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/white, +/area/science/research) +"cpu" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel/white, +/area/science/research) +"cpv" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"cpw" = ( +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/junction/flip{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"cpx" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/research{ + name = "Experimentation Lab"; + req_access_txt = "8" + }, +/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/white, +/area/science/explab) +"cpy" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/junction{ + 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/explab) +"cpz" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/explab) +"cpA" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/explab) +"cpB" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/explab) +"cpC" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/explab) +"cpD" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/explab) +"cpE" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/explab) +"cpF" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Experimentation Lab Maintenance"; + req_access_txt = "8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cpG" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cpH" = ( +/obj/structure/bed/roller, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cpI" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/starboard/aft) +"cpJ" = ( +/obj/structure/barricade/wooden, +/obj/structure/girder, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cpK" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cpL" = ( +/obj/effect/decal/cleanable/blood/gibs/limb, +/obj/structure/rack, +/obj/item/storage/firstaid/regular, +/obj/item/stack/medical/suture, +/obj/item/stack/medical/suture, +/obj/item/stack/medical/mesh, +/obj/item/clothing/glasses/hud/health, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cpM" = ( +/obj/structure/lattice, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 5 + }, +/turf/open/space, +/area/space/nearstation) +"cpN" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 8 + }, +/turf/open/floor/plating/airless, +/area/maintenance/disposal/incinerator) +"cpP" = ( +/obj/structure/lattice/catwalk, +/obj/item/wrench, +/turf/open/space, +/area/space/nearstation) +"cpQ" = ( +/obj/structure/chair/stool, +/turf/open/floor/wood{ + icon_state = "wood-broken7" + }, +/area/maintenance/port/aft) +"cpS" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cpT" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"cpW" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/holopad, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/medical/surgery) +"cpX" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/structure/extinguisher_cabinet{ + pixel_y = -30 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/medical/surgery) +"cpZ" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/medical/surgery) +"cqa" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/medical/surgery) +"cqb" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/blue{ + 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/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/medical{ + name = "Surgery Observation" + }, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"cqc" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel/white, +/area/medical/cryo) +"cqd" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/cryo) +"cqe" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/cryo) +"cqf" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/medical/cryo) +"cqg" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 10 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/medical/cryo) +"cqh" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/medical/cryo) +"cqi" = ( +/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/white, +/area/medical/medbay/central) +"cqj" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cqp" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance{ + name = "CMO Maintenance"; + req_access_txt = "40" + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cqq" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cqs" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/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) +"cqt" = ( +/obj/machinery/chem_heater{ + pixel_x = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"cqu" = ( +/obj/machinery/chem_master, +/obj/structure/noticeboard{ + desc = "A board for pinning important notices upon. Probably helpful for keeping track of requests."; + dir = 1; + name = "requests board"; + pixel_y = -32 + }, +/obj/machinery/button/door{ + id = "chemistry_shutters_2"; + name = "chemistry shutters control"; + pixel_x = 26; + pixel_y = -26; + req_access_txt = "5; 33" + }, +/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) +"cqv" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin{ + pixel_x = -2; + pixel_y = 6 + }, +/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, +/area/hallway/primary/aft) +"cqw" = ( +/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) +"cqx" = ( +/obj/machinery/cell_charger, +/obj/item/stock_parts/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/obj/machinery/power/apc{ + areastring = "/area/science/lab"; + name = "Research Lab APC"; + pixel_y = -26 + }, +/obj/structure/cable/yellow, +/obj/structure/table, +/obj/machinery/button/door{ + id = "research_shutters_2"; + name = "research shutters control"; + pixel_x = -26; + pixel_y = -26; + req_access_txt = "7" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/lab) +"cqy" = ( +/obj/item/storage/toolbox/mechanical{ + pixel_x = 2; + pixel_y = 3 + }, +/obj/item/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = -1 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil, +/obj/structure/table, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/lab) +"cqz" = ( +/obj/item/stack/packageWrap, +/obj/item/stack/packageWrap, +/obj/item/hand_labeler, +/obj/machinery/requests_console{ + department = "Science"; + departmentType = 2; + name = "Science Requests Console"; + pixel_y = -30; + receive_ore_updates = 1 + }, +/obj/structure/table, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/lab) +"cqA" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/window/eastleft{ + dir = 1; + name = "Research and Development Deliveries"; + req_one_access_txt = "7;29" + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/lab) +"cqB" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/lab) +"cqC" = ( +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"cqD" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"cqE" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white, +/area/science/research) +"cqF" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"cqG" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"cqH" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"cqI" = ( +/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/white, +/area/science/research) +"cqJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"cqK" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Research Division Hallway - Starboard"; + dir = 1; + network = list("ss13","rd") + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"cqL" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel/white, +/area/science/research) +"cqM" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"cqN" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/plasteel/white, +/area/science/research) +"cqO" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"cqP" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/science/explab) +"cqQ" = ( +/obj/machinery/light_switch{ + pixel_x = -23 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/explab) +"cqR" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/power/apc{ + areastring = "/area/science/explab"; + name = "Experimentation Lab APC"; + pixel_y = -24 + }, +/obj/structure/cable/yellow, +/turf/open/floor/plasteel/white, +/area/science/explab) +"cqS" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -29 + }, +/obj/machinery/camera{ + c_tag = "Experimentation Lab"; + dir = 1; + network = list("ss13","rd") + }, +/obj/machinery/light, +/turf/open/floor/plasteel/white, +/area/science/explab) +"cqT" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/explab) +"cqU" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel/white, +/area/science/explab) +"cqV" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/explab) +"cqW" = ( +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/explab) +"cqX" = ( +/obj/structure/bed/roller, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/blood/gibs/old, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cqY" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cqZ" = ( +/obj/structure/barricade/wooden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/girder, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cra" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"crb" = ( +/obj/structure/bed, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/blood/gibs/old, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"crc" = ( +/obj/structure/lattice, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/space, +/area/space/nearstation) +"crd" = ( +/obj/structure/disposaloutlet, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/space/nearstation) +"cre" = ( +/obj/structure/sign/warning/fire, +/turf/closed/wall/r_wall, +/area/maintenance/disposal/incinerator) +"crf" = ( +/obj/machinery/door/poddoor/incinerator_atmos_main, +/turf/open/floor/engine/vacuum, +/area/maintenance/disposal/incinerator) +"crg" = ( +/obj/item/toy/cards/deck, +/obj/structure/table/wood/poker, +/turf/open/floor/wood, +/area/maintenance/port/aft) +"crh" = ( +/turf/open/floor/wood{ + icon_state = "wood-broken4" + }, +/area/maintenance/port/aft) +"cri" = ( +/obj/machinery/shower{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/freezer, +/area/commons/toilet/restrooms) +"crj" = ( +/obj/machinery/light_switch{ + pixel_x = -26 + }, +/turf/open/floor/plasteel/white/corner, +/area/medical/surgery) +"crl" = ( +/turf/open/floor/plasteel/white/side, +/area/medical/surgery) +"crm" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel/white/side, +/area/medical/surgery) +"crn" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/white/side, +/area/medical/surgery) +"cro" = ( +/obj/effect/landmark/blobstart, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"crq" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/white/side, +/area/medical/surgery) +"crr" = ( +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -22 + }, +/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/cryo) +"crs" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/structure/table/reinforced, +/obj/item/crowbar, +/obj/machinery/camera{ + c_tag = "Medbay Cryo"; + dir = 1; + network = list("ss13","medbay") + }, +/obj/item/screwdriver{ + pixel_y = 6 + }, +/obj/item/clothing/neck/stethoscope, +/obj/item/wrench/medical, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/cryo) +"crt" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ + dir = 1 + }, +/obj/item/radio/intercom{ + broadcasting = 1; + frequency = 1485; + listening = 0; + name = "Station Intercom (Medbay)"; + pixel_y = -30 + }, +/obj/machinery/light, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/medical/cryo) +"cru" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1; + name = "Connector Port (Air Supply)" + }, +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/medical/cryo) +"crv" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1; + name = "Connector Port (Air Supply)" + }, +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/machinery/light_switch{ + pixel_y = -24 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/medical/cryo) +"crw" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"crx" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"crD" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/aft) +"crE" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Chemistry Lab Maintenance"; + req_access_txt = "5; 33" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/aft) +"crF" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_x = -29 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"crG" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"crH" = ( +/obj/machinery/power/apc/highcap/five_k{ + areastring = "/area/hallway/primary/aft"; + dir = 4; + name = "Aft Hallway APC"; + pixel_x = 24 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"crI" = ( +/obj/structure/plasticflaps/opaque, +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=1"; + dir = 1; + freq = 1400; + location = "Research and Development" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/lab) +"crJ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"crK" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/white/side{ + dir = 5 + }, +/area/science/research) +"crL" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/white, +/area/science/research) +"crM" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/white, +/area/science/research) +"crR" = ( +/turf/closed/wall/r_wall, +/area/science/storage) +"crS" = ( +/obj/structure/sign/warning/biohazard, +/turf/closed/wall/r_wall, +/area/science/storage) +"crT" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/research{ + name = "Toxins Storage"; + req_access_txt = "8" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "toxins_blastdoor"; + name = "biohazard containment shutters" + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/science/storage) +"crU" = ( +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/explab) +"crV" = ( +/obj/structure/closet/radiation, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/explab) +"crW" = ( +/obj/structure/closet/l3closet/scientist{ + pixel_x = -2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/explab) +"crX" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/vending/wardrobe/science_wardrobe, +/turf/open/floor/plasteel, +/area/science/explab) +"crZ" = ( +/obj/structure/table, +/obj/structure/bedsheetbin{ + pixel_x = 2 + }, +/obj/item/clothing/mask/muzzle, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"csa" = ( +/obj/structure/table, +/obj/item/restraints/handcuffs/cable/white, +/obj/item/gun/syringe/dart, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"csc" = ( +/obj/machinery/iv_drip, +/obj/item/roller, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"csd" = ( +/obj/structure/rack, +/obj/item/tank/internals/anesthetic, +/obj/item/clothing/mask/gas, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cse" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"csf" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/port/aft) +"csg" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"csh" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/maintenance/port/aft) +"csi" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"csj" = ( +/obj/structure/sign/warning/nosmoking{ + pixel_x = -28 + }, +/obj/machinery/limbgrower, +/turf/open/floor/plasteel/white/side{ + dir = 4 + }, +/area/medical/surgery) +"csk" = ( +/obj/machinery/light, +/obj/machinery/bloodbankgen, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"csl" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/closet/crate/freezer/blood, +/obj/machinery/door/window/northleft{ + name = "Surgery Supplies"; + red_alert_access = 1; + req_access_txt = "5" + }, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"csm" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/closet/crate/freezer/surplus_limbs, +/obj/item/reagent_containers/glass/beaker/synthflesh, +/obj/machinery/door/window/northright{ + name = "Surgery Supplies"; + red_alert_access = 1; + req_access_txt = "5" + }, +/obj/machinery/camera{ + c_tag = "Medbay Surgery"; + dir = 1; + network = list("ss13","medbay") + }, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"csn" = ( +/obj/structure/chair/office/light{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"cso" = ( +/obj/item/bedsheet/medical{ + dir = 1 + }, +/obj/structure/bed{ + dir = 1 + }, +/turf/open/floor/plasteel/white/side{ + dir = 4 + }, +/area/medical/surgery) +"csp" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"csq" = ( +/obj/structure/bed, +/obj/item/bedsheet/medical, +/obj/structure/sign/warning/nosmoking{ + pixel_x = 28 + }, +/turf/open/floor/plasteel/white/side{ + dir = 8 + }, +/area/medical/surgery) +"csr" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Medbay Maintenance"; + req_access_txt = "5" + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"css" = ( +/turf/closed/wall, +/area/medical/cryo) +"cst" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -24 + }, +/obj/machinery/camera{ + c_tag = "Medbay Hallway Central"; + dir = 4; + network = list("ss13","medbay") + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"csu" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"csv" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/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) +"csC" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/effect/landmark/blobstart, +/turf/open/floor/plating, +/area/maintenance/aft) +"csD" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"csE" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/aft) +"csF" = ( +/obj/structure/disposalpipe/sorting/mail{ + dir = 8; + sortType = 11 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"csH" = ( +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 8; + sortType = 23 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/maintenance/aft) +"csI" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance{ + req_one_access_txt = "12;5;9" + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"csJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"csK" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"csL" = ( +/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/tile/neutral, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"csM" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock{ + name = "Aft Emergency Storage" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"csN" = ( +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 8; + sortType = 14 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"csO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"csP" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance{ + req_one_access_txt = "7;47;29;12" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"csQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"csR" = ( +/obj/structure/disposalpipe/sorting/mail{ + dir = 8; + sortType = 12 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"csS" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/maintenance/aft) +"csT" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"csU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance{ + name = "Research Maintenance"; + req_one_access_txt = "7;47;29" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"csV" = ( +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white/side{ + dir = 4 + }, +/area/science/research) +"csW" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 8; + sortType = 13 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"csX" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/white, +/area/science/research) +"ctf" = ( +/obj/machinery/portable_atmospherics/scrubber/huge, +/obj/machinery/light_switch{ + pixel_x = -23 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/storage) +"ctg" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/science/storage) +"cth" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/sign/warning/nosmoking{ + pixel_y = 32 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/science/storage) +"ctj" = ( +/obj/machinery/portable_atmospherics/scrubber/huge, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/storage) +"ctl" = ( +/obj/machinery/camera{ + active_power_usage = 0; + c_tag = "Turbine Vent"; + dir = 4; + network = list("turbine"); + use_power = 0 + }, +/turf/open/space, +/area/space/nearstation) +"ctm" = ( +/obj/structure/grille/broken, +/turf/open/space, +/area/space/nearstation) +"ctn" = ( +/obj/machinery/vending/cigarette, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cto" = ( +/obj/machinery/vending/kink, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"ctq" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"ctr" = ( +/obj/structure/bed{ + dir = 1 + }, +/obj/item/bedsheet/medical{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/patients_rooms/room_a) +"cts" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/machinery/vending/wallmed{ + pixel_y = 28 + }, +/turf/open/floor/plasteel/white, +/area/medical/patients_rooms/room_a) +"ctt" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/machinery/light_switch{ + pixel_y = 25 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/patients_rooms/room_a) +"ctu" = ( +/obj/machinery/door/airlock/medical{ + name = "Patient Room A"; + req_access_txt = "5" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel/white, +/area/medical/patients_rooms/room_a) +"ctv" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"ctw" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"ctA" = ( +/turf/closed/wall/r_wall, +/area/medical/genetics) +"ctB" = ( +/turf/closed/wall, +/area/medical/genetics) +"ctC" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Genetics Maintenance"; + req_access_txt = "9" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/aft) +"ctD" = ( +/obj/structure/sign/directions/evac, +/turf/closed/wall, +/area/medical/paramedic) +"ctE" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"ctF" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"ctG" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"ctH" = ( +/obj/structure/sign/directions/evac, +/turf/closed/wall, +/area/maintenance/aft) +"ctJ" = ( +/obj/item/storage/toolbox/emergency, +/obj/structure/closet/firecloset, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/aft) +"ctK" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/aft) +"ctL" = ( +/turf/closed/wall/r_wall, +/area/science/misc_lab/range) +"ctM" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Research Testing Range Maintenance"; + req_one_access_txt = "7;47;29" + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"ctN" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/white/side{ + dir = 6 + }, +/area/science/research) +"ctO" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white, +/area/science/research) +"ctP" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/white, +/area/science/research) +"ctW" = ( +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -22 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/storage) +"ctX" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/storage) +"ctY" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/chair/stool, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/storage) +"ctZ" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/storage) +"cua" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/storage) +"cub" = ( +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cuc" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cud" = ( +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/disposal/bin, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"cuf" = ( +/obj/structure/closet, +/obj/item/extinguisher, +/obj/effect/decal/cleanable/cobweb, +/obj/item/flashlight, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cug" = ( +/obj/structure/closet, +/obj/item/reagent_containers/glass/beaker{ + pixel_x = 8; + pixel_y = 2 + }, +/obj/item/reagent_containers/dropper, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cuh" = ( +/obj/structure/closet/crate, +/obj/item/stack/cable_coil, +/obj/item/grenade/chem_grenade, +/obj/item/flashlight, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cui" = ( +/obj/structure/table/reinforced, +/obj/structure/bedsheetbin{ + pixel_x = 2 + }, +/obj/item/clothing/suit/straight_jacket, +/obj/item/clothing/ears/earmuffs, +/obj/item/clothing/glasses/sunglasses/blindfold, +/obj/item/clothing/mask/muzzle, +/obj/item/clothing/glasses/eyepatch, +/obj/item/gun/syringe/dart, +/obj/item/storage/belt/medical{ + pixel_y = 2 + }, +/turf/open/floor/plasteel/white/side{ + dir = 1 + }, +/area/medical/surgery) +"cuj" = ( +/obj/structure/sign/poster/official/medical_green_cross{ + pixel_y = -32 + }, +/obj/structure/bed{ + dir = 1 + }, +/obj/item/bedsheet/medical{ + dir = 1 + }, +/obj/machinery/light/small, +/turf/open/floor/plasteel/white/corner{ + dir = 4 + }, +/area/medical/surgery) +"cul" = ( +/obj/structure/chair/office/light{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/effect/landmark/start/medical_doctor, +/turf/open/floor/plasteel/white, +/area/medical/patients_rooms/room_a) +"cum" = ( +/obj/structure/closet/secure_closet/personal/patient, +/obj/machinery/button/door{ + id = "isola"; + name = "Privacy Shutters"; + pixel_y = -25 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/patients_rooms/room_a) +"cun" = ( +/obj/effect/spawner/structure/window, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/poddoor/preopen{ + id = "isola"; + name = "privacy shutters" + }, +/turf/open/floor/plating, +/area/medical/patients_rooms/room_a) +"cuo" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cup" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cuq" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/extinguisher_cabinet{ + pixel_x = 27 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cur" = ( +/obj/item/storage/box/rxglasses{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/box/bodybags, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_x = -29 + }, +/obj/structure/table/glass, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/medical/genetics) +"cus" = ( +/obj/item/clothing/gloves/color/latex, +/obj/item/clothing/gloves/color/latex, +/obj/item/storage/box/disks{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/structure/table/glass, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/medical/genetics) +"cut" = ( +/obj/machinery/requests_console{ + department = "Genetics"; + name = "Genetics Requests Console"; + pixel_y = 30 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/item/storage/box/monkeycubes, +/obj/item/radio/headset/headset_medsci, +/obj/item/flashlight/pen{ + pixel_x = 4; + pixel_y = 3 + }, +/obj/item/flashlight/pen{ + pixel_x = 4; + pixel_y = 3 + }, +/obj/structure/noticeboard{ + pixel_x = -32; + pixel_y = 32 + }, +/obj/structure/table/glass, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/medical/genetics) +"cuv" = ( +/obj/item/reagent_containers/dropper, +/obj/item/reagent_containers/glass/beaker{ + pixel_x = 8; + pixel_y = 2 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 24 + }, +/obj/structure/sign/warning/nosmoking{ + pixel_y = 32 + }, +/obj/structure/table/glass, +/obj/effect/turf_decal/tile/neutral{ + 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/reagent_containers/spray/cleaner{ + pixel_x = -5 + }, +/turf/open/floor/plasteel/dark, +/area/medical/genetics) +"cuw" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/computer/crew, +/obj/machinery/vending/wallmed{ + pixel_x = -25 + }, +/turf/open/floor/plasteel, +/area/medical/paramedic) +"cux" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/medical/paramedic) +"cuy" = ( +/obj/structure/table/glass, +/obj/item/flashlight/lamp{ + pixel_x = -1; + pixel_y = 11 + }, +/obj/effect/spawner/lootdrop/cig_packs{ + pixel_x = 5; + pixel_y = -4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel, +/area/medical/paramedic) +"cuA" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cuB" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/maintenance/aft) +"cuC" = ( +/obj/machinery/portable_atmospherics/canister/air, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/obj/effect/spawner/lootdrop/maintenance, +/obj/item/wrench, +/turf/open/floor/plating, +/area/maintenance/aft) +"cuD" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/item/storage/box/lights/mixed, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/aft) +"cuE" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/aft) +"cuF" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/science/misc_lab/range) +"cuG" = ( +/turf/open/floor/engine{ + dir = 9; + icon_state = "floor" + }, +/area/science/misc_lab/range) +"cuH" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/science/misc_lab/range) +"cuI" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/white/side{ + dir = 5 + }, +/area/science/research) +"cuJ" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"cuK" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel/white, +/area/science/research) +"cuS" = ( +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/storage) +"cuT" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/storage) +"cuU" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/storage) +"cuV" = ( +/obj/machinery/portable_atmospherics/canister/nitrogen, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/storage) +"cuW" = ( +/obj/machinery/portable_atmospherics/canister/nitrogen, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Toxins Storage"; + dir = 8; + network = list("ss13","rd") + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/storage) +"cuY" = ( +/obj/structure/rack, +/obj/item/extinguisher, +/obj/item/storage/belt/utility, +/obj/item/clothing/mask/gas, +/obj/item/storage/box/lights/mixed, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cuZ" = ( +/turf/closed/wall/r_wall, +/area/science/circuit) +"cvk" = ( +/obj/structure/closet/crate, +/obj/item/crowbar/red, +/obj/item/pen, +/obj/item/flashlight/pen{ + pixel_x = 4; + pixel_y = 3 + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cvl" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cvm" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cvn" = ( +/obj/structure/sign/poster/contraband/random{ + pixel_x = 32 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cvo" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/medical/patients_rooms/room_a) +"cvp" = ( +/turf/closed/wall, +/area/medical/patients_rooms/room_a) +"cvq" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/sign/departments/examroom{ + pixel_x = -32 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cvr" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cvs" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cvt" = ( +/turf/closed/wall, +/area/medical/genetics/cloning) +"cvu" = ( +/obj/machinery/shower{ + dir = 4 + }, +/obj/machinery/door/window/southleft{ + name = "Cloning Shower" + }, +/obj/structure/mirror{ + 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/medical/genetics/cloning) +"cvv" = ( +/obj/machinery/door/window/southleft{ + base_state = "right"; + icon_state = "right"; + name = "Cloning Shower" + }, +/obj/structure/sink/kitchen{ + desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; + name = "sink"; + 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/medical/genetics/cloning) +"cvw" = ( +/obj/machinery/clonepod{ + pixel_y = 2 + }, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_x = 29 + }, +/obj/structure/window/reinforced, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/medical/genetics/cloning) +"cvx" = ( +/obj/machinery/computer/scan_consolenew{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Genetics Lab"; + dir = 4; + network = list("ss13","medbay") + }, +/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) +"cvy" = ( +/obj/structure/chair/office/light{ + dir = 8 + }, +/obj/effect/landmark/start/geneticist, +/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/genetics) +"cvz" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"cvA" = ( +/obj/structure/chair/office/light{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/landmark/start/geneticist, +/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/genetics) +"cvB" = ( +/obj/machinery/computer/scan_consolenew{ + 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/white, +/area/medical/genetics) +"cvD" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/item/cigbutt{ + pixel_x = -15; + pixel_y = 14 + }, +/obj/effect/landmark/start/paramedic, +/turf/open/floor/plasteel, +/area/medical/paramedic) +"cvE" = ( +/obj/structure/table/glass, +/obj/item/folder/white{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/pen/blue{ + pixel_x = 5; + pixel_y = 3 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/medical/paramedic) +"cvF" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/medical/paramedic) +"cvG" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/extinguisher_cabinet{ + pixel_x = 27 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cvH" = ( +/turf/closed/wall, +/area/science/robotics/mechbay) +"cvI" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Mech Bay Maintenance"; + req_access_txt = "29" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/aft) +"cvJ" = ( +/obj/structure/sign/warning/nosmoking{ + pixel_x = -29 + }, +/turf/open/floor/engine{ + dir = 9; + icon_state = "floor" + }, +/area/science/misc_lab/range) +"cvK" = ( +/obj/machinery/magnetic_module, +/obj/effect/landmark/blobstart, +/obj/structure/target_stake, +/obj/effect/turf_decal/bot{ + dir = 9 + }, +/turf/open/floor/plasteel{ + dir = 9 + }, +/area/science/misc_lab/range) +"cvL" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "researchrangeshutters" + }, +/turf/open/floor/plating, +/area/science/misc_lab/range) +"cvM" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/white/side{ + dir = 4 + }, +/area/science/research) +"cvN" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"cvO" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 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/science/research) +"cvV" = ( +/obj/machinery/portable_atmospherics/canister/nitrous_oxide, +/obj/structure/extinguisher_cabinet{ + pixel_x = -27 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/storage) +"cvW" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/blobstart, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/plasteel, +/area/science/storage) +"cvX" = ( +/obj/machinery/portable_atmospherics/canister/toxins, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/storage) +"cvY" = ( +/obj/machinery/portable_atmospherics/canister/toxins, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_x = 29 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/storage) +"cwa" = ( +/obj/structure/reagent_dispensers/watertank/high, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cwb" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/science/circuit) +"cwc" = ( +/obj/machinery/door/airlock/external{ + name = "Auxiliary Escape Airlock" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/turf/open/floor/plating, +/area/maintenance/aft) +"cwd" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"cwf" = ( +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/space/nearstation) +"cwg" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/external{ + req_access_txt = "13" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cwh" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cwi" = ( +/obj/machinery/door/airlock/external{ + req_access_txt = "13" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cwj" = ( +/obj/structure/closet/crate, +/obj/item/coin/silver, +/obj/item/reagent_containers/spray/weedspray, +/obj/item/paper, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cwm" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cwn" = ( +/turf/open/floor/plasteel/white/side{ + dir = 1 + }, +/area/medical/surgery) +"cwo" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/obj/machinery/light_switch{ + pixel_y = 25 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/chem_dispenser/apothecary, +/turf/open/floor/plasteel/white, +/area/medical/medbay/aft) +"cwp" = ( +/obj/structure/chair/office/light{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/aft) +"cwq" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/chem_heater{ + pixel_x = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/aft) +"cwr" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/medical/medbay/aft) +"cws" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/aft) +"cwt" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/aft) +"cwu" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/aft) +"cwv" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/machinery/light_switch{ + pixel_x = -23 + }, +/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/genetics/cloning) +"cww" = ( +/obj/effect/landmark/start/geneticist, +/obj/machinery/holopad, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics/cloning) +"cwx" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/obj/machinery/computer/cloning{ + dir = 8 + }, +/obj/machinery/light{ + dir = 4 + }, +/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/genetics/cloning) +"cwy" = ( +/obj/machinery/dna_scannernew, +/obj/machinery/light_switch{ + 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/white, +/area/medical/genetics) +"cwz" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"cwA" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"cwB" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"cwC" = ( +/obj/machinery/dna_scannernew, +/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) +"cwD" = ( +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_x = -29 + }, +/obj/machinery/camera{ + c_tag = "Paramedics Office"; + dir = 4; + network = list("ss13","medbay") + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/paramedic) +"cwE" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/medical/paramedic) +"cwF" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -24 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cwG" = ( +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/sign/warning/nosmoking{ + pixel_x = -28 + }, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"cwH" = ( +/obj/machinery/mech_bay_recharge_port, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/science/robotics/mechbay) +"cwI" = ( +/obj/structure/sign/warning/electricshock{ + pixel_y = 31 + }, +/turf/open/floor/mech_bay_recharge_floor, +/area/science/robotics/mechbay) +"cwJ" = ( +/obj/machinery/computer/mech_bay_power_console, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = 20 + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/turf/open/floor/circuit/green, +/area/science/robotics/mechbay) +"cwK" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/science/misc_lab/range) +"cwL" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/science/misc_lab/range) +"cwM" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/camera{ + c_tag = "Research Division Hallway - Mech Bay"; + dir = 4; + network = list("ss13","rd") + }, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/turf/open/floor/plasteel/white/side{ + dir = 6 + }, +/area/science/research) +"cwN" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"cwO" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 24 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"cwV" = ( +/obj/machinery/portable_atmospherics/canister/nitrous_oxide, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/storage) +"cwW" = ( +/obj/item/cigbutt, +/obj/machinery/light_switch{ + pixel_y = -23 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/science/storage) +"cwX" = ( +/obj/effect/landmark/start/scientist, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/science/storage) +"cwY" = ( +/obj/machinery/portable_atmospherics/canister/toxins, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/machinery/light/small, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/storage) +"cwZ" = ( +/turf/open/floor/plasteel, +/area/science/circuit) +"cxb" = ( +/obj/structure/rack, +/obj/item/tank/internals/air, +/obj/item/wrench, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating{ + icon_state = "platingdmg2" + }, +/area/maintenance/port/aft) +"cxc" = ( +/obj/machinery/newscaster{ + pixel_y = -32 + }, +/obj/machinery/camera{ + c_tag = "Medbay Recovery Room"; + dir = 1; + network = list("ss13","medbay") + }, +/obj/structure/bed, +/obj/item/bedsheet/medical, +/obj/structure/sign/poster/official/love_ian{ + pixel_x = 32 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/medical/surgery) +"cxd" = ( +/obj/structure/rack, +/obj/item/clothing/glasses/sunglasses, +/obj/item/flashlight/pen, +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/landmark/blobstart, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cxe" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/chem_master, +/turf/open/floor/plasteel/white, +/area/medical/medbay/aft) +"cxf" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/aft) +"cxg" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/aft) +"cxh" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/medical/glass{ + name = "Apothecary"; + req_access_txt = "5" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/aft) +"cxi" = ( +/obj/machinery/atmospherics/pipe/manifold/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/aft) +"cxj" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/aft) +"cxk" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel/white, +/area/medical/medbay/aft) +"cxl" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/medical/genetics/cloning) +"cxm" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/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/genetics/cloning) +"cxn" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics/cloning) +"cxo" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/machinery/dna_scannernew, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics/cloning) +"cxp" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/medical/genetics) +"cxq" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/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/genetics) +"cxr" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"cxs" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"cxt" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"cxu" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 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/white, +/area/medical/genetics) +"cxv" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 24 + }, +/obj/effect/landmark/start/paramedic, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel, +/area/medical/paramedic) +"cxw" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/suit_storage_unit/paramedic, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel, +/area/medical/paramedic) +"cxx" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/light, +/obj/structure/closet/secure_closet/paramedic, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/paramedic) +"cxy" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/paramedic) +"cxz" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=10.1-Central-from-Aft"; + location = "10-Aft-To-Central" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cxA" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cxB" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=9.1-Escape-1"; + location = "8.1-Aft-to-Escape" + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cxC" = ( +/obj/machinery/door/poddoor/shutters{ + id = "Skynet_launch"; + name = "Mech Bay" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"cxD" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"cxE" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/circuit/green, +/area/science/robotics/mechbay) +"cxF" = ( +/turf/open/floor/circuit/green, +/area/science/robotics/mechbay) +"cxG" = ( +/obj/machinery/camera{ + c_tag = "Mech Bay"; + dir = 8; + network = list("ss13","rd") + }, +/turf/open/floor/circuit/green, +/area/science/robotics/mechbay) +"cxH" = ( +/turf/open/floor/plating, +/area/science/misc_lab/range) +"cxI" = ( +/obj/machinery/camera{ + c_tag = "Research Testing Range"; + dir = 8; + network = list("ss13","rd"); + pixel_y = -22 + }, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/turf/open/floor/plating, +/area/science/misc_lab/range) +"cxJ" = ( +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_x = 29 + }, +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/white, +/area/science/research) +"cxK" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research{ + name = "Toxins Storage"; + req_access_txt = "8" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/science/storage) +"cxL" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/aft) +"cxM" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cxN" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/circuit) +"cxO" = ( +/turf/open/floor/plasteel/white, +/area/science/circuit) +"cxP" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"cxQ" = ( +/obj/machinery/computer/slot_machine{ + pixel_y = 2 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/port/aft) +"cxR" = ( +/obj/item/trash/chips, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cxS" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/decal/cleanable/oil/streak, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cxT" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cxU" = ( +/turf/closed/wall, +/area/medical/medbay/aft) +"cxV" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/extinguisher_cabinet{ + pixel_x = -27 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/aft) +"cxW" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/aft) +"cxX" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/aft) +"cxY" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/medical/glass{ + id_tag = "CloningDoor"; + name = "Cloning Lab"; + req_access_txt = "5; 68" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + 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/effect/mapping_helpers/airlock/unres{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics/cloning) +"cxZ" = ( +/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/white, +/area/medical/genetics/cloning) +"cya" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics/cloning) +"cyb" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics/cloning) +"cyc" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research/glass{ + name = "Genetics Lab"; + req_access_txt = "5; 9; 68" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + 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/white, +/area/medical/genetics) +"cyd" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/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/genetics) +"cye" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"cyf" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/effect/landmark/start/geneticist, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"cyg" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"cyh" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/structure/mirror{ + pixel_x = 28 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"cyi" = ( +/obj/machinery/door/airlock/medical/glass{ + id_tag = "MedbayFoyer"; + name = "Medbay"; + req_access_txt = "5" + }, +/obj/machinery/door/firedoor, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/medical/paramedic) +"cyk" = ( +/obj/structure/disposalpipe/segment, +/turf/closed/wall, +/area/medical/paramedic) +"cyl" = ( +/turf/closed/wall, +/area/medical/paramedic) +"cym" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/airlock/research{ + id_tag = "AuxGenetics"; + name = "Genetics Access"; + req_access_txt = "9" + }, +/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/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/medical/genetics) +"cyn" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/light{ + dir = 8 + }, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_x = -26 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cyo" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cyp" = ( +/obj/machinery/door/poddoor/shutters{ + id = "Skynet_launch"; + name = "Mech Bay" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"cyq" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"cyr" = ( +/turf/open/floor/circuit, +/area/science/robotics/mechbay) +"cys" = ( +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/obj/effect/landmark/start/roboticist, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/circuit, +/area/science/robotics/mechbay) +"cyt" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/science/misc_lab/range) +"cyu" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/science/misc_lab/range) +"cyv" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/extinguisher_cabinet{ + pixel_x = -27 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"cyw" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"cyx" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"cyy" = ( +/obj/structure/sign/warning/biohazard, +/turf/closed/wall, +/area/science/mixing) +"cyz" = ( +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/obj/effect/turf_decal/stripes/line, +/obj/structure/closet/bombcloset, +/turf/open/floor/plasteel, +/area/science/mixing) +"cyA" = ( +/obj/structure/closet/wardrobe/science_white, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/science/mixing) +"cyB" = ( +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/machinery/atmospherics/components/unary/thermomachine/freezer, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/science/mixing) +"cyC" = ( +/obj/item/radio/intercom{ + pixel_y = 25 + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/science/mixing) +"cyD" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/science/mixing) +"cyE" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Toxins - Lab"; + network = list("ss13","rd") + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/science/mixing) +"cyF" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/airalarm/unlocked{ + pixel_y = 24 + }, +/obj/machinery/portable_atmospherics/pump, +/turf/open/floor/plasteel, +/area/science/mixing) +"cyG" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/structure/sign/warning/nosmoking{ + pixel_y = 32 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/science/mixing) +"cyH" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"cyI" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/mixing) +"cyJ" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 27 + }, +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"cyK" = ( +/turf/closed/wall/r_wall, +/area/science/mixing) +"cyM" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/science/circuit) +"cyN" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -24 + }, +/obj/machinery/airalarm{ + pixel_y = 24 + }, +/obj/item/paper_bin{ + pixel_x = -2; + pixel_y = 4 + }, +/obj/structure/table/glass, +/turf/open/floor/plasteel/white/side, +/area/medical/medbay/aft) +"cyO" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/obj/machinery/status_display/evac{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/white/side, +/area/medical/medbay/aft) +"cyP" = ( +/obj/machinery/vending/coffee, +/obj/structure/sign/map/left{ + desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; + icon_state = "map-left-MS"; + pixel_y = 32 + }, +/turf/open/floor/plasteel/white/side, +/area/medical/medbay/aft) +"cyQ" = ( +/obj/structure/sign/map/right{ + desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; + icon_state = "map-right-MS"; + pixel_y = 32 + }, +/obj/machinery/vending/cola/random, +/turf/open/floor/plasteel/white/side, +/area/medical/medbay/aft) +"cyR" = ( +/obj/machinery/vending/cigarette, +/obj/structure/noticeboard{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/white/side, +/area/medical/medbay/aft) +"cyT" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/aft) +"cyU" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/sign/warning/nosmoking{ + pixel_x = 28 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/aft) +"cyV" = ( +/obj/machinery/button/door{ + desc = "A remote control switch for the cloning door."; + id = "CloningDoor"; + name = "Cloning Exit Button"; + normaldoorcontrol = 1; + pixel_x = -23; + pixel_y = 8 + }, +/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/white, +/area/medical/genetics/cloning) +"cyW" = ( +/obj/effect/landmark/start/geneticist, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics/cloning) +"cyX" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/machinery/power/apc/unlocked{ + areastring = "/area/medical/genetics/cloning"; + dir = 4; + name = "Cloning Lab APC"; + pixel_x = 24 + }, +/obj/structure/cable/yellow, +/obj/machinery/camera{ + c_tag = "Genetics Cloning Lab"; + dir = 8; + network = list("ss13","medbay") + }, +/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/cloning) +"cyY" = ( +/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/white, +/area/medical/genetics) +"cyZ" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"cza" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"czb" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/obj/machinery/camera{ + c_tag = "Genetics Lab"; + dir = 6; + network = list("ss13","medbay") + }, +/turf/open/floor/plasteel, +/area/medical/genetics) +"czc" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/medical/genetics) +"czd" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/medical/genetics) +"cze" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/research{ + id_tag = "AuxGenetics"; + name = "Genetics Access"; + req_access_txt = "9" + }, +/turf/open/floor/plasteel, +/area/medical/genetics) +"czf" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"czg" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"czh" = ( +/obj/machinery/button/door{ + id = "Skynet_launch"; + name = "Mech Bay Door Control"; + pixel_x = 26; + pixel_y = 6; + req_one_access_txt = "29" + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"czi" = ( +/obj/machinery/button/door{ + id = "Skynet_launch"; + name = "Mech Bay Door Control"; + pixel_x = -26; + pixel_y = 6 + }, +/obj/machinery/light_switch{ + pixel_x = -23; + pixel_y = -2 + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"czj" = ( +/turf/open/floor/mech_bay_recharge_floor, +/area/science/robotics/mechbay) +"czk" = ( +/obj/machinery/computer/mech_bay_power_console{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/turf/open/floor/circuit, +/area/science/robotics/mechbay) +"czl" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -27 + }, +/obj/item/folder/white{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/item/paper/guides/jobs/security/range{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/misc_lab/range) +"czm" = ( +/obj/machinery/door/window/westleft{ + base_state = "right"; + dir = 1; + icon_state = "right"; + name = "door" + }, +/turf/open/floor/engine{ + dir = 9; + icon_state = "floor" + }, +/area/science/misc_lab/range) +"czn" = ( +/obj/structure/table/reinforced, +/obj/machinery/magnetic_controller{ + autolink = 1; + pixel_y = 3 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/item/clothing/ears/earmuffs, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/misc_lab/range) +"czo" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"czp" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"czq" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/plasteel/white, +/area/science/research) +"czr" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "toxins_blastdoor"; + name = "biohazard containment door" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/science/mixing) +"czs" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"czt" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"czv" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"czw" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible, +/obj/machinery/meter, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"czx" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 9 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"czy" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 5 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"czz" = ( +/obj/machinery/atmospherics/components/trinary/filter{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"czA" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"czB" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 2 + }, +/obj/machinery/portable_atmospherics/pump, +/turf/open/floor/plasteel, +/area/science/mixing) +"czC" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/maintenance{ + req_one_access_txt = "12;47" + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"czD" = ( +/turf/closed/wall, +/area/science/mixing) +"czE" = ( +/obj/structure/table/reinforced, +/obj/item/folder/white{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/item/folder/white{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/machinery/door/firedoor, +/obj/item/reagent_containers/glass/bottle/epinephrine, +/obj/item/reagent_containers/syringe, +/obj/item/pen, +/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/white, +/area/medical/medbay/central) +"czF" = ( +/obj/effect/turf_decal/bot{ + dir = 1 + }, +/turf/open/floor/plasteel{ + dir = 1 + }, +/area/science/mixing) +"czG" = ( +/obj/item/stack/rods/fifty, +/obj/item/stack/sheet/glass/fifty, +/obj/item/stack/sheet/metal/fifty, +/obj/item/target, +/obj/item/target/syndicate, +/obj/item/target/alien, +/obj/item/target/clown, +/obj/structure/closet/crate/secure{ + desc = "A secure crate containing various materials for building a customised test-site."; + name = "Test Site Materials Crate"; + req_access_txt = "8" + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/turf_decal/bot{ + dir = 1 + }, +/turf/open/floor/plasteel{ + dir = 1 + }, +/area/science/mixing) +"czH" = ( +/obj/machinery/airalarm/all_access{ + dir = 8; + pixel_x = 24 + }, +/obj/machinery/atmospherics/pipe/simple/general/visible, +/obj/structure/chair/stool{ + pixel_y = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"czI" = ( +/obj/structure/sign/warning/securearea{ + desc = "A warning sign which reads 'BOMB RANGE"; + name = "BOMB RANGE" + }, +/turf/closed/wall, +/area/science/mixing) +"czJ" = ( +/turf/closed/wall, +/area/science/test_area) +"czK" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/science/test_area) +"czN" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Medbay Maintenance"; + req_access_txt = "5" + }, +/turf/open/floor/plating, +/area/medical/medbay/aft) +"czO" = ( +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/medical/medbay/aft) +"czP" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/medical/medbay/aft) +"czQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/medical/medbay/aft) +"czR" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/medical/medbay/aft) +"czS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/item/cigbutt, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/medical/medbay/aft) +"czT" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/medical{ + name = "Medbay Break Room"; + req_access_txt = "5" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/medical/medbay/aft) +"czU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/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/white, +/area/medical/medbay/aft) +"czV" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/aft) +"czX" = ( +/obj/item/book/manual/wiki/medical_cloning{ + pixel_y = 6 + }, +/obj/item/paper, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -24 + }, +/obj/structure/table/glass, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/medical/genetics/cloning) +"czY" = ( +/obj/item/storage/box/rxglasses{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/box/bodybags, +/obj/item/pen, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/table/glass, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/medical/genetics/cloning) +"czZ" = ( +/obj/structure/closet/secure_closet/personal/patient, +/obj/machinery/airalarm{ + dir = 8; + 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/medical/genetics/cloning) +"cAa" = ( +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/obj/machinery/vending/wardrobe/gene_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/medical/genetics) +"cAb" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/bed/roller, +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/mob/living/carbon/monkey, +/turf/open/floor/plasteel/freezer, +/area/medical/genetics) +"cAc" = ( +/obj/structure/bed/roller, +/obj/machinery/door/window/westleft{ + dir = 1; + name = "Monkey Pen"; + pixel_y = 2; + req_access_txt = "9" + }, +/turf/open/floor/plasteel/freezer, +/area/medical/genetics) +"cAd" = ( +/obj/machinery/light, +/obj/machinery/door/window/westleft{ + base_state = "right"; + dir = 1; + icon_state = "right"; + name = "Monkey Pen"; + pixel_y = 2; + req_access_txt = "9" + }, +/obj/structure/bed/roller, +/mob/living/carbon/monkey, +/turf/open/floor/plasteel/freezer, +/area/medical/genetics) +"cAe" = ( +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/bed/roller, +/mob/living/carbon/monkey, +/turf/open/floor/plasteel/freezer, +/area/medical/genetics) +"cAf" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -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/medical/genetics) +"cAg" = ( +/obj/structure/closet/secure_closet/personal/patient, +/obj/effect/turf_decal/tile/neutral{ + 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/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/medical/genetics) +"cAh" = ( +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -22 + }, +/obj/machinery/camera{ + c_tag = "Aft Primary Hallway - Middle"; + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cAi" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cAj" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cAk" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research{ + name = "Mech Bay"; + req_access_txt = "29" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"cAl" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"cAm" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"cAn" = ( +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"cAp" = ( +/obj/structure/rack, +/obj/item/target, +/obj/item/target, +/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/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/light_switch{ + pixel_x = -25 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/science/misc_lab/range) +"cAq" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/misc_lab/range) +"cAr" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/science/misc_lab/range) +"cAs" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research{ + name = "Research Testing Range"; + req_one_access_txt = "7;47;29" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/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, +/area/science/misc_lab/range) +"cAt" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"cAu" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"cAv" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/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/white, +/area/science/research) +"cAw" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/research{ + name = "Toxins Lab"; + req_access_txt = "8" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "toxins_blastdoor"; + name = "biohazard containment shutters" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/mixing) +"cAx" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"cAy" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"cAz" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"cAA" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"cAB" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"cAC" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"cAD" = ( +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"cAE" = ( +/obj/machinery/holopad, +/obj/effect/landmark/start/scientist, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"cAF" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"cAG" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 27 + }, +/obj/machinery/camera{ + c_tag = "Toxins - Mixing Area"; + dir = 8; + network = list("ss13","rd") + }, +/obj/machinery/portable_atmospherics/scrubber, +/turf/open/floor/plasteel, +/area/science/mixing) +"cAH" = ( +/obj/structure/sign/warning/biohazard, +/turf/closed/wall/r_wall, +/area/science/mixing) +"cAI" = ( +/obj/effect/landmark/blobstart, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/structure/chair/comfy{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/misc_lab) +"cAJ" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"cAK" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/misc_lab) +"cAL" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/sign/warning/biohazard, +/turf/closed/wall, +/area/science/mixing) +"cAM" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/machinery/door/airlock/research{ + id_tag = "ResearchExt"; + name = "Research Division"; + req_one_access_txt = "47" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/research) +"cAN" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"cAO" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"cAP" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/science/mixing) +"cAQ" = ( +/obj/structure/window/reinforced, +/obj/item/target, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/science/test_area) +"cAS" = ( +/obj/structure/chair/stool, +/obj/item/radio/intercom{ + broadcasting = 1; + frequency = 1485; + listening = 0; + name = "Station Intercom (Medbay)"; + pixel_x = -30 + }, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/medical/medbay/aft) +"cAT" = ( +/obj/structure/chair/stool, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/medical/medbay/aft) +"cAU" = ( +/obj/item/cigbutt, +/obj/machinery/holopad, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/medical/medbay/aft) +"cAV" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/medical/medbay/aft) +"cAW" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/medical/medbay/aft) +"cAX" = ( +/obj/effect/spawner/structure/window/reinforced/tinted, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/medical/medbay/aft) +"cAY" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/aft) +"cAZ" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/aft) +"cBa" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/obj/item/radio/intercom{ + broadcasting = 1; + frequency = 1485; + listening = 0; + name = "Station Intercom (Medbay)"; + pixel_x = 30 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/aft) +"cBb" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/medical/genetics/cloning) +"cBc" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/grunge{ + name = "Genetics"; + req_access_txt = "9" + }, +/turf/open/floor/plasteel/dark, +/area/medical/genetics) +"cBd" = ( +/obj/structure/sign/directions/evac, +/turf/closed/wall, +/area/hallway/primary/aft) +"cBe" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cBf" = ( +/obj/structure/sign/directions/evac, +/turf/closed/wall, +/area/science/robotics/mechbay) +"cBg" = ( +/obj/machinery/recharge_station, +/obj/effect/turf_decal/delivery, +/obj/effect/landmark/start/cyborg, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"cBh" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"cBi" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 28 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"cBj" = ( +/obj/structure/table, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -25 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/obj/item/clothing/glasses/science, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/science/misc_lab/range) +"cBk" = ( +/obj/structure/table, +/obj/machinery/recharger{ + pixel_y = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/button/door{ + id = "researchrangeshutters"; + name = "Blast Door Control"; + pixel_y = -24 + }, +/obj/machinery/light, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/science/misc_lab/range) +"cBl" = ( +/obj/item/gun/energy/laser/practice, +/obj/machinery/power/apc{ + areastring = "/area/science/misc_lab/range"; + name = "Research Firing Range APC"; + pixel_y = -28 + }, +/obj/structure/table, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/science/misc_lab/range) +"cBm" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "researchrangeshutters" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/science/misc_lab/range) +"cBn" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"cBo" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"cBp" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"cBq" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "toxins_blastdoor"; + name = "biohazard containment door" + }, +/turf/open/floor/plating, +/area/science/mixing) +"cBr" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cBs" = ( +/turf/open/floor/plasteel/white, +/area/science/mixing) +"cBt" = ( +/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, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"cBu" = ( +/obj/structure/chair/stool, +/obj/effect/landmark/start/scientist, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"cBv" = ( +/obj/structure/table/reinforced, +/obj/item/wrench, +/obj/item/screwdriver{ + pixel_y = 10 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/item/analyzer, +/turf/open/floor/plasteel, +/area/science/mixing) +"cBw" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"cBx" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"cBy" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"cBz" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"cBA" = ( +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"cBB" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/mixing) +"cBC" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/research{ + name = "Toxins Launch Room Access"; + req_access_txt = "8" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "toxins_blastdoor"; + name = "biohazard containment shutters" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/mixing) +"cBD" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/misc_lab) +"cBE" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/misc_lab) +"cBF" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/sign/poster/official/random{ + pixel_x = 32 + }, +/turf/open/floor/plasteel, +/area/science/misc_lab) +"cBG" = ( +/obj/machinery/door/airlock/research{ + name = "Toxins Launch Room"; + req_access_txt = "8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/mixing) +"cBH" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"cBI" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/science/mixing) +"cBJ" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/science/mixing) +"cBK" = ( +/obj/machinery/light/small, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/science/mixing) +"cBL" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/machinery/button/massdriver{ + id = "toxinsdriver"; + pixel_x = 24; + pixel_y = -24 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"cBM" = ( +/obj/structure/sign/warning/securearea{ + desc = "A warning sign which reads 'BOMB RANGE"; + name = "BOMB RANGE" + }, +/turf/closed/wall, +/area/science/test_area) +"cBN" = ( +/obj/structure/chair, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plating/airless, +/area/science/test_area) +"cBO" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating/airless, +/area/science/test_area) +"cBP" = ( +/obj/structure/chair, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plating/airless, +/area/science/test_area) +"cBR" = ( +/turf/closed/wall/r_wall, +/area/medical/virology) +"cBS" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/medical/virology) +"cBT" = ( +/obj/item/cigbutt, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cBU" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/newscaster{ + pixel_y = -30 + }, +/obj/item/storage/box/donkpockets{ + pixel_x = 3; + pixel_y = 5 + }, +/obj/structure/table/glass, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/medical/medbay/aft) +"cBV" = ( +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_y = -30 + }, +/obj/item/reagent_containers/spray/cleaner, +/obj/structure/table/glass, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/medical/medbay/aft) +"cBW" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/light/small, +/obj/structure/extinguisher_cabinet{ + pixel_y = -29 + }, +/obj/machinery/camera{ + c_tag = "Medbay Break Room"; + dir = 1; + network = list("ss13","medbay") + }, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/medical/medbay/aft) +"cBX" = ( +/obj/machinery/microwave{ + pixel_x = -3; + pixel_y = 6 + }, +/obj/structure/table/glass, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/medical/medbay/aft) +"cBY" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/white, +/area/medical/medbay/aft) +"cBZ" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/white, +/area/medical/medbay/aft) +"cCa" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/white/side{ + dir = 9 + }, +/area/medical/medbay/aft) +"cCb" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -24 + }, +/obj/structure/closet/secure_closet/personal/patient, +/turf/open/floor/plasteel/white/corner, +/area/medical/medbay/aft) +"cCc" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/closet/secure_closet/personal/patient, +/turf/open/floor/plasteel/white/side, +/area/medical/medbay/aft) +"cCd" = ( +/obj/structure/closet/secure_closet/personal/patient, +/turf/open/floor/plasteel/white/corner{ + dir = 8 + }, +/area/medical/medbay/aft) +"cCe" = ( +/turf/closed/wall, +/area/medical/morgue) +"cCf" = ( +/obj/structure/bodycontainer/morgue, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"cCg" = ( +/obj/effect/landmark/blobstart, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"cCi" = ( +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"cCj" = ( +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"cCk" = ( +/obj/machinery/airalarm{ + pixel_y = 32 + }, +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = 6; + pixel_y = 4 + }, +/obj/item/paper/guides/jobs/medical/morgue{ + pixel_x = -4 + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"cCl" = ( +/obj/machinery/vending/cigarette, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/aft) +"cCm" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_x = 29 + }, +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cCn" = ( +/turf/closed/wall/r_wall, +/area/science/robotics/mechbay) +"cCo" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "robotics_shutters"; + name = "robotics shutters" + }, +/turf/open/floor/plating, +/area/science/robotics/mechbay) +"cCp" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research/glass{ + name = "Robotics Lab"; + req_access_txt = "29" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"cCq" = ( +/turf/closed/wall/r_wall, +/area/science/robotics/lab) +"cCr" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/white, +/area/science/research) +"cCs" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/white, +/area/science/research) +"cCt" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/canister, +/turf/open/floor/plasteel, +/area/science/mixing) +"cCu" = ( +/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/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"cCv" = ( +/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/machinery/requests_console{ + department = "Science"; + departmentType = 2; + name = "Science Requests Console"; + pixel_y = -30; + receive_ore_updates = 1 + }, +/obj/structure/table/reinforced, +/obj/machinery/light, +/turf/open/floor/plasteel, +/area/science/mixing) +"cCw" = ( +/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/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"cCx" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -28 + }, +/obj/structure/tank_dispenser, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"cCy" = ( +/obj/machinery/disposal/bin{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"cCz" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"cCA" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"cCB" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"cCD" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"cCE" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"cCF" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/science/mixing) +"cCG" = ( +/obj/machinery/door/window/southleft{ + name = "Mass Driver Door"; + req_access_txt = "7" + }, +/obj/effect/turf_decal/loading_area, +/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 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"cCH" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plating/airless, +/area/science/test_area) +"cCI" = ( +/turf/open/floor/plating/airless, +/area/science/test_area) +"cCJ" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plating/airless, +/area/science/test_area) +"cCK" = ( +/mob/living/carbon/monkey, +/turf/open/floor/plasteel/freezer, +/area/medical/virology) +"cCL" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/plasteel/freezer, +/area/medical/virology) +"cCM" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plasteel/freezer, +/area/medical/virology) +"cCN" = ( +/obj/machinery/camera{ + c_tag = "Medbay Hallway Aft"; + dir = 4; + network = list("ss13","medbay") + }, +/turf/open/floor/plasteel/white/side{ + dir = 5 + }, +/area/medical/medbay/aft) +"cCO" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/aft) +"cCP" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white/side{ + dir = 8 + }, +/area/medical/medbay/aft) +"cCQ" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/medical/medbay/aft) +"cCR" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white/side{ + dir = 4 + }, +/area/medical/medbay/aft) +"cCS" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel/white, +/area/medical/medbay/aft) +"cCT" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel/white/side{ + dir = 8 + }, +/area/medical/medbay/aft) +"cCU" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/bodycontainer/morgue, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"cCV" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"cCW" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"cCX" = ( +/obj/effect/landmark/start/medical_doctor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"cCY" = ( +/obj/structure/table, +/obj/item/storage/box/bodybags, +/obj/item/pen, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_x = 29 + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"cCZ" = ( +/obj/machinery/vending/cola/random, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/aft) +"cDa" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "robotics_shutters"; + name = "robotics shutters" + }, +/turf/open/floor/plating, +/area/science/robotics/lab) +"cDb" = ( +/obj/structure/filingcabinet/chestdrawer{ + pixel_x = -2; + pixel_y = 2 + }, +/obj/machinery/button/door{ + id = "robotics_shutters"; + name = "robotics shutters control"; + pixel_x = -26; + pixel_y = 26; + req_access_txt = "29" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cDc" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cDd" = ( +/obj/machinery/mecha_part_fabricator, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = 20 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cDe" = ( +/obj/structure/sign/warning/nosmoking{ + pixel_y = 32 + }, +/obj/structure/rack, +/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/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cDf" = ( +/obj/machinery/mecha_part_fabricator, +/obj/machinery/camera{ + c_tag = "Robotics - Fore"; + network = list("ss13","rd") + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cDh" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/machinery/door/airlock/research{ + id_tag = "ResearchExt"; + name = "Research Division"; + req_one_access_txt = "47" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/research) +"cDi" = ( +/turf/closed/wall, +/area/science/robotics/lab) +"cDj" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"cDk" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall/r_wall, +/area/science/mixing) +"cDl" = ( +/obj/structure/sign/warning/securearea, +/turf/closed/wall/r_wall, +/area/science/mixing) +"cDm" = ( +/obj/machinery/shower{ + dir = 4; + name = "emergency shower" + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"cDn" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"cDo" = ( +/obj/structure/table, +/obj/item/crowbar, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/item/wrench, +/obj/item/clothing/mask/gas, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"cDp" = ( +/obj/structure/table, +/obj/item/clothing/glasses/science, +/obj/item/clothing/glasses/science, +/obj/item/multitool{ + pixel_x = 3 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"cDq" = ( +/obj/machinery/mass_driver{ + dir = 4; + id = "toxinsdriver" + }, +/turf/open/floor/plating, +/area/science/mixing) +"cDr" = ( +/obj/structure/sign/warning/vacuum/external{ + pixel_y = -32 + }, +/obj/machinery/light/small, +/turf/open/floor/plating, +/area/science/mixing) +"cDs" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/science/mixing) +"cDt" = ( +/obj/machinery/door/poddoor{ + id = "toxinsdriver"; + name = "Toxins Launcher Bay Door" + }, +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/science/mixing) +"cDu" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"cDv" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating/airless, +/area/science/test_area) +"cDw" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating/airless, +/area/science/test_area) +"cDx" = ( +/obj/item/beacon, +/turf/open/floor/plating/airless, +/area/science/test_area) +"cDy" = ( +/obj/item/target/alien/anchored, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/camera/preset/toxins{ + dir = 8 + }, +/turf/open/floor/plating/airless{ + luminosity = 2 + }, +/area/science/test_area) +"cDz" = ( +/turf/closed/indestructible{ + desc = "A wall impregnated with Fixium, able to withstand massive explosions with ease"; + icon_state = "riveted"; + name = "hyper-reinforced wall" + }, +/area/science/test_area) +"cDA" = ( +/obj/structure/bed/roller, +/turf/open/floor/plasteel/freezer, +/area/medical/virology) +"cDB" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/mob/living/carbon/monkey, +/turf/open/floor/plasteel/freezer, +/area/medical/virology) +"cDC" = ( +/obj/effect/landmark/blobstart, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/freezer, +/area/medical/virology) +"cDD" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/mob/living/carbon/monkey, +/turf/open/floor/plasteel/freezer, +/area/medical/virology) +"cDE" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/medical/virology) +"cDG" = ( +/obj/item/book/manual/wiki/infections{ + pixel_y = 7 + }, +/obj/item/reagent_containers/syringe/antiviral, +/obj/item/reagent_containers/dropper, +/obj/item/reagent_containers/spray/cleaner, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/structure/table/glass, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/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) +"cDH" = ( +/obj/machinery/smartfridge/chemistry/virology/preloaded, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/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/white, +/area/medical/virology) +"cDI" = ( +/obj/machinery/reagentgrinder{ + pixel_y = 8 + }, +/obj/structure/table/glass, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/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) +"cDJ" = ( +/obj/item/clothing/gloves/color/latex, +/obj/item/healthanalyzer, +/obj/item/clothing/glasses/hud/health, +/obj/structure/reagent_dispensers/virusfood{ + pixel_y = 30 + }, +/obj/structure/table/glass, +/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) +"cDK" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cDL" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cDM" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/port/aft) +"cDN" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cDO" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cDP" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance{ + name = "Medbay Maintenance"; + req_access_txt = "5" + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cDQ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white/side{ + dir = 4 + }, +/area/medical/medbay/aft) +"cDR" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/aft) +"cDS" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/white/side{ + dir = 8 + }, +/area/medical/medbay/aft) +"cDT" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/medical/medbay/aft) +"cDU" = ( +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/turf/open/floor/plasteel/white/side{ + dir = 4 + }, +/area/medical/medbay/aft) +"cDV" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/landmark/start/medical_doctor, +/turf/open/floor/plasteel/white, +/area/medical/medbay/aft) +"cDW" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel/white/side{ + dir = 8 + }, +/area/medical/medbay/aft) +"cDX" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/grunge{ + name = "Morgue"; + req_access_txt = "5" + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"cDY" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"cDZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"cEa" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"cEb" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"cEc" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"cEe" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/medical/surgery) +"cEf" = ( +/turf/closed/wall, +/area/hallway/primary/aft) +"cEg" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -24 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cEh" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cEi" = ( +/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, +/area/science/robotics/lab) +"cEj" = ( +/obj/structure/table/reinforced, +/obj/item/pen, +/obj/machinery/door/window/eastright{ + name = "Robotics Desk"; + req_access_txt = "29" + }, +/obj/item/folder/white{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/item/folder/white{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "robotics_shutters"; + name = "robotics shutters" + }, +/turf/open/floor/plating, +/area/science/robotics/lab) +"cEk" = ( +/obj/effect/landmark/start/roboticist, +/obj/structure/chair/office/light{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cEl" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cEm" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cEn" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cEo" = ( +/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/status_display/ai{ + pixel_x = 32 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cEp" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/extinguisher_cabinet{ + pixel_x = 27 + }, +/turf/open/floor/plasteel/white/side{ + dir = 9 + }, +/area/science/research) +"cEq" = ( +/obj/structure/lattice, +/turf/open/space, +/area/science/mixing) +"cEr" = ( +/obj/machinery/door/poddoor/incinerator_toxmix, +/turf/open/floor/engine/vacuum, +/area/science/mixing) +"cEs" = ( +/obj/structure/sign/warning/vacuum/external{ + pixel_y = 32 + }, +/turf/open/floor/engine/vacuum, +/area/science/mixing) +"cEt" = ( +/obj/machinery/sparker/toxmix{ + pixel_x = 25 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/toxins_mixing_output{ + dir = 4 + }, +/turf/open/floor/engine/vacuum, +/area/science/mixing) +"cEu" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/science/mixing) +"cEv" = ( +/obj/machinery/airlock_sensor/incinerator_toxmix{ + pixel_y = 24 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 4 + }, +/turf/open/floor/engine, +/area/science/mixing) +"cEw" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 4 + }, +/obj/machinery/meter, +/obj/machinery/embedded_controller/radio/airlock_controller/incinerator_toxmix{ + pixel_x = -24 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"cEx" = ( +/obj/machinery/atmospherics/components/binary/valve{ + dir = 4; + name = "manual outlet valve" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"cEy" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 2 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/science/mixing) +"cEz" = ( +/obj/machinery/portable_atmospherics/scrubber, +/obj/item/storage/firstaid/toxin, +/turf/open/floor/plasteel, +/area/science/mixing) +"cEA" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/space/nearstation) +"cEB" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plating/airless, +/area/science/test_area) +"cEC" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plating/airless, +/area/science/test_area) +"cEE" = ( +/turf/closed/wall, +/area/medical/virology) +"cEF" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/medical/virology) +"cEG" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/virology/glass{ + name = "Test Subject Cell"; + req_access_txt = "39" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel/freezer, +/area/medical/virology) +"cEH" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/medical/virology) +"cEI" = ( +/obj/item/paper_bin{ + pixel_x = -2; + pixel_y = 9 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/table/glass, +/obj/structure/sign/warning/deathsposal{ + pixel_x = -30 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"cEJ" = ( +/obj/structure/chair/office/light{ + dir = 1; + pixel_y = 3 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"cEK" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"cEL" = ( +/obj/structure/chair/office/light{ + dir = 4 + }, +/obj/effect/landmark/start/virologist, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"cEM" = ( +/obj/item/folder/white{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/item/folder/white{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/item/pen/red, +/obj/machinery/requests_console{ + department = "Virology"; + name = "Virology Requests Console"; + pixel_x = 29; + receive_ore_updates = 1 + }, +/obj/item/stack/sheet/mineral/plasma, +/obj/item/stack/sheet/mineral/plasma, +/obj/item/stack/sheet/mineral/plasma, +/obj/structure/table/glass, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"cEN" = ( +/obj/machinery/door/airlock/maintenance{ + req_one_access_txt = "12;5;39;6" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cEO" = ( +/turf/open/floor/plasteel/white/side{ + dir = 6 + }, +/area/medical/medbay/aft) +"cEP" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/white, +/area/medical/medbay/aft) +"cEQ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel/white/side{ + dir = 10 + }, +/area/medical/medbay/aft) +"cER" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 4 + }, +/area/medical/medbay/aft) +"cES" = ( +/obj/item/healthanalyzer{ + pixel_x = 1; + pixel_y = 4 + }, +/obj/structure/sign/warning/nosmoking{ + pixel_y = -30 + }, +/obj/structure/table/glass, +/turf/open/floor/plasteel/white/side{ + dir = 1 + }, +/area/medical/medbay/aft) +"cET" = ( +/obj/machinery/vending/medical, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/medical/medbay/aft) +"cEU" = ( +/obj/machinery/light_switch{ + pixel_x = -23 + }, +/obj/structure/bodycontainer/morgue, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"cEV" = ( +/obj/structure/disposalpipe/junction/flip{ + dir = 2 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"cEW" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"cEX" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"cEY" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/grunge{ + name = "Morgue"; + req_access_txt = "6" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"cEZ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/aft) +"cFa" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cFb" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cFc" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/sign/departments/science{ + name = "\improper ROBOTICS!"; + pixel_x = 32 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cFd" = ( +/obj/structure/noticeboard{ + dir = 4; + pixel_x = -27 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/aug_manipulator, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cFe" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cFf" = ( +/obj/effect/turf_decal/bot, +/obj/effect/landmark/start/cyborg, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cFg" = ( +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cFh" = ( +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cFi" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cFj" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 28; + pixel_y = 5 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/table, +/obj/item/wrench, +/obj/item/screwdriver{ + pixel_y = 10 + }, +/obj/item/multitool{ + pixel_x = 3 + }, +/obj/item/stack/cable_coil, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cFk" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Research Division Hallway - Robotics"; + dir = 4; + network = list("ss13","rd") + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"cFl" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"cFm" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/white/side{ + dir = 8 + }, +/area/science/research) +"cFn" = ( +/turf/open/floor/engine/vacuum, +/area/science/mixing) +"cFo" = ( +/obj/machinery/door/airlock/research/glass/incinerator/toxmix_exterior, +/turf/open/floor/engine, +/area/science/mixing) +"cFp" = ( +/obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume/incinerator_toxmix, +/obj/effect/landmark/blobstart, +/turf/open/floor/engine, +/area/science/mixing) +"cFq" = ( +/obj/machinery/door/airlock/research/glass/incinerator/toxmix_interior, +/turf/open/floor/engine, +/area/science/mixing) +"cFr" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"cFs" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/science/mixing) +"cFu" = ( +/obj/structure/closet, +/obj/item/assembly/prox_sensor{ + pixel_x = 2; + pixel_y = -2 + }, +/obj/item/assembly/signaler{ + pixel_x = -2; + pixel_y = 5 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cFv" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plating/airless, +/area/science/test_area) +"cFw" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating/airless, +/area/science/test_area) +"cFx" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plating/airless, +/area/science/test_area) +"cFy" = ( +/obj/item/radio/intercom{ + pixel_x = -28 + }, +/obj/structure/table/glass, +/obj/item/hand_labeler, +/obj/item/radio/headset/headset_med, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/machinery/camera{ + c_tag = "Virology - Cells"; + dir = 4; + network = list("ss13","medbay") + }, +/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) +"cFz" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/iv_drip, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"cFA" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"cFB" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"cFC" = ( +/obj/structure/rack, +/obj/item/crowbar/red, +/obj/machinery/light_switch{ + pixel_y = 26 + }, +/obj/item/wrench, +/obj/item/restraints/handcuffs, +/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/white, +/area/medical/virology) +"cFD" = ( +/obj/effect/spawner/structure/window, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/medical/virology) +"cFE" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/obj/machinery/atmospherics/pipe/simple/supply/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) +"cFF" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"cFG" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"cFH" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"cFI" = ( +/obj/machinery/computer/pandemic{ + layer = 2.5; + pixel_x = -4 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/item/radio/intercom{ + pixel_x = 28 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"cFJ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/medical/virology) +"cFK" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/medical/virology) +"cFL" = ( +/obj/structure/sign/warning/biohazard{ + pixel_y = 32 + }, +/obj/machinery/shower{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"cFM" = ( +/obj/structure/sink{ + pixel_y = 28 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"cFN" = ( +/obj/structure/sign/warning/securearea{ + pixel_y = 32 + }, +/obj/machinery/shower{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"cFO" = ( +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/machinery/iv_drip, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/aft) +"cFP" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_x = 29 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/aft) +"cFQ" = ( +/obj/item/kirbyplants{ + icon_state = "plant-21"; + pixel_x = -3; + pixel_y = 3 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/aft) +"cFR" = ( +/turf/open/floor/plasteel/white, +/area/medical/medbay/aft) +"cFS" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/white, +/area/medical/medbay/aft) +"cFT" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 27 + }, +/turf/open/floor/plasteel/white/side{ + dir = 9 + }, +/area/medical/medbay/aft) +"cFU" = ( +/obj/machinery/light/small, +/obj/structure/bodycontainer/morgue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"cFV" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"cFW" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"cFX" = ( +/obj/machinery/disposal/bin, +/obj/machinery/light_switch{ + pixel_x = 23 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"cFY" = ( +/obj/structure/closet, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/aft) +"cFZ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cGa" = ( +/obj/machinery/computer/rdconsole/robotics{ + dir = 4 + }, +/obj/machinery/requests_console{ + department = "Robotics"; + departmentType = 2; + name = "Robotics RC"; + pixel_x = -31; + receive_ore_updates = 1 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cGb" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cGc" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cGd" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cGe" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cGf" = ( +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/machinery/disposal/bin, +/obj/machinery/light_switch{ + pixel_x = 27 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cGg" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"cGh" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"cGi" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 24 + }, +/turf/open/floor/plasteel/white/side{ + dir = 10 + }, +/area/science/research) +"cGj" = ( +/obj/machinery/sparker/toxmix{ + pixel_x = 25 + }, +/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/toxins_mixing_input{ + dir = 4 + }, +/turf/open/floor/engine/vacuum, +/area/science/mixing) +"cGk" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/sign/warning/fire{ + pixel_y = -32 + }, +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 8 + }, +/turf/open/floor/engine, +/area/science/mixing) +"cGl" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 4 + }, +/obj/machinery/meter, +/obj/machinery/button/door/incinerator_vent_toxmix{ + pixel_x = -25; + pixel_y = 5 + }, +/obj/machinery/button/ignition/incinerator/toxmix{ + pixel_x = -25; + pixel_y = -5 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/machinery/airalarm/unlocked{ + dir = 1; + pixel_y = -22 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"cGm" = ( +/obj/machinery/atmospherics/components/binary/valve{ + dir = 4; + name = "manual inlet valve" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"cGn" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/portable_atmospherics/pump, +/turf/open/floor/plasteel, +/area/science/mixing) +"cGo" = ( +/obj/structure/closet/crate, +/obj/item/clothing/mask/gas, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cGp" = ( +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/obj/item/target, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/science/test_area) +"cGq" = ( +/obj/structure/table/glass, +/obj/item/folder/white{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/item/folder/white{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/item/pen/red, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"cGr" = ( +/obj/structure/chair/office/light{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"cGs" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"cGt" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"cGu" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/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/white, +/area/medical/virology) +"cGv" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/virology/glass{ + name = "Containment Cells"; + req_access_txt = "39" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/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/white, +/area/medical/virology) +"cGw" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"cGx" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"cGy" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/machinery/holopad, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"cGz" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"cGA" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"cGB" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/virology{ + name = "Virology Access"; + req_access_txt = "39" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + 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/white, +/area/medical/virology) +"cGC" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"cGD" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"cGE" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/doorButtons/airlock_controller{ + idExterior = "virology_airlock_exterior"; + idInterior = "virology_airlock_interior"; + idSelf = "virology_airlock_control"; + name = "Virology Access Console"; + pixel_x = 26; + pixel_y = 26; + req_access_txt = "39" + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"cGF" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/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/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/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/white, +/area/medical/virology) +"cGG" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/doorButtons/access_button{ + idDoor = "virology_airlock_interior"; + idSelf = "virology_airlock_control"; + name = "Virology Access Button"; + pixel_x = -26; + pixel_y = 28; + req_access_txt = "39" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"cGH" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"cGI" = ( +/obj/machinery/doorButtons/access_button{ + idDoor = "virology_airlock_exterior"; + idSelf = "virology_airlock_control"; + name = "Virology Access Button"; + pixel_y = 24; + req_access_txt = "39" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/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/effect/mapping_helpers/airlock/cyclelink_helper{ + 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/white, +/area/medical/virology) +"cGJ" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/aft) +"cGK" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment, +/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/white, +/area/medical/medbay/aft) +"cGL" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/virology{ + name = "Virology Access"; + req_access_txt = "39" + }, +/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/white, +/area/medical/medbay/aft) +"cGM" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/aft) +"cGN" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/aft) +"cGO" = ( +/turf/open/floor/plasteel/white/side{ + dir = 8 + }, +/area/medical/medbay/aft) +"cGP" = ( +/obj/machinery/door/airlock/abandoned{ + name = "Medical Surplus Storeroom"; + req_access_txt = "5" + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cGQ" = ( +/turf/open/floor/plasteel, +/area/maintenance/aft) +"cGR" = ( +/obj/structure/table, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/item/storage/backpack/duffelbag/med, +/obj/item/flashlight/pen{ + pixel_x = 4; + pixel_y = 3 + }, +/turf/open/floor/plasteel, +/area/maintenance/aft) +"cGS" = ( +/obj/structure/table, +/obj/item/retractor, +/obj/item/hemostat, +/obj/item/healthanalyzer, +/obj/item/clothing/glasses/eyepatch, +/obj/item/reagent_containers/food/drinks/bottle/vodka{ + pixel_x = 3; + pixel_y = 2 + }, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/turf/open/floor/plasteel, +/area/maintenance/aft) +"cGT" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/airlock/maintenance{ + name = "Morgue Maintenance"; + req_access_txt = "6" + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cGU" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/extinguisher_cabinet{ + pixel_x = -27 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cGV" = ( +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -22 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/rnd/production/circuit_imprinter, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cGW" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/bot, +/obj/effect/landmark/start/cyborg, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cGX" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cGY" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/rack, +/obj/item/storage/firstaid/regular{ + empty = 1; + name = "First-Aid (empty)" + }, +/obj/item/storage/firstaid/regular{ + empty = 1; + name = "First-Aid (empty)" + }, +/obj/item/storage/firstaid/regular{ + empty = 1; + name = "First-Aid (empty)" + }, +/obj/item/healthanalyzer{ + pixel_x = 4; + pixel_y = -4 + }, +/obj/item/healthanalyzer{ + pixel_x = 4; + pixel_y = -4 + }, +/obj/item/healthanalyzer{ + pixel_x = 4; + pixel_y = -4 + }, +/obj/item/radio/headset/headset_sci{ + pixel_x = -3 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cGZ" = ( +/obj/effect/spawner/structure/window, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/science/robotics/lab) +"cHa" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"cHb" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"cHc" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel/white, +/area/science/research) +"cHd" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/sign/warning/securearea{ + desc = "A warning sign which reads 'SERVER ROOM'."; + name = "SERVER ROOM" + }, +/turf/closed/wall/r_wall, +/area/science/server) +"cHe" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/science/server) +"cHf" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/science/server) +"cHg" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/science/mixing) +"cHh" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Toxins Lab Maintenance"; + req_access_txt = "8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "toxins_blastdoor"; + name = "biohazard containment shutters" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cHi" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/closed/wall/r_wall, +/area/science/mixing) +"cHl" = ( +/obj/structure/table/glass, +/obj/item/paper_bin{ + pixel_x = -2; + pixel_y = 9 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -25 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/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/white, +/area/medical/virology) +"cHm" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/obj/structure/cable/yellow{ + 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/virology) +"cHn" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/machinery/light, +/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/white, +/area/medical/virology) +"cHo" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/obj/structure/cable/yellow{ + 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/virology) +"cHp" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/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) +"cHq" = ( +/obj/effect/spawner/structure/window, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/turf/open/floor/plating, +/area/medical/virology) +"cHr" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/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/white, +/area/medical/virology) +"cHs" = ( +/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/white, +/area/medical/virology) +"cHt" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + 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/virology) +"cHu" = ( +/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/white, +/area/medical/virology) +"cHv" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/obj/machinery/camera{ + c_tag = "Virology - Lab"; + dir = 8; + network = list("ss13","medbay") + }, +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/machinery/light_switch{ + pixel_x = 26 + }, +/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) +"cHw" = ( +/obj/structure/closet/emcloset, +/obj/item/radio/intercom{ + pixel_x = -28 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"cHx" = ( +/obj/machinery/camera{ + c_tag = "Virology - Airlock"; + dir = 1; + network = list("ss13","medbay") + }, +/obj/machinery/light, +/obj/structure/closet/l3closet, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"cHy" = ( +/obj/structure/closet/l3closet, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"cHz" = ( +/obj/structure/sign/warning/biohazard{ + pixel_x = -32 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/aft) +"cHA" = ( +/obj/machinery/camera{ + c_tag = "Virology - Entrance"; + dir = 8; + network = list("ss13","medbay") + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/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/white, +/area/medical/medbay/aft) +"cHB" = ( +/obj/structure/sign/warning/biohazard{ + pixel_x = -32 + }, +/obj/item/storage/box/gloves{ + pixel_x = 3; + pixel_y = 4 + }, +/obj/item/storage/box/masks, +/obj/structure/table/glass, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/aft) +"cHC" = ( +/obj/structure/sign/warning/nosmoking{ + pixel_y = -30 + }, +/obj/item/storage/box/beakers{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/storage/box/bodybags, +/obj/structure/table/glass, +/turf/open/floor/plasteel/white, +/area/medical/medbay/aft) +"cHD" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/item/folder/white{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/item/folder/white{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/machinery/light, +/obj/item/hand_labeler, +/obj/item/pen, +/obj/item/pen, +/obj/structure/table/glass, +/turf/open/floor/plasteel/white, +/area/medical/medbay/aft) +"cHE" = ( +/obj/item/paper_bin{ + pixel_x = -2; + pixel_y = 8 + }, +/obj/structure/table/glass, +/turf/open/floor/plasteel/white/side{ + dir = 10 + }, +/area/medical/medbay/aft) +"cHF" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/turf/open/floor/plasteel, +/area/maintenance/aft) +"cHG" = ( +/obj/effect/decal/cleanable/oil, +/turf/open/floor/plasteel, +/area/maintenance/aft) +"cHH" = ( +/obj/structure/table, +/obj/item/reagent_containers/glass/beaker{ + pixel_x = 8; + pixel_y = 2 + }, +/obj/item/reagent_containers/blood, +/obj/item/reagent_containers/blood, +/obj/item/reagent_containers/syringe, +/obj/item/reagent_containers/dropper, +/obj/structure/sign/warning/biohazard{ + pixel_x = 32 + }, +/turf/open/floor/plasteel, +/area/maintenance/aft) +"cHI" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cHJ" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/aft) +"cHK" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating, +/area/maintenance/aft) +"cHL" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cHM" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance{ + req_one_access_txt = "12;5;39;6" + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cHN" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cHO" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cHP" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/bodycontainer/morgue, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cHQ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cHR" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cHS" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cHT" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cHU" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cHV" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research{ + name = "Robotics Lab"; + req_access_txt = "29" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/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, +/area/science/robotics/lab) +"cHW" = ( +/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/science/research) +"cHX" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/white, +/area/science/research) +"cHY" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/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/white, +/area/science/research) +"cHZ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "Research Division Server Room"; + req_access_txt = "30" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/science/server) +"cIa" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/turf/open/floor/plasteel/dark, +/area/science/server) +"cIc" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/freezer/on, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/turf/open/floor/plasteel/dark, +/area/science/server) +"cId" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/sign/warning/securearea{ + desc = "A warning sign which reads 'SERVER ROOM'."; + name = "SERVER ROOM"; + pixel_y = 32 + }, +/turf/open/floor/plating, +/area/science/server) +"cIe" = ( +/obj/machinery/rnd/server, +/turf/open/floor/circuit/telecomms/server, +/area/science/server) +"cIf" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + external_pressure_bound = 140; + name = "server vent"; + pressure_checks = 0 + }, +/turf/open/floor/circuit/telecomms/server, +/area/science/server) +"cIg" = ( +/turf/closed/wall/r_wall, +/area/science/server) +"cIh" = ( +/obj/structure/closet, +/obj/item/storage/box/lights/mixed, +/obj/item/flashlight, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cIi" = ( +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cIj" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/sign/warning/biohazard{ + pixel_y = 32 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cIk" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cIl" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/landmark/event_spawn, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cIm" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research{ + name = "Research and Development Lab"; + req_one_access_txt = "7;29" + }, +/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/white, +/area/science/lab) +"cIn" = ( +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cIp" = ( +/obj/effect/spawner/structure/window, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/medical/virology) +"cIq" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/virology/glass{ + name = "Isolation B"; + req_access_txt = "39" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel/freezer, +/area/medical/virology) +"cIr" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/virology/glass{ + name = "Isolation A"; + req_access_txt = "39" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel/freezer, +/area/medical/virology) +"cIs" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/closed/wall, +/area/medical/virology) +"cIt" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -26 + }, +/obj/machinery/vending/wardrobe/viro_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/medical/virology) +"cIu" = ( +/obj/structure/closet/crate/freezer, +/obj/item/reagent_containers/blood, +/obj/item/reagent_containers/blood{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/reagent_containers/blood/AMinus, +/obj/item/reagent_containers/blood/BMinus{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/reagent_containers/blood/BPlus{ + pixel_x = 1; + pixel_y = 2 + }, +/obj/item/reagent_containers/blood/OMinus, +/obj/item/reagent_containers/blood/OPlus{ + pixel_x = -2; + pixel_y = -1 + }, +/obj/item/reagent_containers/blood/random, +/obj/item/reagent_containers/blood/random, +/obj/item/reagent_containers/blood/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/medical/virology) +"cIv" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + 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/medical/virology) +"cIw" = ( +/obj/structure/closet/secure_closet/medical1, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/medical/virology) +"cIx" = ( +/obj/structure/closet/l3closet/virology, +/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/medical/virology) +"cIy" = ( +/obj/structure/sign/warning/biohazard{ + pixel_x = -32 + }, +/turf/open/space, +/area/space) +"cIz" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/maintenance{ + req_one_access_txt = "12;5;39;6" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cIA" = ( +/obj/structure/bed/roller, +/obj/structure/bed/roller, +/obj/machinery/iv_drip, +/obj/machinery/iv_drip, +/turf/open/floor/plasteel, +/area/maintenance/aft) +"cIB" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plating, +/area/maintenance/aft) +"cIC" = ( +/obj/item/clothing/gloves/color/latex/nitrile, +/obj/structure/rack, +/obj/item/clothing/suit/toggle/labcoat, +/obj/item/clothing/suit/apron/surgical, +/obj/item/clothing/mask/surgical, +/obj/item/clothing/mask/breath/medical, +/turf/open/floor/plating{ + icon_state = "platingdmg2" + }, +/area/maintenance/aft) +"cID" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/aft) +"cIE" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/white/corner, +/area/hallway/primary/aft) +"cIF" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/white/corner, +/area/hallway/primary/aft) +"cIG" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/camera{ + c_tag = "Aft Primary Hallway - Aft"; + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/white/corner, +/area/hallway/primary/aft) +"cIH" = ( +/obj/structure/sign/directions/evac, +/turf/closed/wall/r_wall, +/area/hallway/primary/aft) +"cII" = ( +/obj/structure/table, +/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 + }, +/turf/open/floor/plasteel/white/side{ + dir = 4 + }, +/area/science/robotics/lab) +"cIJ" = ( +/obj/effect/landmark/start/roboticist, +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/turf/open/floor/plasteel/white, +/area/science/robotics/lab) +"cIK" = ( +/obj/machinery/holopad, +/turf/open/floor/plasteel/white, +/area/science/robotics/lab) +"cIL" = ( +/obj/structure/table, +/obj/item/clothing/gloves/color/latex, +/obj/item/surgical_drapes, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/turf/open/floor/plasteel/white/side{ + dir = 8 + }, +/area/science/robotics/lab) +"cIM" = ( +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cIN" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/table, +/obj/item/storage/box/bodybags{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/borg/upgrade/rename, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cIO" = ( +/obj/structure/rack, +/obj/item/storage/toolbox/electrical{ + pixel_x = -1; + pixel_y = 4 + }, +/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/item/multitool{ + pixel_x = 3 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cIP" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/science/robotics/lab) +"cIQ" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"cIR" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/white, +/area/science/research) +"cIS" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_x = 29 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"cIT" = ( +/turf/closed/wall, +/area/science/server) +"cIU" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/server) +"cIV" = ( +/obj/structure/chair/office/light, +/turf/open/floor/plasteel/dark, +/area/science/server) +"cIW" = ( +/obj/machinery/atmospherics/pipe/simple{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/science/server) +"cIX" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command/glass{ + name = "Server Access"; + req_access_txt = "30" + }, +/obj/machinery/atmospherics/pipe/simple{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/server) +"cIY" = ( +/obj/machinery/atmospherics/pipe/simple{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/telecomms, +/area/science/server) +"cIZ" = ( +/obj/effect/landmark/blobstart, +/obj/machinery/atmospherics/pipe/manifold{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/airalarm/server{ + dir = 8; + pixel_x = 22 + }, +/turf/open/floor/plasteel/dark/telecomms, +/area/science/server) +"cJa" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cJb" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cJc" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/starboard/aft) +"cJd" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cJe" = ( +/obj/structure/sign/warning/vacuum/external{ + pixel_y = -32 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cJf" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/external{ + req_access_txt = "13" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cJg" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/item/bedsheet/medical, +/obj/structure/bed, +/turf/open/floor/plasteel/freezer, +/area/medical/virology) +"cJh" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/freezer, +/area/medical/virology) +"cJi" = ( +/obj/structure/bed, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/item/bedsheet/medical, +/turf/open/floor/plasteel/freezer, +/area/medical/virology) +"cJj" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/turf/closed/wall, +/area/medical/virology) +"cJk" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/airlock/virology{ + name = "Break Room"; + req_access_txt = "39" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/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/white, +/area/medical/virology) +"cJl" = ( +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/aft) +"cJm" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/maintenance{ + name = "Research Lab Maintenance"; + req_one_access_txt = "7;29" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cJn" = ( +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cJo" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cJq" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/space_heater, +/turf/open/floor/plating, +/area/maintenance/aft) +"cJr" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/closet/crate, +/obj/item/clothing/gloves/color/fyellow, +/obj/item/wrench, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cJs" = ( +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/structure/closet/firecloset, +/turf/open/floor/plating, +/area/maintenance/aft) +"cJt" = ( +/obj/structure/rack, +/obj/item/screwdriver{ + pixel_y = 6 + }, +/obj/item/crowbar, +/obj/item/storage/pill_bottle, +/turf/open/floor/plating, +/area/maintenance/aft) +"cJu" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/item/cigbutt, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/aft) +"cJv" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/decal/cleanable/generic, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cJw" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance/abandoned{ + name = "Medical Surplus Storeroom"; + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cJx" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cJy" = ( +/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) +"cJz" = ( +/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) +"cJA" = ( +/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) +"cJB" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/obj/machinery/newscaster{ + 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/hallway/secondary/exit/departure_lounge) +"cJC" = ( +/obj/machinery/vending/coffee, +/obj/structure/sign/map/left{ + desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; + icon_state = "map-left-MS"; + 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/hallway/secondary/exit/departure_lounge) +"cJD" = ( +/obj/machinery/vending/snack/random, +/obj/structure/sign/map/right{ + desc = "A framed picture of the station. Clockwise from security in red at the top, you see engineering in yellow, science in purple, escape in checkered red-and-white, medbay in green, arrivals in checkered red-and-blue, and then cargo in brown."; + icon_state = "map-right-MS"; + 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/hallway/secondary/exit/departure_lounge) +"cJE" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Departure Lounge" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cJF" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Departure Lounge" + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cJG" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Departure Lounge" + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cJH" = ( +/obj/structure/table, +/obj/item/retractor, +/obj/item/hemostat, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_x = -29 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 4 + }, +/area/science/robotics/lab) +"cJJ" = ( +/obj/machinery/computer/operating{ + dir = 1; + name = "Robotics Operating Computer" + }, +/turf/open/floor/plasteel/white/side{ + dir = 1 + }, +/area/science/robotics/lab) +"cJK" = ( +/obj/structure/table, +/obj/item/mmi, +/obj/item/mmi, +/obj/item/mmi, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/science/robotics/lab) +"cJL" = ( +/obj/machinery/door/window/eastleft{ + dir = 1; + name = "Robotics Deliveries"; + req_access_txt = "29" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cJM" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/vending/wardrobe/robo_wardrobe, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cJN" = ( +/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/item/stock_parts/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/obj/item/crowbar, +/obj/item/assembly/prox_sensor{ + pixel_x = -8; + pixel_y = 4 + }, +/obj/item/assembly/prox_sensor{ + pixel_x = -8; + pixel_y = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cJO" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/plasteel/white, +/area/science/research) +"cJP" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/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/research) +"cJQ" = ( +/obj/item/kirbyplants{ + icon_state = "plant-10" + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"cJR" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/structure/filingcabinet/chestdrawer, +/turf/open/floor/plasteel/dark, +/area/science/server) +"cJS" = ( +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -28 + }, +/obj/machinery/computer/rdservercontrol{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/science/server) +"cJT" = ( +/obj/structure/table, +/obj/item/folder/white{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/item/pen, +/turf/open/floor/plasteel/dark, +/area/science/server) +"cJU" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/science/server) +"cJW" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{ + dir = 1; + external_pressure_bound = 120; + name = "server vent" + }, +/turf/open/floor/circuit/telecomms/server, +/area/science/server) +"cJX" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/aft) +"cJY" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/costume, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cJZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/reagent_dispensers/watertank, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cKa" = ( +/obj/structure/closet, +/obj/item/clothing/glasses/science, +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cKb" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cKc" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cKe" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel/freezer, +/area/medical/virology) +"cKf" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/freezer, +/area/medical/virology) +"cKg" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/freezer, +/area/medical/virology) +"cKh" = ( +/obj/effect/landmark/xeno_spawn, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel/freezer, +/area/medical/virology) +"cKi" = ( +/obj/structure/table/glass, +/obj/machinery/newscaster{ + pixel_x = -30 + }, +/obj/item/folder/white{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/item/folder/white{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/item/paper, +/obj/item/pen/red, +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 + }, +/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) +"cKj" = ( +/obj/structure/chair/office/light{ + dir = 8 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_y = 29 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"cKk" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"cKl" = ( +/obj/structure/table/glass, +/obj/item/storage/box/donkpockets{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/machinery/light_switch{ + pixel_y = 26 + }, +/obj/machinery/camera{ + c_tag = "Virology - Break Room"; + network = list("ss13","medbay") + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"cKm" = ( +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_x = 29 + }, +/obj/structure/table/glass, +/obj/machinery/microwave{ + pixel_x = -3; + pixel_y = 6 + }, +/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) +"cKn" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/maintenance/aft) +"cKo" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/aft) +"cKp" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating, +/area/maintenance/aft) +"cKq" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cKr" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 8; + sortType = 17 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/maintenance/aft) +"cKs" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cKu" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cKv" = ( +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cKw" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cKx" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cKz" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cKA" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cKB" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cKC" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/item/radio/intercom{ + pixel_y = 25 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cKD" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cKE" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cKF" = ( +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 24 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cKG" = ( +/obj/structure/plasticflaps/opaque, +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=1"; + dir = 1; + freq = 1400; + location = "Robotics" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cKH" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Robotics Maintenance"; + req_access_txt = "29" + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cKI" = ( +/obj/structure/sign/warning/securearea, +/turf/closed/wall/r_wall, +/area/science/research) +"cKJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/aft) +"cKK" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cKL" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance/abandoned{ + name = "Storage Room"; + req_one_access_txt = "12;47" + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cKM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cKN" = ( +/obj/item/storage/box/lights/mixed, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cKO" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/starboard/aft) +"cKP" = ( +/turf/closed/wall/r_wall, +/area/maintenance/solars/starboard/aft) +"cKQ" = ( +/obj/machinery/door/airlock/engineering{ + name = "Starboard Quarter Solar Access"; + req_access_txt = "10" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/aft) +"cKR" = ( +/obj/structure/sign/warning/electricshock, +/turf/closed/wall/r_wall, +/area/maintenance/solars/starboard/aft) +"cKS" = ( +/obj/structure/table/glass, +/obj/item/reagent_containers/dropper, +/obj/item/reagent_containers/syringe, +/obj/item/reagent_containers/glass/beaker, +/turf/open/floor/plasteel/freezer, +/area/medical/virology) +"cKT" = ( +/obj/structure/table/glass, +/obj/item/folder/white{ + pixel_y = 4 + }, +/obj/item/pen/red, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/freezer, +/area/medical/virology) +"cKU" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/turf/closed/wall, +/area/medical/virology) +"cKV" = ( +/obj/structure/table/glass, +/obj/item/paper_bin{ + pixel_x = -2; + pixel_y = 9 + }, +/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) +"cKW" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"cKX" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"cKY" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"cKZ" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"cLb" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/airlock/maintenance{ + name = "Crematorium Maintenance"; + req_one_access_txt = "27" + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cLc" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/maintenance{ + name = "Chapel Office Maintenance"; + req_one_access_txt = "22" + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cLd" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cLe" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cLf" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cLg" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/junction/flip{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/maintenance/aft) +"cLh" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cLi" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg2" + }, +/area/maintenance/aft) +"cLj" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cLk" = ( +/obj/machinery/door/airlock/maintenance{ + req_one_access_txt = "12;5;39;6" + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cLl" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cLm" = ( +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cLn" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=10-Aft-To-Central"; + location = "9.4-Escape-4" + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cLo" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cLp" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cLq" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cLr" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cLs" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cLt" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cLu" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cLv" = ( +/obj/machinery/door/airlock/maintenance{ + req_one_access_txt = "12;47" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cLw" = ( +/obj/structure/cable/yellow{ + 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/aft) +"cLx" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/aft) +"cLy" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cLz" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/landmark/blobstart, +/turf/open/floor/plating, +/area/maintenance/aft) +"cLA" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/maintenance{ + req_one_access_txt = "12;47" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cLB" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cLC" = ( +/obj/machinery/button/ignition/incinerator/atmos{ + pixel_x = 8; + pixel_y = -36 + }, +/obj/machinery/computer/security/telescreen{ + desc = "Used for watching the turbine vent."; + dir = 8; + name = "turbine vent monitor"; + network = list("turbine"); + pixel_x = 29 + }, +/obj/machinery/button/door/incinerator_vent_atmos_main{ + pixel_x = -8; + pixel_y = -36 + }, +/obj/machinery/atmospherics/pipe/simple/general/visible, +/obj/machinery/button/door/incinerator_vent_atmos_aux{ + pixel_x = -8; + pixel_y = -24 + }, +/obj/machinery/computer/turbine_computer{ + dir = 1; + id = "incineratorturbine" + }, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"cLD" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/aft) +"cLE" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/freezer/on{ + dir = 1; + name = "euthanization chamber freezer" + }, +/turf/open/floor/plating, +/area/science/xenobiology) +"cLF" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg2" + }, +/area/maintenance/starboard/aft) +"cLH" = ( +/obj/machinery/space_heater, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cLJ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/closet, +/obj/item/storage/box/lights/mixed, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cLK" = ( +/obj/machinery/power/smes, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/aft) +"cLL" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/aft) +"cLN" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/turf/closed/wall/r_wall, +/area/medical/virology) +"cLO" = ( +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/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/white, +/area/medical/virology) +"cLP" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"cLQ" = ( +/obj/structure/chair/stool, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/structure/cable/yellow{ + 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/virology) +"cLR" = ( +/obj/structure/chair/stool, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"cLS" = ( +/obj/structure/chair/stool, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 24 + }, +/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) +"cLU" = ( +/obj/effect/landmark/blobstart, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/engine, +/area/science/explab) +"cMb" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Chapel Maintenance"; + req_one_access_txt = "12;22" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/aft) +"cMd" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cMe" = ( +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cMf" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cMg" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cMh" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cMi" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=9.2-Escape-2"; + location = "9.1-Escape-1" + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cMj" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Departure Lounge - Starboard Fore"; + dir = 8 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 27 + }, +/obj/item/kirbyplants{ + icon_state = "plant-14" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cMk" = ( +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/turf/open/space, +/area/space) +"cMl" = ( +/obj/structure/table, +/obj/item/stack/sheet/glass/fifty{ + pixel_x = 3; + pixel_y = -4 + }, +/obj/item/stack/sheet/metal/fifty, +/turf/open/floor/plating, +/area/maintenance/aft) +"cMm" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cMn" = ( +/obj/structure/plasticflaps, +/obj/machinery/conveyor{ + dir = 4; + id = "QMLoad2" + }, +/turf/open/floor/plating, +/area/cargo/storage) +"cMp" = ( +/obj/structure/chair, +/obj/item/cigbutt, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cMq" = ( +/obj/machinery/power/terminal{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/machinery/camera{ + c_tag = "Aft Starboard Solar Maintenance"; + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/aft) +"cMr" = ( +/obj/effect/landmark/xeno_spawn, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/solars/starboard/aft) +"cMs" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/aft) +"cMt" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"cMu" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"cMv" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plating/airless, +/area/medical/virology) +"cMw" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/medical/virology) +"cMx" = ( +/obj/machinery/atmospherics/components/unary/tank/air{ + dir = 1 + }, +/obj/structure/cable/yellow{ + 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/medical/virology) +"cMy" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1; + name = "virology air connector port" + }, +/obj/machinery/portable_atmospherics/canister/air, +/obj/structure/cable/yellow{ + 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/medical/virology) +"cMz" = ( +/obj/item/trash/popcorn, +/obj/structure/table/glass, +/obj/structure/cable/yellow{ + icon_state = "1-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/medical/virology) +"cMA" = ( +/obj/item/reagent_containers/food/snacks/sosjerky, +/obj/structure/table/glass, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/medical/virology) +"cMB" = ( +/obj/item/trash/cheesie{ + pixel_y = 4 + }, +/obj/structure/table/glass, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/medical/virology) +"cMQ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/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/hallway/primary/central) +"cMR" = ( +/obj/structure/table, +/obj/item/candle, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cMS" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/landmark/start/assistant, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cMT" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cMU" = ( +/obj/machinery/status_display/evac{ + layer = 4 + }, +/turf/closed/wall, +/area/hallway/secondary/exit/departure_lounge) +"cMV" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cMW" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cMX" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cMY" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cMZ" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/westleft{ + base_state = "right"; + icon_state = "right"; + name = "Outer Window" + }, +/obj/machinery/door/window/brigdoor{ + dir = 4; + name = "Security Desk"; + req_access_txt = "1" + }, +/obj/item/folder/red, +/obj/item/pen, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cNa" = ( +/obj/structure/chair/office/dark{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/computer/security/telescreen{ + desc = "Used for watching output from station security cameras."; + name = "Security Camera Monitor"; + pixel_y = 30 + }, +/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/hallway/secondary/exit/departure_lounge) +"cNb" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/structure/reagent_dispensers/peppertank{ + pixel_y = 28 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cNc" = ( +/obj/structure/chair, +/obj/structure/sign/map/left{ + desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; + icon_state = "map-left-MS"; + pixel_y = 32 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cNd" = ( +/obj/structure/table, +/obj/machinery/recharger{ + pixel_y = 4 + }, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/obj/structure/sign/map/right{ + desc = "A framed picture of the station. Clockwise from security in red at the top, you see engineering in yellow, science in purple, escape in checkered red-and-white, medbay in green, arrivals in checkered red-and-blue, and then cargo in brown."; + icon_state = "map-right-MS"; + 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/hallway/secondary/exit/departure_lounge) +"cNe" = ( +/turf/open/floor/plating, +/area/maintenance/aft) +"cNf" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cNg" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/item/cigbutt, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cNh" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/aft) +"cNi" = ( +/obj/machinery/biogenerator, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cNj" = ( +/obj/item/reagent_containers/food/snacks/grown/banana, +/obj/item/reagent_containers/food/snacks/grown/banana, +/obj/item/reagent_containers/food/snacks/grown/wheat, +/obj/item/reagent_containers/food/snacks/grown/watermelon, +/obj/item/reagent_containers/food/snacks/grown/watermelon, +/obj/item/reagent_containers/food/snacks/grown/watermelon, +/obj/item/reagent_containers/food/snacks/grown/citrus/orange, +/obj/item/reagent_containers/food/snacks/grown/grapes, +/obj/item/reagent_containers/food/snacks/grown/cocoapod, +/obj/structure/rack, +/obj/item/seeds/wheat, +/obj/item/seeds/watermelon, +/obj/item/seeds/watermelon, +/obj/item/seeds/grape, +/obj/item/seeds/glowshroom, +/obj/effect/turf_decal/stripes/line, +/obj/item/seeds/cannabis/rainbow, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cNk" = ( +/obj/item/storage/bag/plants/portaseeder, +/obj/item/storage/bag/plants/portaseeder, +/obj/item/plant_analyzer, +/obj/item/cultivator, +/obj/item/reagent_containers/glass/bucket, +/obj/structure/rack, +/obj/item/seeds/corn, +/obj/item/seeds/cabbage, +/obj/item/seeds/ambrosia, +/obj/item/seeds/grass, +/obj/item/reagent_containers/food/snacks/grown/mushroom/glowshroom, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cNl" = ( +/obj/machinery/hydroponics/soil{ + pixel_y = 8 + }, +/obj/item/seeds/carrot, +/obj/effect/turf_decal/stripes/line, +/obj/item/seeds/cannabis/white, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cNm" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cNn" = ( +/obj/machinery/hydroponics/soil{ + pixel_y = 8 + }, +/obj/item/plant_analyzer, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cNo" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/aft) +"cNp" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/chair/stool, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/aft) +"cNq" = ( +/obj/machinery/power/solar_control{ + dir = 8; + id = "aftstarboard"; + name = "Starboard Quarter Solar Control" + }, +/obj/structure/cable, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/structure/sign/warning/vacuum/external{ + pixel_y = -32 + }, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/aft) +"cNr" = ( +/obj/structure/disposaloutlet, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"cNs" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 1 + }, +/turf/open/floor/plating/airless, +/area/medical/virology) +"cNw" = ( +/obj/structure/cable, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/machinery/power/compressor{ + comp_id = "incineratorturbine"; + dir = 1; + luminosity = 2 + }, +/turf/open/floor/engine/vacuum, +/area/maintenance/disposal/incinerator) +"cNI" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cNJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cNK" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cNL" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cNN" = ( +/obj/structure/flora/ausbushes/fernybush, +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/palebush, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/grass, +/area/hallway/secondary/exit/departure_lounge) +"cNO" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cNP" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/hallway/secondary/exit/departure_lounge) +"cNQ" = ( +/obj/machinery/computer/secure_data{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cNR" = ( +/obj/structure/chair/office/dark{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cNS" = ( +/obj/structure/table, +/obj/item/folder/red{ + pixel_x = 3 + }, +/obj/item/folder/white{ + pixel_x = -4; + pixel_y = 2 + }, +/obj/item/restraints/handcuffs, +/obj/machinery/light{ + dir = 4 + }, +/obj/item/radio/off, +/obj/machinery/requests_console{ + department = "Security"; + departmentType = 5; + pixel_x = 30 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cNT" = ( +/obj/structure/sign/warning/vacuum{ + pixel_x = 32 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/maintenance/aft) +"cNU" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cNW" = ( +/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/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/starboard/aft) +"cNX" = ( +/obj/item/seeds/watermelon, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cNY" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/grille, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cNZ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/structure/chair, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cOa" = ( +/obj/structure/cable, +/obj/machinery/power/turbine{ + luminosity = 2 + }, +/turf/open/floor/engine/vacuum, +/area/maintenance/disposal/incinerator) +"cOo" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cOp" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cOq" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cOr" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cOs" = ( +/obj/machinery/status_display/ai, +/turf/closed/wall, +/area/hallway/secondary/exit/departure_lounge) +"cOt" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cOu" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cOv" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + name = "Departure Lounge Security Post"; + req_access_txt = "63" + }, +/obj/structure/cable/yellow{ + 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/hallway/secondary/exit/departure_lounge) +"cOw" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/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/hallway/secondary/exit/departure_lounge) +"cOx" = ( +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cOy" = ( +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/pen, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cOz" = ( +/obj/structure/table, +/obj/machinery/newscaster/security_unit{ + pixel_x = 29; + pixel_y = 1 + }, +/obj/machinery/camera{ + c_tag = "Departure Lounge - Security Post"; + dir = 1 + }, +/obj/item/book/manual/wiki/security_space_law{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/taperecorder{ + pixel_x = 4 + }, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -32 + }, +/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/hallway/secondary/exit/departure_lounge) +"cOA" = ( +/obj/structure/rack, +/obj/item/clothing/mask/gas, +/obj/item/clothing/glasses/sunglasses, +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cOB" = ( +/obj/item/seeds/sunflower/moonflower, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cOC" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cOD" = ( +/obj/item/seeds/berry, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cOE" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/item/reagent_containers/glass/bucket, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cOT" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cOU" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cOV" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cOW" = ( +/obj/structure/flora/ausbushes/fernybush, +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/ausbushes/brflowers, +/obj/structure/flora/ausbushes/sunnybush, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/grass, +/area/hallway/secondary/exit/departure_lounge) +"cOX" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cOY" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cOZ" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cPa" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/structure/sign/warning/electricshock{ + pixel_x = 32 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cPb" = ( +/turf/closed/wall, +/area/hallway/secondary/exit/departure_lounge) +"cPc" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/hallway/secondary/exit/departure_lounge) +"cPd" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/hallway/secondary/exit/departure_lounge) +"cPe" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cPf" = ( +/obj/machinery/hydroponics/soil{ + pixel_y = 8 + }, +/obj/item/seeds/glowshroom, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/item/seeds/cannabis/ultimate, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cPg" = ( +/obj/machinery/hydroponics/soil{ + pixel_y = 8 + }, +/obj/item/cultivator, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cPh" = ( +/obj/machinery/hydroponics/soil{ + pixel_y = 8 + }, +/obj/item/seeds/ambrosia, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cPi" = ( +/obj/machinery/hydroponics/soil{ + pixel_y = 8 + }, +/obj/item/seeds/watermelon, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/item/seeds/cannabis, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cPj" = ( +/obj/machinery/hydroponics/soil{ + pixel_y = 8 + }, +/obj/item/seeds/berry, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cPs" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cPt" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cPu" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/landmark/start/assistant, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cPv" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/hallway/secondary/exit/departure_lounge) +"cPx" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cPz" = ( +/obj/structure/closet, +/obj/item/flashlight, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 3; + name = "3maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cPO" = ( +/obj/machinery/camera{ + c_tag = "Departure Lounge - Port Aft"; + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -27 + }, +/obj/item/kirbyplants{ + icon_state = "plant-04" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cPP" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cPQ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cPR" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cPS" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/item/beacon, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cPT" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cPU" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cPV" = ( +/obj/machinery/camera{ + c_tag = "Departure Lounge - Starboard Aft"; + dir = 8 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_x = 29 + }, +/obj/item/kirbyplants{ + icon_state = "plant-16" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cPW" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/grille, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/aft) +"cPX" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research{ + name = "Xenobiology Lab"; + req_access_txt = "47" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/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/white, +/area/science/research) +"cPY" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/aft) +"cQm" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cQo" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=9.4-Escape-4"; + location = "9.3-Escape-3" + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cQp" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=9.3-Escape-3"; + location = "9.2-Escape-2" + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cQq" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cQr" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Research Division Hallway - Xenobiology Lab Access"; + network = list("ss13","rd") + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"cQs" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/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/white, +/area/science/xenobiology) +"cQt" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/effect/landmark/blobstart, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"cQv" = ( +/obj/machinery/camera{ + c_tag = "Toxins - Launch Area"; + network = list("ss13","rd") + }, +/obj/machinery/suit_storage_unit/rd, +/obj/effect/turf_decal/bot{ + dir = 1 + }, +/turf/open/floor/plasteel{ + dir = 1 + }, +/area/science/mixing) +"cQB" = ( +/obj/machinery/doppler_array/research/science{ + dir = 4 + }, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = 22 + }, +/obj/effect/turf_decal/bot{ + dir = 1 + }, +/turf/open/floor/plasteel{ + dir = 1 + }, +/area/science/mixing) +"cQC" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/light_switch{ + pixel_y = 25 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"cQD" = ( +/obj/structure/table, +/obj/item/stack/sheet/glass{ + amount = 40; + 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 + }, +/obj/item/stack/packageWrap, +/obj/item/stack/packageWrap, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cQJ" = ( +/obj/structure/sign/warning/vacuum{ + pixel_x = -32 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cQK" = ( +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cQL" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cQM" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cQN" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cQO" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cQP" = ( +/obj/structure/sign/warning/vacuum{ + pixel_x = 32 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cQR" = ( +/obj/machinery/door/poddoor/preopen{ + id = "xeno_blastdoor"; + name = "biohazard containment door" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cQS" = ( +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_x = 29 + }, +/obj/machinery/door/poddoor/preopen{ + id = "xeno_blastdoor"; + name = "biohazard containment door" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cQY" = ( +/obj/machinery/door/airlock/external{ + name = "Departure Lounge Airlock" + }, +/obj/effect/turf_decal/delivery, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cQZ" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/door/poddoor/preopen{ + id = "xeno_blastdoor"; + name = "biohazard containment door" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cRa" = ( +/obj/structure/sign/warning/biohazard, +/turf/closed/wall, +/area/science/xenobiology) +"cRb" = ( +/obj/structure/sign/warning/securearea, +/turf/closed/wall, +/area/science/xenobiology) +"cRc" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research{ + name = "Xenobiology Lab"; + req_access_txt = "47" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/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/white, +/area/science/xenobiology) +"cRe" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/science/xenobiology) +"cRf" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"cRg" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"cRh" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/machinery/light_switch{ + pixel_x = -23 + }, +/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) +"cRi" = ( +/turf/closed/wall/r_wall, +/area/science/xenobiology) +"cRk" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"cRs" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cRt" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cRu" = ( +/obj/structure/sign/warning/biohazard, +/turf/closed/wall/r_wall, +/area/science/xenobiology) +"cRv" = ( +/obj/machinery/doorButtons/access_button{ + idDoor = "xeno_airlock_exterior"; + idSelf = "xeno_airlock_control"; + name = "Access Button"; + pixel_x = -24 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/locked, +/obj/machinery/door/airlock/research{ + autoclose = 0; + frequency = 1449; + id_tag = "xeno_airlock_exterior"; + name = "Xenobiology Lab External Airlock"; + req_access_txt = "55" + }, +/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/white, +/area/science/xenobiology) +"cRw" = ( +/obj/structure/sign/warning/securearea, +/turf/closed/wall/r_wall, +/area/science/xenobiology) +"cRx" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/science/xenobiology) +"cRy" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"cRz" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"cRA" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"cRB" = ( +/obj/machinery/atmospherics/pipe/simple/supply/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/white, +/area/science/xenobiology) +"cRC" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"cRD" = ( +/obj/machinery/atmospherics/components/unary/tank/air{ + dir = 4 + }, +/turf/open/floor/plating, +/area/science/xenobiology) +"cRM" = ( +/obj/machinery/processor/slime, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"cRN" = ( +/obj/machinery/monkey_recycler, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"cRR" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cRS" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"cRU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio3"; + name = "containment blast door" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/science/xenobiology) +"cRV" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"cRW" = ( +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio8"; + name = "containment blast door" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/science/xenobiology) +"cRX" = ( +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"cRY" = ( +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/machinery/door/poddoor/preopen{ + id = "Xenolab"; + name = "test chamber blast door" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/science/xenobiology) +"cRZ" = ( +/obj/structure/cable/yellow, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio3"; + name = "containment blast door" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/science/xenobiology) +"cSa" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"cSb" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"cSc" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/structure/cable/yellow, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio8"; + name = "containment blast door" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/science/xenobiology) +"cSd" = ( +/turf/closed/wall, +/area/science/xenobiology) +"cSe" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cSf" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cSg" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"cSh" = ( +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/structure/disposaloutlet, +/turf/open/floor/engine, +/area/science/xenobiology) +"cSi" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"cSj" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cSk" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"cSl" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"cSm" = ( +/obj/structure/window/reinforced, +/obj/structure/table/reinforced, +/obj/machinery/button/door{ + id = "xenobio8"; + name = "Containment Blast Doors"; + pixel_y = 4; + req_access_txt = "55" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cSn" = ( +/turf/open/floor/engine, +/area/science/xenobiology) +"cSp" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Xenobiology Lab - Pen #1"; + dir = 4; + network = list("ss13","rd","xeno") + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"cSq" = ( +/obj/machinery/door/window/northleft{ + base_state = "right"; + dir = 8; + icon_state = "right"; + name = "Containment Pen #1"; + req_access_txt = "55" + }, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio3"; + name = "containment blast door" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"cSr" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"cSs" = ( +/obj/machinery/door/window/northleft{ + dir = 4; + name = "Containment Pen #1"; + req_access_txt = "55" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cSt" = ( +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"cSv" = ( +/obj/machinery/door/window/northleft{ + dir = 4; + name = "Containment Pen #2"; + req_access_txt = "55" + }, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio8"; + name = "containment blast door" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"cSw" = ( +/obj/machinery/door/window/northleft{ + base_state = "right"; + dir = 8; + icon_state = "right"; + name = "Containment Pen #2"; + req_access_txt = "55" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cSx" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Xenobiology Lab - Pen #2"; + dir = 8; + network = list("ss13","rd","xeno") + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"cSy" = ( +/mob/living/simple_animal/slime, +/turf/open/floor/engine, +/area/science/xenobiology) +"cSB" = ( +/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 = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cSD" = ( +/obj/structure/cable/yellow, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio2"; + name = "containment blast door" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/science/xenobiology) +"cSE" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cSF" = ( +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/structure/disposaloutlet{ + dir = 1 + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"cSG" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"cSI" = ( +/obj/structure/sign/warning/electricshock, +/turf/closed/wall, +/area/science/xenobiology) +"cSJ" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"cSK" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"cSL" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 4 + }, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"cSM" = ( +/obj/structure/window/reinforced, +/obj/structure/table/reinforced, +/obj/machinery/button/door{ + id = "xenobio7"; + name = "Containment Blast Doors"; + pixel_y = 4; + req_access_txt = "55" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cSN" = ( +/obj/machinery/door/window/northleft{ + base_state = "right"; + dir = 8; + icon_state = "right"; + name = "Containment Pen #3"; + req_access_txt = "55" + }, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio2"; + name = "containment blast door" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"cSO" = ( +/obj/machinery/door/window/northleft{ + dir = 4; + name = "Containment Pen #3"; + req_access_txt = "55" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cSP" = ( +/obj/docking_port/stationary/random{ + id = "pod_lavaland1"; + name = "lavaland" + }, +/turf/open/space, +/area/space/nearstation) +"cSQ" = ( +/obj/machinery/door/window/northleft{ + dir = 4; + name = "Containment Pen #4"; + req_access_txt = "55" + }, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio7"; + name = "containment blast door" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"cSR" = ( +/obj/machinery/door/window/northleft{ + base_state = "right"; + dir = 8; + icon_state = "right"; + name = "Containment Pen #4"; + req_access_txt = "55" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cSS" = ( +/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 = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cST" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/table/reinforced, +/obj/machinery/button/door{ + id = "xenobio1"; + name = "Containment Blast Doors"; + pixel_y = 4; + req_access_txt = "55" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cSV" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"cSW" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"cSX" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"cSZ" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8 + }, +/obj/machinery/firealarm{ + pixel_y = 26 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"cTa" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"cTb" = ( +/obj/machinery/door/window/northleft{ + dir = 4; + name = "Containment Pen #5"; + req_access_txt = "55" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cTc" = ( +/obj/machinery/door/window/northleft{ + base_state = "right"; + dir = 8; + icon_state = "right"; + name = "Containment Pen #5"; + req_access_txt = "55" + }, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio1"; + name = "containment blast door" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"cTe" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cTg" = ( +/obj/machinery/door/window/northleft{ + dir = 4; + name = "Containment Pen #6"; + req_access_txt = "55" + }, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio6"; + name = "containment blast door" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"cTj" = ( +/obj/item/crowbar/red, +/obj/item/wrench, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cTk" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/button/ignition{ + id = "Xenobio"; + pixel_x = -6; + pixel_y = -3 + }, +/obj/machinery/button/door{ + id = "Xenolab"; + name = "Test Chamber Blast Doors"; + pixel_x = 4; + pixel_y = -3; + req_access_txt = "55" + }, +/obj/structure/table/reinforced, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cTm" = ( +/obj/structure/cable/yellow, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/machinery/atmospherics/pipe/simple/general/visible, +/obj/machinery/door/poddoor/preopen{ + id = "Xenolab"; + name = "test chamber blast door" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/science/xenobiology) +"cTn" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/department/science/xenobiology) +"cTp" = ( +/obj/structure/closet, +/turf/open/floor/plating, +/area/maintenance/department/science/xenobiology) +"cTq" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/hatch{ + name = "Test Chamber Maintenance"; + req_access_txt = "47" + }, +/turf/open/floor/plating, +/area/science/xenobiology) +"cTr" = ( +/obj/machinery/computer/security/telescreen{ + dir = 1; + name = "Test Chamber Monitor"; + network = list("xeno"); + pixel_y = 2 + }, +/obj/structure/table/reinforced, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cTs" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 2 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cTt" = ( +/obj/machinery/door/window/southleft{ + dir = 1; + name = "Maximum Security Test Chamber"; + req_access_txt = "55" + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cTv" = ( +/obj/machinery/field/generator, +/turf/open/floor/plating, +/area/engineering/main) +"cTw" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/item/storage/box/lights/mixed, +/turf/open/floor/plating, +/area/maintenance/starboard) +"cTz" = ( +/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, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cTA" = ( +/turf/open/floor/plating, +/area/maintenance/department/science/xenobiology) +"cTB" = ( +/obj/machinery/space_heater, +/turf/open/floor/plating, +/area/maintenance/department/science/xenobiology) +"cTC" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/department/science/xenobiology) +"cTD" = ( +/obj/structure/cable/yellow, +/obj/machinery/shieldwallgen/xenobiologyaccess, +/turf/open/floor/plating, +/area/science/xenobiology) +"cTE" = ( +/obj/structure/chair/wood/wings{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/service/theater) +"cTT" = ( +/obj/structure/disposalpipe/segment, +/turf/closed/wall/r_wall, +/area/science/xenobiology) +"cUm" = ( +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/open/floor/wood{ + icon_state = "wood-broken6" + }, +/area/command/corporate_showroom) +"cUH" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/medical/surgery) +"cUL" = ( +/obj/docking_port/stationary/random{ + dir = 4; + id = "pod_lavaland4"; + name = "lavaland" + }, +/turf/open/space, +/area/space/nearstation) +"cUM" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/holopad, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"cUN" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/effect/landmark/start/scientist, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"cUZ" = ( +/obj/docking_port/stationary{ + dir = 8; + dwidth = 5; + height = 7; + id = "supply_home"; + name = "Cargo Bay"; + width = 12 + }, +/turf/open/space/basic, +/area/space) +"cVa" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"cVd" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/item/radio/intercom{ + freerange = 1; + name = "Station Intercom (General)"; + pixel_x = -30 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"cVg" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/commons/locker) +"cVh" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central) +"cVp" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/requests_console{ + department = "Atmospherics"; + departmentType = 4; + name = "Atmos RC"; + pixel_x = 30 + }, +/obj/machinery/vending/wardrobe/atmos_wardrobe, +/turf/open/floor/plasteel/dark/corner, +/area/engineering/atmos) +"cVx" = ( +/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) +"cVA" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/obj/effect/landmark/secequipment, +/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/security/office) +"cVF" = ( +/obj/machinery/holopad/secure{ + pixel_x = 15; + pixel_y = -15 + }, +/turf/open/floor/carpet, +/area/command/heads_quarters/captain/private) +"cVH" = ( +/obj/structure/table, +/obj/item/assembly/signaler, +/obj/item/assembly/signaler, +/obj/item/multitool, +/obj/item/multitool{ + pixel_x = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/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/commons/storage/primary) +"cVP" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/door/window{ + name = "MiniSat Walkway Access" + }, +/obj/machinery/camera{ + c_tag = "MiniSat Exterior - Aft Port"; + dir = 8; + network = list("minisat") + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/aisat/exterior) +"cWc" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/carpet, +/area/service/theater) +"cWn" = ( +/obj/machinery/door/airlock/atmos/glass{ + name = "Atmospherics Monitoring"; + req_access_txt = "24" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"cWA" = ( +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"cWK" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/construction/mining/aux_base) +"cWM" = ( +/obj/machinery/door/airlock/external{ + name = "Construction Zone" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/turf/open/floor/plating, +/area/construction/mining/aux_base) +"cXc" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/easel, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"cXA" = ( +/turf/closed/wall/r_wall, +/area/security/checkpoint/engineering) +"cXE" = ( +/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/construction/mining/aux_base) +"cXI" = ( +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/starboard) +"cXR" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"cXZ" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/starboard) +"cYc" = ( +/obj/structure/table/optable{ + name = "Robotics Operating Table" + }, +/obj/structure/extinguisher_cabinet{ + pixel_y = -30 + }, +/obj/machinery/camera{ + c_tag = "Robotics - Aft"; + dir = 1; + network = list("ss13","rd") + }, +/turf/open/floor/plasteel/white/side{ + dir = 1 + }, +/area/science/robotics/lab) +"cYg" = ( +/obj/structure/closet/crate{ + icon_state = "crateopen" + }, +/obj/item/stack/sheet/rglass{ + amount = 50 + }, +/obj/item/stack/sheet/metal/fifty, +/obj/item/stack/rods/fifty, +/obj/item/storage/toolbox/emergency, +/obj/item/flashlight, +/obj/machinery/power/apc/highcap/five_k{ + areastring = "/area/command/gateway"; + dir = 4; + name = "Gateway APC"; + pixel_x = 24 + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/effect/turf_decal/bot{ + dir = 1 + }, +/turf/open/floor/plasteel{ + dir = 1 + }, +/area/command/gateway) +"cYj" = ( +/obj/structure/closet/firecloset, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/starboard) +"cYE" = ( +/obj/structure/closet/toolcloset, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"cYG" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"cYI" = ( +/obj/machinery/camera{ + c_tag = "Research Division Circuitry Lab"; + dir = 1; + network = list("ss13","rd") + }, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"cYJ" = ( +/obj/docking_port/stationary{ + dir = 2; + dwidth = 9; + height = 25; + id = "emergency_home"; + name = "MetaStation emergency evac bay"; + width = 29 + }, +/turf/open/space/basic, +/area/space) +"cYK" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/computer/security/telescreen{ + desc = "Used for the Auxillary Mining Base."; + dir = 1; + name = "Auxillary Base Monitor"; + network = list("auxbase"); + pixel_y = -28 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"cYL" = ( +/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) +"cYP" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/machinery/door/airlock/engineering{ + name = "Auxillary Base Construction"; + req_one_access_txt = "32;47;48" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"cYQ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall, +/area/construction/mining/aux_base) +"cYT" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"cZa" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"cZf" = ( +/obj/structure/chair, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"cZh" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"cZq" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"cZv" = ( +/turf/open/floor/circuit/telecomms, +/area/science/xenobiology) +"cZA" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/command/storage/eva) +"cZH" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/engineering/atmos) +"cZN" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/item/stock_parts/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/storage/primary) +"cZV" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/green/visible, +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engineering/atmos) +"dal" = ( +/obj/machinery/status_display/evac{ + pixel_y = 32 + }, +/obj/item/folder/yellow{ + pixel_y = 4 + }, +/obj/machinery/camera{ + c_tag = "Bridge - Central" + }, +/obj/structure/table/glass, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"daA" = ( +/obj/machinery/door/window/southleft{ + name = "Maximum Security Test Chamber"; + req_access_txt = "55" + }, +/obj/machinery/door/poddoor/preopen{ + id = "Xenolab"; + name = "test chamber blast door" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"daB" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible, +/turf/open/floor/engine, +/area/science/xenobiology) +"daC" = ( +/obj/structure/sign/warning/electricshock, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall/r_wall, +/area/science/xenobiology) +"daD" = ( +/obj/structure/disposaloutlet, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"daE" = ( +/obj/structure/table, +/obj/item/stack/sheet/metal{ + amount = 10 + }, +/obj/item/electropack, +/turf/open/floor/engine, +/area/science/xenobiology) +"daF" = ( +/obj/machinery/sparker{ + id = "Xenobio"; + pixel_x = -25 + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"daG" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 1 + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"daH" = ( +/obj/item/beacon, +/turf/open/floor/engine, +/area/science/xenobiology) +"daI" = ( +/obj/structure/table, +/obj/machinery/cell_charger{ + pixel_y = 5 + }, +/obj/item/stack/cable_coil, +/obj/item/multitool, +/obj/item/stock_parts/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"daJ" = ( +/obj/effect/spawner/lootdrop/two_percent_xeno_egg_spawner, +/turf/open/floor/engine, +/area/science/xenobiology) +"daK" = ( +/obj/machinery/camera{ + c_tag = "Xenobiology Lab - Test Chamber"; + dir = 1; + network = list("ss13","rd","xeno") + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"daL" = ( +/obj/machinery/light/small, +/turf/open/floor/engine, +/area/science/xenobiology) +"daM" = ( +/obj/structure/table, +/obj/item/assembly/igniter{ + pixel_x = -5; + pixel_y = 3 + }, +/obj/item/assembly/igniter{ + pixel_x = 5; + pixel_y = -4 + }, +/obj/item/assembly/igniter{ + pixel_x = 2; + pixel_y = 6 + }, +/obj/item/assembly/igniter{ + pixel_x = 2; + pixel_y = -1 + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"daN" = ( +/obj/item/radio/intercom{ + pixel_y = -25 + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"daO" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/department/science/xenobiology) +"daP" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 6 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/department/science/xenobiology) +"daQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"daR" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1; + external_pressure_bound = 140; + name = "server vent"; + pressure_checks = 0 + }, +/turf/open/floor/circuit/telecomms, +/area/science/xenobiology) +"daS" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/circuit/telecomms, +/area/science/xenobiology) +"daX" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plating{ + icon_state = "platingdmg2" + }, +/area/maintenance/port/fore) +"dbj" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"dbl" = ( +/obj/structure/easel, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"dbo" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Xenobiology Lab - Pen #3"; + dir = 4; + network = list("ss13","rd","xeno") + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"dbp" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Xenobiology Lab - Pen #4"; + dir = 8; + network = list("ss13","rd","xeno") + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"dbq" = ( +/mob/living/simple_animal/hostile/retaliate/goose, +/turf/open/floor/wood{ + icon_state = "wood-broken6" + }, +/area/maintenance/port/aft) +"dbr" = ( +/obj/machinery/camera{ + c_tag = "Morgue"; + network = list("ss13","medbay") + }, +/obj/structure/bodycontainer/morgue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"dbs" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Xenobiology Lab - Pen #5"; + dir = 4; + network = list("ss13","rd","xeno") + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"dbt" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Xenobiology Lab - Pen #6"; + dir = 8; + network = list("ss13","rd","xeno") + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"dbv" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/light/small, +/turf/open/floor/circuit/telecomms, +/area/science/xenobiology) +"dbw" = ( +/obj/machinery/camera{ + c_tag = "Xenobiology Lab - Kill Chamber"; + dir = 1; + network = list("ss13","rd","xeno"); + start_active = 1 + }, +/turf/open/floor/circuit/telecomms, +/area/science/xenobiology) +"dbG" = ( +/obj/machinery/power/apc{ + areastring = "/area/science/circuit"; + dir = 1; + name = "Circuitry Lab APC"; + pixel_y = 23 + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/structure/table/reinforced, +/obj/item/multitool, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"dbH" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/machinery/door/airlock/research{ + id_tag = "ResearchInt"; + name = "Research Division"; + req_one_access_txt = "47" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/research) +"dbI" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/machinery/door/airlock/research{ + id_tag = "ResearchInt"; + name = "Research Division"; + req_one_access_txt = "47" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/research) +"dbN" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/aft) +"dbP" = ( +/obj/machinery/door/airlock/external{ + name = "Solar Maintenance"; + req_access_txt = "10; 13" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/aft) +"dbQ" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/aft) +"dbX" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"dbY" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"dbZ" = ( +/obj/machinery/doorButtons/access_button{ + idDoor = "xeno_airlock_interior"; + idSelf = "xeno_airlock_control"; + name = "Access Button"; + pixel_x = 29; + pixel_y = -8 + }, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"dca" = ( +/obj/machinery/firealarm{ + pixel_y = 26 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"dcb" = ( +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/machinery/camera{ + c_tag = "Xenobiology Lab - Fore"; + network = list("ss13","rd") + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"dcd" = ( +/obj/structure/table/glass, +/obj/item/paper_bin{ + pixel_y = 4 + }, +/obj/item/folder/white{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/pen{ + pixel_x = -4 + }, +/obj/machinery/requests_console{ + department = "Science"; + departmentType = 2; + name = "Science Requests Console"; + pixel_y = 30; + receive_ore_updates = 1 + }, +/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) +"dce" = ( +/obj/structure/table/glass, +/obj/item/storage/box/monkeycubes{ + pixel_x = 2; + pixel_y = -2 + }, +/obj/item/storage/box/monkeycubes, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"dcf" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/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) +"dcg" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/shower{ + dir = 4 + }, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_x = -29 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"dch" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"dci" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"dcj" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/locked, +/obj/machinery/door/airlock/research{ + autoclose = 0; + frequency = 1449; + id_tag = "xeno_airlock_interior"; + name = "Xenobiology Lab Internal Airlock"; + req_access_txt = "55" + }, +/obj/structure/cable/yellow{ + 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, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"dck" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/doorButtons/airlock_controller{ + idExterior = "xeno_airlock_exterior"; + idInterior = "xeno_airlock_interior"; + idSelf = "xeno_airlock_control"; + name = "Access Console"; + pixel_x = -25; + pixel_y = -25 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"dcl" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"dcm" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/computer/camera_advanced/xenobio, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"dcn" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/machinery/smartfridge/extract/preloaded, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"dco" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/obj/machinery/computer/camera_advanced/xenobio, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"dcp" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"dcq" = ( +/obj/structure/chair/office/light{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"dcr" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"dcs" = ( +/obj/structure/closet/emcloset, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/machinery/camera{ + c_tag = "Xenobiology Lab - Airlock"; + dir = 4; + network = list("ss13","rd") + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"dct" = ( +/obj/structure/closet/l3closet/scientist, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"dcu" = ( +/obj/structure/closet/l3closet/scientist, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"dcv" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/structure/chair/comfy/black{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"dcw" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"dcx" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/chair/comfy/black{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"dcy" = ( +/obj/machinery/holopad, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"dcz" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/science/xenobiology) +"dcA" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"dcB" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"dcC" = ( +/obj/structure/chair/office/light, +/obj/effect/landmark/start/scientist, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"dcD" = ( +/obj/machinery/reagentgrinder{ + pixel_x = -1; + pixel_y = 8 + }, +/obj/structure/table/glass, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"dcE" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 4 + }, +/turf/open/floor/plating/airless, +/area/science/xenobiology) +"dcG" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"dcH" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"dcI" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"dcJ" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/item/extinguisher{ + pixel_x = 4; + pixel_y = 3 + }, +/obj/item/extinguisher, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"dcK" = ( +/obj/machinery/disposal/bin, +/obj/structure/sign/warning/deathsposal{ + pixel_y = -32 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"dcL" = ( +/obj/machinery/light, +/obj/structure/table/glass, +/obj/item/storage/box/beakers{ + pixel_x = 2; + pixel_y = 7 + }, +/obj/item/storage/box/syringes{ + pixel_y = 5 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"dcM" = ( +/obj/machinery/chem_master, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -29 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"dcN" = ( +/obj/machinery/chem_heater, +/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/xenobiology) +"dcO" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/machinery/camera{ + c_tag = "Xenobiology Lab - Central"; + dir = 8; + network = list("ss13","rd") + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"dcP" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio2"; + name = "containment blast door" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/science/xenobiology) +"dcQ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"dcR" = ( +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio7"; + name = "containment blast door" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/science/xenobiology) +"dcS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/structure/cable/yellow, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio7"; + name = "containment blast door" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/science/xenobiology) +"dcT" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"dcU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio1"; + name = "containment blast door" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/science/xenobiology) +"dcV" = ( +/obj/structure/window/reinforced, +/obj/machinery/button/door{ + id = "xenobio6"; + name = "Containment Blast Doors"; + pixel_y = 4; + req_access_txt = "55" + }, +/obj/structure/table/reinforced, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"dcW" = ( +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio6"; + name = "containment blast door" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/science/xenobiology) +"dcX" = ( +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/structure/cable/yellow, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio1"; + name = "containment blast door" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/science/xenobiology) +"dcY" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"dcZ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"dda" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"ddb" = ( +/obj/structure/cable/yellow, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio6"; + name = "containment blast door" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/science/xenobiology) +"ddc" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"ddd" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"dde" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating, +/area/maintenance/department/science/xenobiology) +"ddf" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Xenobiology Lab - Aft-Port"; + dir = 4; + network = list("ss13","rd") + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/bz, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"ddg" = ( +/obj/machinery/portable_atmospherics/canister, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Xenobiology Lab - Aft-Starboard"; + dir = 8; + network = list("ss13","rd") + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"ddh" = ( +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/department/science/xenobiology) +"ddi" = ( +/obj/structure/rack, +/turf/open/floor/plating, +/area/maintenance/department/science/xenobiology) +"ddj" = ( +/turf/open/floor/plating{ + icon_state = "platingdmg2" + }, +/area/maintenance/department/science/xenobiology) +"ddk" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"ddl" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/general/visible, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -29 + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"ddm" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"ddn" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"ddo" = ( +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"ddp" = ( +/obj/machinery/door/airlock/hatch{ + name = "Test Chamber Maintenance"; + req_access_txt = "47" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/science/xenobiology) +"ddq" = ( +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/open/floor/plating, +/area/maintenance/department/science/xenobiology) +"ddr" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating, +/area/maintenance/department/science/xenobiology) +"dds" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"ddt" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/department/science/xenobiology) +"ddu" = ( +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/machinery/door/poddoor/preopen{ + id = "Xenolab"; + name = "test chamber blast door" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/science/xenobiology) +"ddv" = ( +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/machinery/door/poddoor/preopen{ + id = "Xenolab"; + name = "test chamber blast door" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/science/xenobiology) +"ddx" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/chair, +/obj/item/cigbutt, +/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"ddy" = ( +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/department/science/xenobiology) +"ddz" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/turf/open/floor/plating, +/area/science/xenobiology) +"ddA" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research{ + glass = 1; + name = "Slime Euthanization Chamber"; + opacity = 0; + req_access_txt = "55" + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"ddB" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{ + dir = 1; + external_pressure_bound = 120; + name = "server vent" + }, +/turf/open/floor/circuit/telecomms, +/area/science/xenobiology) +"ddC" = ( +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/structure/disposaloutlet, +/turf/open/floor/plating/airless, +/area/science/xenobiology) +"dfw" = ( +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=8"; + dir = 8; + freq = 1400; + location = "QM #2" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/cargo/storage) +"dgc" = ( +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"dgd" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/turf/open/space, +/area/space/nearstation) +"dge" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/space/nearstation) +"dgf" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 6 + }, +/turf/open/space, +/area/space/nearstation) +"dgg" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 6 + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/space/nearstation) +"dgh" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 6 + }, +/obj/structure/lattice, +/turf/open/space, +/area/space/nearstation) +"dgi" = ( +/obj/machinery/atmospherics/pipe/simple/orange/visible, +/turf/open/floor/plating, +/area/maintenance/starboard) +"dgj" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 5 + }, +/obj/structure/lattice, +/turf/open/space, +/area/space/nearstation) +"dgk" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/obj/structure/lattice, +/turf/open/space, +/area/space/nearstation) +"dgm" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/obj/structure/lattice, +/turf/open/space, +/area/space/nearstation) +"dgo" = ( +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"dgp" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"dgr" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 10 + }, +/turf/open/space, +/area/space/nearstation) +"dgt" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/turf/open/space, +/area/space/nearstation) +"dgu" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/turf/open/space, +/area/space/nearstation) +"dgv" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 9 + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/space/nearstation) +"dgw" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/orange/visible, +/turf/open/space, +/area/space/nearstation) +"dgy" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/open/floor/wood, +/area/service/lawoffice) +"dgA" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/simple/orange/visible, +/turf/open/space, +/area/space/nearstation) +"dgB" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 5 + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/space/nearstation) +"dgI" = ( +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 5 + }, +/turf/open/space, +/area/space/nearstation) +"dgJ" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 4 + }, +/turf/open/space, +/area/space/nearstation) +"dgK" = ( +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 4 + }, +/turf/open/space, +/area/space/nearstation) +"dgM" = ( +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 10 + }, +/turf/open/space, +/area/space/nearstation) +"dgN" = ( +/obj/structure/lattice, +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/orange/visible, +/turf/open/space, +/area/space/nearstation) +"dgO" = ( +/obj/machinery/atmospherics/pipe/simple/orange/visible, +/turf/open/space, +/area/space/nearstation) +"dgS" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/transit_tube/horizontal, +/obj/machinery/atmospherics/pipe/simple/orange/visible, +/turf/open/space, +/area/space/nearstation) +"dha" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/orange/visible, +/turf/open/space, +/area/space/nearstation) +"dhc" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/orange/visible, +/turf/open/space, +/area/space/nearstation) +"dhl" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 9 + }, +/turf/open/space, +/area/space/nearstation) +"dhm" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall, +/area/commons/fitness/recreation) +"dhn" = ( +/obj/structure/table, +/obj/item/poster/random_contraband, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/fore) +"dho" = ( +/obj/item/stack/sheet/cardboard, +/obj/structure/light_construct/small{ + dir = 1 + }, +/obj/structure/closet/crate, +/obj/item/coin/silver, +/obj/item/grenade/chem_grenade, +/obj/item/storage/box/lights/mixed, +/obj/item/watertank, +/obj/item/storage/box/donkpockets, +/obj/item/poster/random_contraband, +/obj/item/poster/random_contraband, +/obj/item/poster/random_contraband, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"dhq" = ( +/obj/structure/table/reinforced, +/obj/structure/light_construct/small{ + dir = 8 + }, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/structure/window/reinforced, +/obj/item/poster/random_official, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"dhr" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/poster/contraband/random{ + pixel_y = 32 + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"dht" = ( +/obj/item/cigbutt, +/obj/structure/sign/poster/contraband/random{ + pixel_x = -32 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"dhu" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/structure/sign/poster/contraband/random{ + pixel_y = 32 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"dhv" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/westleft{ + base_state = "right"; + dir = 4; + icon_state = "right"; + name = "Outer Window" + }, +/obj/machinery/door/window/brigdoor{ + dir = 8; + name = "Brig Control Desk"; + req_access_txt = "3" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/item/folder/red, +/obj/item/folder/red, +/obj/item/poster/random_official, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"dhw" = ( +/obj/structure/closet, +/obj/item/poster/random_contraband, +/obj/item/poster/random_contraband, +/obj/item/poster/random_contraband, +/obj/item/poster/random_contraband, +/obj/item/poster/random_contraband, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"dhx" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/sign/poster/contraband/random{ + pixel_y = 32 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"dhz" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/poster/contraband/random{ + pixel_y = 32 + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"dhB" = ( +/obj/item/clothing/glasses/meson, +/obj/structure/closet/crate, +/obj/item/poster/random_contraband, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"dhE" = ( +/obj/structure/sign/poster/contraband/random{ + pixel_x = 32 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"dhH" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/spawner/lootdrop/maintenance, +/obj/structure/sign/poster/contraband/random{ + pixel_x = -32 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"dhK" = ( +/obj/structure/closet, +/obj/item/poster/random_contraband, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"dhM" = ( +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = 21 + }, +/obj/structure/sign/poster/official/random{ + pixel_x = 32 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/cafeteria, +/area/hallway/secondary/entry) +"dhN" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/sign/poster/contraband/random{ + pixel_y = 32 + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/starboard/fore) +"dhO" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/sign/poster/contraband/random{ + pixel_x = -32 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"dhP" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/sign/poster/official/random{ + pixel_y = 32 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"dhQ" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/structure/sign/poster/contraband/random{ + pixel_x = 32 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"dhR" = ( +/obj/structure/closet, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/item/poster/random_contraband, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/port) +"dic" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/sign/poster/official/random{ + pixel_x = 32 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/white/corner, +/area/hallway/secondary/entry) +"dig" = ( +/obj/item/kirbyplants{ + icon_state = "plant-03" + }, +/turf/open/floor/plasteel/grimy, +/area/hallway/primary/port) +"dio" = ( +/obj/structure/closet/crate, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/item/poster/random_official, +/turf/open/floor/plating, +/area/maintenance/port) +"dit" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/sign/poster/contraband/random{ + pixel_y = 32 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating, +/area/maintenance/port) +"diu" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/item/storage/box/lights/mixed, +/obj/structure/sign/poster/contraband/random{ + pixel_y = 32 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"div" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/poster/contraband/random{ + pixel_y = 32 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating, +/area/maintenance/port) +"dix" = ( +/obj/structure/rack, +/obj/item/poster/random_contraband, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/port) +"diy" = ( +/obj/structure/closet/secure_closet/freezer/kitchen/maintenance, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"diA" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/sign/poster/contraband/random{ + pixel_x = 32 + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/starboard/aft) +"diB" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/poster/contraband/random{ + pixel_y = 32 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"diC" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/sign/poster/contraband/random{ + pixel_y = 32 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"diD" = ( +/obj/machinery/vending/cigarette, +/obj/machinery/status_display/evac{ + pixel_y = 32 + }, +/obj/structure/sign/poster/official/random{ + pixel_x = 32 + }, +/turf/open/floor/plasteel/white/side{ + dir = 4 + }, +/area/science/research) +"diE" = ( +/obj/structure/rack, +/obj/item/reagent_containers/food/drinks/bottle/vodka{ + pixel_x = 3; + pixel_y = 2 + }, +/obj/item/reagent_containers/food/drinks/bottle/vermouth{ + pixel_x = -4; + pixel_y = 3 + }, +/obj/item/reagent_containers/food/drinks/bottle/whiskey, +/obj/structure/sign/poster/contraband/random{ + pixel_y = 32 + }, +/turf/open/floor/wood, +/area/maintenance/port/aft) +"diF" = ( +/obj/structure/chair/stool, +/obj/structure/sign/poster/contraband/random{ + pixel_y = 32 + }, +/turf/open/floor/wood, +/area/maintenance/port/aft) +"diG" = ( +/obj/structure/chair/stool, +/obj/structure/sign/poster/contraband/random{ + pixel_x = 32 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/port/aft) +"diH" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/air, +/obj/structure/sign/poster/contraband/random{ + pixel_x = 32 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"diI" = ( +/obj/item/poster/random_contraband, +/obj/item/poster/random_contraband, +/obj/item/poster/random_contraband, +/obj/item/poster/random_contraband, +/obj/item/poster/random_contraband, +/obj/item/reagent_containers/food/drinks/beer{ + pixel_x = -3; + pixel_y = 2 + }, +/obj/item/reagent_containers/food/drinks/ale, +/obj/structure/table/wood, +/obj/item/instrument/eguitar, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/sign/poster/contraband/random{ + pixel_x = 32 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"diJ" = ( +/obj/structure/light_construct/small, +/obj/structure/table/wood/poker, +/obj/item/toy/cards/deck, +/obj/structure/sign/poster/contraband/random{ + pixel_y = -32 + }, +/turf/open/floor/wood, +/area/maintenance/port/aft) +"diK" = ( +/obj/item/dice/d20, +/obj/item/dice, +/obj/structure/table/wood, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/sign/poster/contraband/random{ + pixel_y = -32 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"diL" = ( +/obj/item/tank/internals/air, +/obj/item/tank/internals/air, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/machinery/space_heater, +/obj/effect/spawner/lootdrop/maintenance, +/obj/structure/sign/poster/contraband/random{ + pixel_x = 32 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"diM" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"diN" = ( +/obj/structure/chair/stool, +/obj/structure/sign/poster/official/random{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/medical/medbay/aft) +"diP" = ( +/obj/structure/sign/poster/contraband/random{ + pixel_y = -32 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"diQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/structure/sign/poster/contraband/random{ + pixel_y = 32 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg2" + }, +/area/maintenance/aft) +"diR" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/item/stack/ore/slag, +/turf/open/floor/plating, +/area/maintenance/aft) +"diS" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/item/storage/box/lights/mixed, +/turf/open/floor/plating, +/area/maintenance/aft) +"diT" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/sign/poster/contraband/random{ + pixel_y = 32 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"diU" = ( +/obj/structure/closet/crate, +/obj/item/poster/random_official, +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/landmark/blobstart, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"diV" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Departure Lounge - Port Fore"; + dir = 4 + }, +/obj/item/kirbyplants{ + icon_state = "plant-24" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/sign/poster/official/random{ + pixel_x = -32 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"diW" = ( +/obj/machinery/hydroponics/soil{ + pixel_y = 8 + }, +/obj/item/seeds/glowshroom, +/obj/item/seeds/corn, +/obj/effect/turf_decal/stripes/line, +/obj/structure/sign/poster/contraband/random{ + pixel_y = 32 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"djg" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"djh" = ( +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"djs" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/science/xenobiology) +"djz" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/machinery/door/airlock/external{ + name = "Arrival Airlock" + }, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"djB" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/effect/landmark/observer_start, +/obj/effect/turf_decal/plaque{ + icon_state = "L8" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"djC" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/machinery/door/airlock/external{ + name = "Arrival Airlock" + }, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"djM" = ( +/obj/docking_port/stationary{ + dir = 8; + dwidth = 3; + height = 15; + id = "arrivals_stationary"; + name = "arrivals"; + roundstart_template = /datum/map_template/shuttle/arrival/box; + width = 7 + }, +/turf/open/space/basic, +/area/space) +"djS" = ( +/turf/closed/wall, +/area/service/hydroponics) +"djW" = ( +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plasteel, +/area/maintenance/port) +"dka" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 6 + }, +/turf/open/space, +/area/space/nearstation) +"dkh" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/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/commons/fitness/recreation) +"dkr" = ( +/obj/machinery/vending/cigarette, +/obj/structure/sign/poster/official/random{ + pixel_x = 32 + }, +/turf/open/floor/plating, +/area/commons/toilet/auxiliary) +"dkX" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/locker) +"dlf" = ( +/obj/effect/turf_decal/bot_white/left, +/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/command/nuke_storage) +"dlo" = ( +/obj/structure/cable/yellow{ + 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/engineering/storage/tech) +"dlA" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/service/janitor) +"dlD" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/space, +/area/solars/starboard/aft) +"dlF" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/engineering/atmos) +"dlG" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/poddoor/preopen{ + id = "hosprivacy"; + name = "privacy shutters" + }, +/turf/open/floor/plating, +/area/command/heads_quarters/hos) +"dlV" = ( +/turf/closed/wall/r_wall, +/area/maintenance/department/science/xenobiology) +"dmm" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/pen, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/command/heads_quarters/ce) +"dmq" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/obj/machinery/door/airlock/research{ + glass = 1; + name = "Slime Euthanization Chamber"; + opacity = 0; + req_access_txt = "55" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"dmr" = ( +/obj/machinery/door/airlock/research{ + glass = 1; + name = "Slime Euthanization Chamber"; + opacity = 0; + req_access_txt = "55" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"dmL" = ( +/obj/machinery/light/small, +/obj/item/toy/dummy, +/obj/item/toy/prize/honk{ + pixel_y = 12 + }, +/obj/structure/table/wood, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -29 + }, +/turf/open/floor/wood, +/area/service/theater) +"dmS" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/commons/locker) +"dna" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/snacks/grown/harebell, +/obj/item/reagent_containers/food/snacks/grown/harebell, +/obj/item/reagent_containers/food/snacks/grown/harebell, +/obj/item/reagent_containers/food/snacks/grown/harebell, +/obj/item/reagent_containers/food/snacks/grown/harebell, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/service/chapel/main) +"dnd" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"dne" = ( +/turf/closed/wall, +/area/maintenance/port/fore) +"dnh" = ( +/turf/closed/wall, +/area/maintenance/starboard/fore) +"dni" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"dnk" = ( +/obj/structure/grille, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"dnu" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"dnz" = ( +/obj/machinery/space_heater, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"dnF" = ( +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/port/fore) +"dnG" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"dnM" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"dnO" = ( +/obj/machinery/space_heater, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"dnP" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"dnR" = ( +/obj/structure/grille, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"dnS" = ( +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"dnZ" = ( +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/port/fore) +"dod" = ( +/obj/item/cigbutt, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"doe" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"doh" = ( +/turf/open/floor/plating{ + icon_state = "platingdmg2" + }, +/area/maintenance/starboard/fore) +"doj" = ( +/obj/structure/table/glass, +/obj/item/stack/sheet/mineral/plasma{ + pixel_y = 4 + }, +/obj/item/stack/sheet/mineral/plasma{ + pixel_y = 4 + }, +/obj/item/stack/sheet/mineral/plasma{ + pixel_y = 4 + }, +/obj/item/stack/sheet/mineral/plasma{ + pixel_y = 4 + }, +/obj/item/reagent_containers/glass/beaker{ + pixel_x = 8; + pixel_y = 2 + }, +/obj/item/reagent_containers/glass/beaker/large{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/reagent_containers/dropper, +/obj/machinery/power/apc/highcap/ten_k{ + areastring = "/area/science/xenobiology"; + dir = 1; + name = "Xenobiology APC"; + pixel_y = 23 + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"dou" = ( +/obj/machinery/space_heater, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"dox" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/engine/vacuum, +/area/engineering/atmos) +"doA" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"doJ" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"doX" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/landmark/start/cargo_technician, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/cargo/storage) +"dpk" = ( +/obj/item/cigbutt, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"dpm" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"dps" = ( +/obj/machinery/space_heater, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/starboard/fore) +"dpy" = ( +/obj/machinery/power/apc/highcap/five_k{ + areastring = "/area/security/prison"; + dir = 1; + name = "Prison Wing APC"; + pixel_x = 1; + pixel_y = 23 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/machinery/camera{ + c_tag = "Prison Hallway Starboard"; + network = list("ss13","prison") + }, +/obj/effect/turf_decal/tile/red, +/turf/open/floor/plasteel, +/area/security/prison) +"dpF" = ( +/obj/machinery/power/apc/highcap/five_k{ + areastring = "/area/service/bar"; + dir = 1; + name = "Bar APC"; + pixel_y = 23 + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -27 + }, +/turf/open/floor/wood, +/area/service/bar) +"dpG" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"dpL" = ( +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/starboard/fore) +"dpM" = ( +/obj/machinery/door/morgue{ + name = "Private Study"; + req_access_txt = "37" + }, +/turf/open/floor/engine/cult, +/area/service/library) +"dqe" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"dqn" = ( +/obj/effect/landmark/barthpot, +/turf/open/floor/wood{ + icon_state = "wood-broken7" + }, +/area/service/library) +"dqo" = ( +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_x = 30 + }, +/obj/machinery/photocopier, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/wood, +/area/service/library) +"dqp" = ( +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/starboard/fore) +"dqu" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"dqy" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/construction/storage_wing) +"dqE" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/engine, +/area/engineering/main) +"dqT" = ( +/turf/closed/wall/r_wall, +/area/maintenance/starboard/fore) +"dqU" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/machinery/vending/coffee, +/turf/open/floor/plasteel, +/area/science/mixing) +"drM" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/construction/storage_wing) +"drQ" = ( +/turf/open/floor/plating{ + icon_state = "platingdmg2" + }, +/area/maintenance/port/fore) +"drT" = ( +/obj/structure/table/wood, +/obj/machinery/newscaster/security_unit{ + pixel_y = 32 + }, +/obj/item/folder/red, +/obj/item/folder/red, +/obj/machinery/keycard_auth{ + pixel_x = -26; + pixel_y = 23 + }, +/obj/machinery/button/door{ + id = "hosspace"; + name = "Space Shutters Control"; + pixel_x = -26; + pixel_y = 34 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hos) +"dsd" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/locker) +"dsg" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"dss" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"dst" = ( +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/structure/closet/emcloset, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"dsL" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/engineering/main) +"dti" = ( +/obj/item/beacon, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"dtj" = ( +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/obj/machinery/holopad/secure, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/aisat/exterior) +"dtk" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/button/door{ + id = "atmos"; + name = "Atmospherics Lockdown"; + pixel_x = 26; + pixel_y = -26; + req_access_txt = "24" + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"dtl" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"dtw" = ( +/obj/structure/chair/comfy/black{ + dir = 4 + }, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plasteel/chapel{ + dir = 1 + }, +/area/service/chapel/main) +"dtE" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"dtF" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/obj/structure/cable/yellow{ + 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/office) +"dtL" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"dtM" = ( +/obj/structure/closet/toolcloset, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/engineering/main) +"dtO" = ( +/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/command/bridge) +"dtP" = ( +/obj/structure/cable/yellow{ + 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 = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"dtR" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"dtS" = ( +/obj/item/cigbutt, +/obj/machinery/power/apc{ + areastring = "/area/maintenance/starboard/fore"; + name = "Starboard Bow Maintenance APC"; + pixel_y = -28 + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"duo" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"dur" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/sorting/mail{ + sortType = 5 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel, +/area/engineering/main) +"dux" = ( +/turf/closed/wall, +/area/maintenance/port/aft) +"duF" = ( +/turf/open/floor/engine/o2, +/area/engineering/atmos) +"duH" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"duS" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/structure/mirror{ + pixel_x = 28 + }, +/turf/open/floor/plasteel/freezer, +/area/commons/toilet/restrooms) +"duX" = ( +/obj/machinery/door/airlock{ + id_tag = "FitnessShower"; + name = "Fitness Room Shower" + }, +/turf/open/floor/plasteel/freezer, +/area/commons/fitness/recreation) +"dvg" = ( +/obj/structure/chair/office/light{ + dir = 8 + }, +/obj/effect/landmark/start/research_director, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/command/heads_quarters/rd) +"dvk" = ( +/obj/machinery/recharge_station, +/obj/machinery/status_display/evac{ + pixel_y = 32 + }, +/obj/structure/cable/yellow{ + 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/ai_monitored/command/storage/satellite) +"dvq" = ( +/obj/machinery/space_heater, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"dvt" = ( +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/port/aft) +"dvw" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"dvD" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/service/bar) +"dvE" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"dvY" = ( +/turf/closed/wall, +/area/maintenance/starboard/aft) +"dwb" = ( +/obj/structure/cable/yellow{ + 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/port/aft) +"dwc" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/sign/poster/contraband/random{ + pixel_y = 32 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"dwe" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"dwi" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/power/apc{ + areastring = "/area/medical/surgery"; + name = "Surgery APC"; + pixel_y = -26 + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"dwj" = ( +/obj/structure/cable/yellow{ + 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/port/aft) +"dwv" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"dww" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"dwL" = ( +/turf/closed/wall/r_wall, +/area/maintenance/starboard/aft) +"dwQ" = ( +/obj/structure/chair/stool, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"dwW" = ( +/obj/machinery/atmospherics/pipe/manifold/purple/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"dwX" = ( +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/starboard/aft) +"dwY" = ( +/obj/effect/landmark/blobstart, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"dxa" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/door/window/eastright{ + dir = 1; + name = "Kitchen Delivery"; + req_access_txt = "28" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/service/kitchen) +"dxh" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"dxj" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/service/chapel/main) +"dxk" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"dxr" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"dxv" = ( +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/port/aft) +"dxQ" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"dyc" = ( +/obj/structure/grille, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"dyg" = ( +/obj/structure/cable/yellow{ + 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/port/aft) +"dyj" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/port/aft) +"dyl" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/commons/storage/primary) +"dyp" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/circuit) +"dyw" = ( +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"dzc" = ( +/obj/machinery/space_heater, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"dzl" = ( +/obj/machinery/light_switch{ + pixel_x = -23 + }, +/obj/machinery/computer/cargo{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/qm) +"dzx" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/wood, +/area/service/lawoffice) +"dzI" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"dzK" = ( +/turf/closed/wall/r_wall, +/area/maintenance/port/aft) +"dzN" = ( +/obj/structure/table/reinforced, +/obj/machinery/cell_charger, +/obj/item/stock_parts/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/obj/item/rcl/pre_loaded, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/command/heads_quarters/ce) +"dzO" = ( +/obj/structure/table, +/obj/item/reagent_containers/food/snacks/grown/wheat, +/obj/item/reagent_containers/food/snacks/grown/watermelon, +/obj/item/reagent_containers/food/snacks/grown/citrus/orange, +/obj/item/reagent_containers/food/snacks/grown/grapes, +/obj/item/reagent_containers/food/snacks/grown/cocoapod, +/obj/item/reagent_containers/food/snacks/grown/apple, +/obj/item/reagent_containers/food/snacks/grown/chili, +/obj/item/reagent_containers/food/snacks/grown/cherries, +/obj/item/reagent_containers/food/snacks/grown/soybeans, +/obj/item/reagent_containers/food/snacks/grown/citrus/lime, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics/garden) +"dzQ" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"dAc" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/obj/item/stock_parts/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/storage/tech) +"dAd" = ( +/obj/machinery/power/apc/highcap/five_k{ + areastring = "/area/maintenance/starboard/aft"; + name = "Starboard Quarter Maintenance APC"; + pixel_y = -24 + }, +/obj/structure/cable/yellow, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"dAh" = ( +/obj/item/storage/box, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"dAn" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/external{ + req_access_txt = "13" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"dAp" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/starboard/aft) +"dAw" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/maintenance{ + req_one_access_txt = "12;47" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"dAx" = ( +/obj/structure/cable/yellow{ + 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/starboard/aft) +"dAU" = ( +/turf/open/floor/plasteel/grimy, +/area/service/chapel/office) +"dAX" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"dAZ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"dBe" = ( +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/starboard/aft) +"dBf" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/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/white, +/area/medical/treatment_center) +"dBg" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/carpet, +/area/service/theater) +"dBF" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/security/brig) +"dBG" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/security/brig) +"dBH" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/turf/open/floor/plating, +/area/security/brig) +"dBN" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/turf/open/floor/plating, +/area/medical/virology) +"dBO" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/mob/living/carbon/monkey, +/turf/open/floor/plasteel/freezer, +/area/medical/virology) +"dBS" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"dBT" = ( +/obj/effect/spawner/structure/window, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/medical/virology) +"dBU" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/medical/virology) +"dBV" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow, +/turf/open/floor/plating, +/area/medical/virology) +"dBX" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"dBZ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/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/security/warden) +"dCa" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/security/warden) +"dCe" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating, +/area/maintenance/fore) +"dCf" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"dCg" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"dCh" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"dCi" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/starboard/fore) +"dCj" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/security/brig) +"dCl" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"dCo" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"dCp" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating{ + icon_state = "platingdmg2" + }, +/area/maintenance/fore) +"dCq" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/security/courtroom) +"dCr" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"dCs" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"dCx" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/port/fore) +"dCz" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"dCC" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"dCD" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"dCE" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"dCH" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"dCI" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"dCJ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"dCM" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + pixel_y = -30 + }, +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"dCN" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"dCT" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"dCV" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating, +/area/maintenance/starboard) +"dCW" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating, +/area/maintenance/port) +"dDa" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"dDd" = ( +/obj/structure/table, +/obj/item/reagent_containers/food/condiment/saltshaker{ + pixel_x = -3 + }, +/obj/item/reagent_containers/food/condiment/peppermill{ + pixel_x = 3 + }, +/obj/item/kitchen/rollingpin, +/obj/machinery/camera{ + c_tag = "Kitchen"; + dir = 1 + }, +/turf/open/floor/plasteel/cafeteria, +/area/service/kitchen) +"dDj" = ( +/obj/structure/cable, +/obj/machinery/power/solar{ + id = "foreport"; + name = "Fore-Port Solar Array" + }, +/turf/open/floor/plasteel/airless/solarpanel, +/area/solars/port/fore) +"dDo" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"dDp" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/white, +/area/science/research) +"dDq" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"dDr" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"dDs" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating, +/area/maintenance/starboard) +"dDu" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/landmark/event_spawn, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"dDv" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"dDw" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"dDy" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/white, +/area/science/research) +"dDz" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/circuit, +/area/science/robotics/mechbay) +"dDA" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"dDB" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"dDC" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"dDE" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"dDF" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"dDG" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"dDI" = ( +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"dDJ" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"dDK" = ( +/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/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"dDL" = ( +/obj/machinery/door/airlock/maintenance/abandoned{ + name = "Storage Room"; + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"dEQ" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"dFc" = ( +/obj/machinery/door/airlock{ + name = "Bar Storage"; + req_access_txt = "25" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood, +/area/service/bar) +"dFh" = ( +/obj/machinery/suit_storage_unit/cmo, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/cafeteria, +/area/command/heads_quarters/cmo) +"dFX" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/structure/sign/warning/vacuum/external{ + pixel_y = -32 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/break_room) +"dGD" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/junction, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/engineering/main) +"dGH" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"dGJ" = ( +/obj/machinery/status_display/ai{ + pixel_y = 32 + }, +/obj/machinery/computer/station_alert, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/ce) +"dHR" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"dHX" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 6 + }, +/turf/open/floor/plating, +/area/engineering/atmos) +"dIl" = ( +/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/structure/table, +/obj/item/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = -1 + }, +/obj/item/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = -1 + }, +/obj/machinery/power/apc{ + areastring = "/area/ai_monitored/command/storage/eva"; + dir = 8; + name = "E.V.A. Storage APC"; + pixel_x = -25 + }, +/obj/structure/cable/yellow{ + icon_state = "0-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/command/storage/eva) +"dIo" = ( +/obj/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/machinery/light/small, +/obj/machinery/camera{ + c_tag = "MiniSat Exterior Access"; + dir = 1; + network = list("minisat") + }, +/obj/machinery/power/apc{ + areastring = "/area/ai_monitored/aisat/exterior"; + name = "MiniSat Exterior APC"; + pixel_y = -24 + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/aisat/exterior) +"dIG" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/command/teleporter) +"dIY" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/ai_monitored/command/storage/eva) +"dJE" = ( +/obj/structure/table, +/obj/item/stack/sheet/metal/fifty, +/obj/item/stack/sheet/metal/fifty, +/obj/item/storage/box/lights/mixed, +/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/commons/storage/tools) +"dKg" = ( +/obj/machinery/photocopier, +/obj/machinery/camera{ + c_tag = "Law Office"; + dir = 8 + }, +/turf/open/floor/wood, +/area/service/lawoffice) +"dKy" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/commons/dorms) +"dKP" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/miningoffice) +"dKV" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"dLe" = ( +/obj/structure/table, +/obj/machinery/power/apc{ + areastring = "/area/medical/morgue"; + dir = 4; + name = "Morgue APC"; + pixel_x = 24 + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/item/folder/white{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/item/clothing/gloves/color/latex, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"dLm" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/closed/wall/r_wall, +/area/engineering/gravity_generator) +"dLs" = ( +/obj/item/stack/cable_coil, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solars/port/aft) +"dLC" = ( +/obj/structure/closet/crate, +/obj/item/stack/sheet/rglass{ + amount = 50 + }, +/obj/item/stack/sheet/metal/fifty, +/obj/item/storage/toolbox/emergency, +/obj/item/flashlight, +/obj/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/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/command/teleporter) +"dLK" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"dMm" = ( +/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/cargo/storage) +"dNK" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/corner, +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 6 + }, +/turf/open/floor/engine, +/area/engineering/main) +"dOw" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/engine, +/area/engineering/main) +"dOA" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/public/glass{ + name = "Chapel" + }, +/turf/open/floor/plasteel/dark, +/area/service/chapel/main) +"dOR" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/maintenance/starboard) +"dPl" = ( +/obj/structure/rack, +/obj/item/storage/briefcase{ + pixel_x = -3; + pixel_y = 2 + }, +/obj/item/storage/secure/briefcase{ + pixel_x = 2; + pixel_y = -2 + }, +/obj/item/clothing/glasses/sunglasses, +/turf/open/floor/wood, +/area/service/lawoffice) +"dPp" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/turf/open/floor/engine, +/area/engineering/main) +"dPI" = ( +/obj/structure/grille, +/turf/closed/wall/r_wall, +/area/engineering/atmos) +"dPX" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Gateway Chamber" + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel, +/area/command/gateway) +"dQg" = ( +/obj/machinery/door/airlock/maintenance{ + req_one_access_txt = "12;27;37" + }, +/turf/open/floor/plating, +/area/maintenance/port) +"dRb" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/atmos/glass{ + name = "Atmospherics Monitoring"; + req_access_txt = "24" + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"dRx" = ( +/obj/structure/closet/crate{ + icon_state = "crateopen" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/cargo/storage) +"dRF" = ( +/obj/machinery/door/poddoor/shutters{ + id = "qm_warehouse"; + name = "Warehouse Shutters" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/cargo/warehouse) +"dRL" = ( +/obj/structure/sign/painting/library{ + pixel_y = -32 + }, +/turf/open/floor/wood, +/area/service/library) +"dSe" = ( +/obj/effect/landmark/xeno_spawn, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solars/port/fore) +"dSm" = ( +/obj/structure/table, +/obj/machinery/microwave{ + pixel_x = -3; + pixel_y = 6 + }, +/obj/machinery/button/door{ + id = "kitchenwindow"; + name = "Window Shutter Control"; + pixel_x = -26; + req_access_txt = "28" + }, +/turf/open/floor/plasteel/cafeteria, +/area/service/kitchen) +"dSu" = ( +/obj/machinery/computer/atmos_alert, +/obj/structure/sign/map/left{ + desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; + icon_state = "map-left-MS"; + pixel_y = 32 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -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/engineering/main) +"dSO" = ( +/mob/living/simple_animal/pet/dog/corgi/Ian, +/turf/open/floor/carpet, +/area/command/heads_quarters/hop) +"dSR" = ( +/obj/machinery/computer/card{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Captain's Desk"; + departmentType = 5; + name = "Captain RC"; + pixel_x = 32 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private) +"dTa" = ( +/obj/machinery/computer/security/telescreen{ + desc = "Used for monitoring medbay to ensure patient safety."; + dir = 8; + name = "Medbay Monitor"; + network = list("medbay"); + pixel_x = 29 + }, +/obj/item/radio/intercom{ + dir = 1; + name = "Station Intercom (General)"; + pixel_y = -29 + }, +/obj/machinery/computer/card/minor/cmo{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/cafeteria, +/area/command/heads_quarters/cmo) +"dTj" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/turf/open/floor/engine, +/area/engineering/main) +"dUL" = ( +/obj/machinery/conveyor_switch/oneway{ + id = "QMLoad2"; + pixel_x = 6 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"dVc" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/loading_area{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"dVE" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/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/office) +"dVP" = ( +/obj/structure/cable/white, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engineering/main) +"dVV" = ( +/obj/machinery/button/door{ + id = "QMLoaddoor"; + layer = 4; + name = "Loading Doors"; + pixel_x = -27; + pixel_y = -5 + }, +/obj/machinery/button/door{ + id = "QMLoaddoor2"; + layer = 4; + name = "Loading Doors"; + pixel_x = -27; + pixel_y = 5 + }, +/obj/machinery/computer/cargo{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/cargo/storage) +"dVX" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/engineering/atmos) +"dWm" = ( +/obj/machinery/computer/med_data, +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/sign/warning/nosmoking{ + 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/medical/treatment_center) +"dWR" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 1 + }, +/obj/machinery/power/rad_collector/anchored, +/obj/structure/cable, +/obj/structure/window/plasma/reinforced, +/turf/open/floor/engine, +/area/engineering/supermatter) +"dXi" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/wood, +/area/service/library) +"dXn" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 4 + }, +/turf/open/floor/engine, +/area/engineering/main) +"dXM" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/service/bar) +"dYf" = ( +/turf/open/floor/plasteel/dark, +/area/commons/cryopod) +"dYt" = ( +/obj/item/storage/box/syringes, +/obj/item/storage/box/beakers{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/structure/table/glass, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"dYu" = ( +/obj/machinery/door/airlock/external{ + name = "Auxiliary Airlock" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"dYw" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "kitchen"; + name = "Serving Hatch" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/item/reagent_containers/food/snacks/pie/cream, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/service/kitchen) +"dYF" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"dYX" = ( +/obj/effect/spawner/structure/window/plasma/reinforced, +/turf/open/floor/plating, +/area/engineering/atmos) +"dZs" = ( +/turf/closed/wall/r_wall, +/area/ai_monitored/command/storage/satellite) +"dZC" = ( +/obj/machinery/status_display/evac, +/turf/closed/wall/r_wall, +/area/engineering/supermatter) +"dZJ" = ( +/obj/machinery/button/door{ + id = "qm_warehouse"; + name = "Warehouse Door Control"; + pixel_y = 24; + req_access_txt = "50" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"dZP" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/engineering/main) +"eai" = ( +/obj/structure/sign/plaques/kiddie/badger{ + pixel_y = 32 + }, +/obj/item/reagent_containers/food/snacks/grown/poppy{ + pixel_y = 2 + }, +/obj/item/reagent_containers/food/snacks/grown/poppy{ + pixel_y = 2 + }, +/obj/item/reagent_containers/food/snacks/grown/poppy{ + pixel_y = 2 + }, +/obj/item/reagent_containers/food/snacks/grown/poppy{ + pixel_y = 2 + }, +/obj/item/reagent_containers/food/snacks/grown/poppy{ + pixel_y = 2 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/table/wood, +/turf/open/floor/carpet, +/area/service/chapel/main) +"eaK" = ( +/obj/structure/chair/office/dark, +/turf/open/floor/wood, +/area/service/library) +"eaP" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/machinery/door/poddoor/preopen{ + id = "hosprivacy"; + name = "privacy shutters" + }, +/turf/open/floor/plating, +/area/command/heads_quarters/hos) +"eaW" = ( +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=8"; + dir = 8; + freq = 1400; + location = "QM #3" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/delivery, +/mob/living/simple_animal/bot/mulebot{ + home_destination = "QM #3"; + suffix = "#3" + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"ebf" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/storage/satellite) +"ebr" = ( +/obj/structure/table, +/obj/item/reagent_containers/food/snacks/mint, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/obj/machinery/power/apc{ + areastring = "/area/service/kitchen"; + name = "Kitchen APC"; + pixel_y = -24 + }, +/obj/structure/cable/yellow, +/turf/open/floor/plasteel/cafeteria, +/area/service/kitchen) +"ecl" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/construction/storage_wing) +"edG" = ( +/turf/closed/wall, +/area/commons/cryopod) +"edM" = ( +/obj/structure/light_construct{ + dir = 4 + }, +/turf/open/floor/wood, +/area/commons/vacant_room/office) +"eeb" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/construction/storage_wing) +"efp" = ( +/obj/structure/chair/office/dark, +/turf/open/floor/wood, +/area/commons/vacant_room/office) +"efB" = ( +/obj/machinery/shieldwallgen, +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 2 + }, +/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/command/teleporter) +"efP" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"egt" = ( +/obj/machinery/camera/autoname, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/machinery/power/apc{ + areastring = "/area/cargo/qm"; + dir = 1; + name = "Quartermaster's Office APC"; + pixel_y = 23 + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/structure/filingcabinet/chestdrawer, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/qm) +"egv" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/pool) +"egx" = ( +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=4"; + dir = 4; + freq = 1400; + location = "Engineering" + }, +/obj/structure/plasticflaps/opaque, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engineering/main) +"egK" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=2.2-Leaving-Storage"; + location = "2.1-Storage" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/construction/storage_wing) +"egX" = ( +/obj/structure/bookcase/random/fiction, +/turf/open/floor/wood, +/area/service/library) +"ehp" = ( +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/machinery/power/solar{ + id = "aftport"; + name = "Aft-Port Solar Array" + }, +/turf/open/floor/plasteel/airless/solarpanel, +/area/solars/port/aft) +"ehF" = ( +/obj/structure/closet/toolcloset, +/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/commons/storage/tools) +"ehN" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 5 + }, +/turf/open/floor/engine, +/area/engineering/main) +"eil" = ( +/turf/open/floor/carpet, +/area/command/bridge) +"eiS" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Port Primary Hallway - True Port"; + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/port) +"ejd" = ( +/obj/structure/bookcase{ + name = "Holy Bookcase" + }, +/turf/open/floor/plasteel/chapel{ + dir = 4 + }, +/area/service/chapel/main) +"ejj" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering/glass{ + name = "Engineering Foyer"; + req_one_access_txt = "32;19" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"ejy" = ( +/obj/machinery/status_display/supply, +/turf/closed/wall, +/area/cargo/sorting) +"ejP" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/machinery/door/poddoor/preopen{ + id = "cmoprivacy"; + name = "privacy shutter" + }, +/turf/open/floor/plating, +/area/command/heads_quarters/cmo) +"ejY" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/office) +"ekk" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"ekt" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/table/wood, +/obj/structure/extinguisher_cabinet{ + pixel_x = -27 + }, +/obj/item/folder/blue, +/obj/item/clothing/head/collectable/HoP{ + name = "novelty HoP hat" + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/command/corporate_showroom) +"ekw" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/cargo/warehouse) +"ekH" = ( +/obj/machinery/gravity_generator/main/station, +/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/engineering/gravity_generator) +"eln" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"elo" = ( +/obj/structure/sign/plaques/deempisi{ + pixel_y = 28 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/machinery/disposal/bin, +/obj/machinery/light_switch{ + pixel_x = 25 + }, +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/service/bar) +"ely" = ( +/obj/machinery/computer/card/minor/rd{ + dir = 4 + }, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/command/heads_quarters/rd) +"elC" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"elE" = ( +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 1; + name = "O2 to Airmix" + }, +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"emj" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"emB" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/service/bar) +"emC" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/machinery/door/window/eastleft{ + name = "Mail"; + req_access_txt = "50" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/cargo/sorting) +"emH" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/cargo/sorting) +"eof" = ( +/turf/closed/wall, +/area/commons/toilet/restrooms) +"eoK" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"eoN" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/techstorage/AI, +/turf/open/floor/plasteel/dark, +/area/engineering/storage/tech) +"eqq" = ( +/obj/item/screwdriver, +/obj/structure/table/reinforced, +/obj/structure/sign/poster/official/random{ + pixel_y = 32 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/item/stack/sheet/metal/ten, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"eqG" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/circuit) +"eqJ" = ( +/obj/structure/reflector/double/anchored{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"erz" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"erD" = ( +/obj/machinery/reagentgrinder, +/obj/structure/table/glass, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"erE" = ( +/obj/machinery/camera{ + c_tag = "Atmospherics Tank - Toxins"; + dir = 8 + }, +/turf/open/floor/engine/plasma, +/area/engineering/atmos) +"esj" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/locker) +"esv" = ( +/obj/machinery/door/airlock{ + id_tag = "Toilet4"; + name = "Unit 4" + }, +/turf/open/floor/plasteel/freezer, +/area/commons/toilet/restrooms) +"esC" = ( +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/machinery/power/smes/engineering, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"esP" = ( +/obj/structure/window/reinforced, +/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 + }, +/obj/structure/reagent_dispensers/watertank/high, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"esR" = ( +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 8; + name = "Mix to Filter" + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"etb" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 9 + }, +/obj/structure/lattice, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"etg" = ( +/obj/structure/disposalpipe/segment, +/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/office) +"etj" = ( +/obj/structure/sign/directions/science{ + pixel_y = -8 + }, +/obj/structure/sign/directions/medical{ + pixel_y = 8 + }, +/obj/structure/sign/directions/evac, +/turf/closed/wall/r_wall, +/area/ai_monitored/command/storage/eva) +"etM" = ( +/obj/structure/toilet/secret/low_loot{ + pixel_y = 8 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/button/door{ + id = "AuxToilet3"; + name = "Lock Control"; + normaldoorcontrol = 1; + pixel_x = 25; + specialfunctions = 4 + }, +/obj/machinery/newscaster{ + pixel_y = -32 + }, +/obj/effect/landmark/blobstart, +/turf/open/floor/plating, +/area/commons/toilet/auxiliary) +"euh" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/engine, +/area/engineering/supermatter) +"evV" = ( +/obj/structure/chair/wood/wings, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/landmark/start/mime, +/turf/open/floor/carpet, +/area/service/theater) +"ewx" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/engine, +/area/engineering/main) +"ewK" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plating, +/area/engineering/atmos) +"ewT" = ( +/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{ + charge = 100; + maxcharge = 15000 + }, +/obj/item/stack/sheet/mineral/plasma{ + amount = 30 + }, +/obj/item/gps, +/turf/open/floor/plating, +/area/engineering/main) +"ewZ" = ( +/obj/machinery/conveyor/inverted{ + dir = 6; + id = "QMLoad" + }, +/turf/open/floor/plating, +/area/cargo/storage) +"exg" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1 + }, +/turf/closed/wall/r_wall, +/area/engineering/atmos) +"exJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/engineering/gravity_generator) +"exO" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp/green{ + pixel_x = 1; + pixel_y = 5 + }, +/turf/open/floor/wood, +/area/service/library) +"eyO" = ( +/obj/structure/closet/secure_closet/hos, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -22 + }, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_x = -29; + pixel_y = 23 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hos) +"eyR" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/commons/dorms) +"eyU" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 10 + }, +/obj/machinery/meter, +/turf/closed/wall/r_wall, +/area/engineering/supermatter) +"ezp" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "council blast"; + name = "Council Blast Doors" + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/command/bridge) +"ezr" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ + dir = 8 + }, +/turf/open/floor/engine, +/area/engineering/main) +"ezu" = ( +/obj/machinery/holopad, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/engineering/main) +"ezN" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"ezU" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"eAd" = ( +/obj/machinery/door/airlock/highsecurity{ + name = "Secure Tech Storage"; + req_access_txt = "19;23" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/storage/tech) +"eAe" = ( +/obj/machinery/sleeper{ + dir = 8 + }, +/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 + }, +/turf/open/floor/plasteel/white, +/area/medical/treatment_center) +"eAy" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"eAH" = ( +/obj/structure/table, +/obj/item/hand_labeler, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/storage/art) +"eAK" = ( +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -22 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Cargo - Office"; + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/office) +"eAW" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private) +"eBe" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/manifold/purple/visible{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"eBq" = ( +/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/engineering/atmos) +"eBu" = ( +/obj/machinery/door/airlock/grunge, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/commons/vacant_room/office) +"eBD" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/high_volume/siphon/atmos/air_output{ + dir = 1 + }, +/turf/open/floor/engine/air, +/area/engineering/atmos) +"eBL" = ( +/obj/structure/table, +/obj/item/stock_parts/subspace/ansible, +/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/item/stock_parts/subspace/crystal, +/turf/open/floor/plasteel/dark, +/area/engineering/storage/tcomms) +"eCa" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/vending/coffee{ + pixel_x = -3 + }, +/obj/machinery/button/door{ + id = "council blast"; + name = "Council Chamber Blast Door Control"; + pixel_x = -28; + req_access_txt = "19" + }, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"eCc" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/carpet, +/area/command/heads_quarters/captain/private) +"eCf" = ( +/obj/structure/reagent_dispensers/beerkeg, +/turf/open/floor/wood, +/area/service/bar) +"eCq" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/window/northleft{ + name = "Inner Pipe Access"; + req_access_txt = "24" + }, +/obj/machinery/atmospherics/pipe/simple/yellow/visible, +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"eCz" = ( +/obj/machinery/mass_driver{ + id = "chapelgun" + }, +/obj/structure/sign/warning/vacuum/external{ + pixel_y = 32 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/item/gps, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/service/chapel/main) +"eCM" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 4 + }, +/obj/structure/grille, +/turf/closed/wall/r_wall, +/area/engineering/atmos) +"eCS" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/engineering/gravity_generator) +"eCZ" = ( +/obj/machinery/atmospherics/pipe/simple/dark/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"eDc" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"eDr" = ( +/obj/machinery/washing_machine, +/obj/structure/sign/poster/official/random{ + pixel_y = 32 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/cafeteria, +/area/commons/dorms) +"eDG" = ( +/obj/machinery/door/poddoor{ + id = "QMLoaddoor"; + name = "Supply Dock Loading Door" + }, +/obj/machinery/conveyor{ + dir = 8; + id = "QMLoad" + }, +/turf/open/floor/plating, +/area/cargo/storage) +"eDP" = ( +/obj/machinery/newscaster{ + pixel_y = -32 + }, +/obj/item/storage/box/donkpockets, +/obj/structure/table/glass, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/engineering/break_room) +"eDX" = ( +/turf/closed/wall, +/area/engineering/main) +"eDZ" = ( +/obj/structure/sign/warning/securearea, +/turf/closed/wall/r_wall, +/area/command/gateway) +"eEe" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"eFn" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/machinery/atmospherics/miner/oxygen, +/turf/open/floor/engine/o2, +/area/engineering/atmos) +"eFQ" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/machinery/portable_atmospherics/scrubber, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = 26 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/commons/locker) +"eGc" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/commons/dorms) +"eGO" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/qm) +"eGP" = ( +/turf/closed/wall, +/area/command/gateway) +"eHa" = ( +/obj/structure/table/wood, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/item/storage/fancy/donut_box, +/turf/open/floor/carpet, +/area/command/heads_quarters/captain/private) +"eHv" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/cargo/miningoffice) +"eHw" = ( +/obj/structure/noticeboard{ + desc = "A memorial wall for pinning up momentos"; + name = "memorial board"; + pixel_y = 32 + }, +/obj/item/storage/fancy/candle_box, +/obj/item/storage/fancy/candle_box{ + pixel_x = -2; + pixel_y = 2 + }, +/obj/effect/decal/cleanable/cobweb, +/obj/structure/table/wood, +/turf/open/floor/carpet, +/area/service/chapel/main) +"eHP" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/engineering/glass{ + name = "Supermatter Engine"; + req_access_txt = "10" + }, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"eHR" = ( +/obj/structure/sign/poster/ripped{ + pixel_y = 32 + }, +/obj/structure/table, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/item/light/tube, +/obj/machinery/power/apc{ + areastring = "/area/commons/fitness/pool"; + dir = 4; + name = "Pool APC"; + pixel_x = 24 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/pool) +"eHT" = ( +/obj/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel/dark, +/area/commons/fitness/recreation) +"eJd" = ( +/obj/structure/closet/secure_closet/RD, +/obj/machinery/keycard_auth{ + pixel_y = -24 + }, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/command/heads_quarters/rd) +"eJg" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"eKo" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/door/window{ + base_state = "right"; + icon_state = "right"; + name = "MiniSat Walkway Access" + }, +/obj/machinery/camera{ + c_tag = "MiniSat Exterior - Aft Starboard"; + dir = 4; + network = list("minisat") + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/aisat/exterior) +"eKD" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/machinery/power/terminal, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/engineering/gravity_generator) +"eKY" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Crew Quarters Access" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/commons/locker) +"eLt" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -24 + }, +/obj/machinery/light_switch{ + pixel_x = -38 + }, +/obj/effect/turf_decal/bot{ + dir = 1 + }, +/turf/open/floor/plasteel{ + dir = 1 + }, +/area/engineering/main) +"eMh" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/obj/machinery/power/apc/highcap/ten_k{ + areastring = "/area/hallway/primary/central"; + dir = 1; + name = "Central Primary Hallway APC"; + pixel_y = 23 + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"eMV" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp/green{ + pixel_x = 1; + pixel_y = 5 + }, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"eNK" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/spawner/structure/window/plasma/reinforced, +/turf/open/floor/plating, +/area/engineering/main) +"eNY" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/service/theater) +"eOa" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/construction/storage_wing) +"eOd" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"eOf" = ( +/obj/structure/table, +/obj/effect/turf_decal/delivery, +/obj/item/clothing/glasses/meson/engine, +/obj/item/clothing/glasses/meson/engine, +/obj/item/clothing/glasses/meson/engine, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/item/pipe_dispenser, +/obj/item/pipe_dispenser, +/obj/item/pipe_dispenser, +/turf/open/floor/plasteel, +/area/engineering/main) +"eOC" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ + dir = 8 + }, +/turf/open/floor/engine, +/area/engineering/main) +"ePg" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock{ + name = "Auxiliary Bathrooms" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/commons/toilet/auxiliary) +"ePh" = ( +/obj/machinery/keycard_auth{ + pixel_x = 26 + }, +/turf/open/floor/carpet, +/area/command/heads_quarters/hop) +"ePj" = ( +/obj/machinery/vending/wardrobe/chef_wardrobe, +/turf/open/floor/plasteel/showroomfloor, +/area/service/kitchen) +"ePw" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/carpet, +/area/service/library) +"ePx" = ( +/obj/structure/table/wood, +/obj/item/folder/red, +/obj/item/pen/red, +/turf/open/floor/wood, +/area/commons/vacant_room/office) +"ePC" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/carpet, +/area/service/chapel/main) +"ePL" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/engineering/main) +"eQs" = ( +/obj/structure/lattice, +/turf/closed/wall, +/area/commons/cryopod) +"eQM" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/command/teleporter) +"eQY" = ( +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/carpet, +/area/command/heads_quarters/hos) +"eQZ" = ( +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/service/chapel/main) +"eRk" = ( +/turf/open/floor/plasteel/chapel{ + dir = 4 + }, +/area/service/chapel/main) +"eRy" = ( +/obj/effect/landmark/start/station_engineer, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"eRD" = ( +/obj/machinery/vending/coffee, +/turf/open/floor/wood, +/area/service/library) +"eSp" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/hydroponics/constructable, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/service/hydroponics/garden) +"eSC" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/commons/fitness/pool) +"eSK" = ( +/obj/machinery/suit_storage_unit/standard_unit, +/obj/machinery/firealarm{ + dir = 8; + 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/ai_monitored/command/storage/eva) +"eSQ" = ( +/obj/machinery/light_switch{ + pixel_y = -28 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/obj/machinery/light, +/turf/open/floor/carpet, +/area/service/theater) +"eTe" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/commons/storage/tools) +"eTx" = ( +/obj/structure/destructible/cult/tome, +/obj/machinery/newscaster{ + pixel_x = -30 + }, +/obj/item/clothing/under/suit/red, +/obj/effect/decal/cleanable/cobweb, +/obj/item/book/codex_gigas, +/turf/open/floor/engine/cult, +/area/service/library) +"eTD" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/engineering/break_room) +"eTE" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/item/clothing/mask/horsehead, +/obj/structure/table/wood, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/obj/structure/sign/poster/contraband/random{ + pixel_x = -32 + }, +/obj/item/clothing/mask/cigarette/pipe, +/obj/item/clothing/mask/fakemoustache, +/turf/open/floor/wood, +/area/service/theater) +"eTH" = ( +/obj/machinery/status_display/evac{ + pixel_y = 32 + }, +/obj/structure/bed/dogbed/ian, +/turf/open/floor/wood, +/area/command/heads_quarters/hop) +"eTP" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/machinery/power/apc/highcap/five_k{ + areastring = "/area/security/warden"; + dir = 8; + name = "Brig Control APC"; + pixel_x = -25 + }, +/obj/structure/cable/yellow, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"eTY" = ( +/obj/machinery/button/door{ + id = "xeno_blastdoor"; + name = "Secure Lab Shutter Control"; + pixel_x = -5; + pixel_y = -5; + req_access_txt = "47" + }, +/obj/structure/table/reinforced, +/obj/machinery/button/door{ + id = "rdprivacy"; + name = "Privacy Shutters Control"; + pixel_x = 5; + pixel_y = 5 + }, +/obj/machinery/button/door{ + id = "Biohazard"; + name = "Entrance Shutter Control"; + pixel_x = -5; + pixel_y = 5; + req_access_txt = "47" + }, +/obj/machinery/button/door{ + id = "toxins_blastdoor"; + name = "Toxins Shutter Control"; + pixel_x = 5; + pixel_y = -5; + req_access_txt = "47" + }, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/command/heads_quarters/rd) +"eUh" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/cargo/storage) +"eVu" = ( +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"eVz" = ( +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/item/storage/box/matches{ + pixel_x = -2; + pixel_y = 3 + }, +/obj/item/clothing/mask/cigarette/cigar{ + pixel_x = 4; + pixel_y = 1 + }, +/obj/item/clothing/mask/cigarette/cigar{ + pixel_x = -4; + pixel_y = 1 + }, +/obj/item/clothing/mask/cigarette/cigar/cohiba, +/obj/structure/table/wood, +/turf/open/floor/carpet, +/area/command/corporate_showroom) +"eVB" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/freezer, +/area/commons/toilet/restrooms) +"eVL" = ( +/obj/item/seeds/apple, +/obj/item/seeds/banana, +/obj/item/seeds/cocoapod, +/obj/item/seeds/grape, +/obj/item/seeds/orange, +/obj/item/seeds/sugarcane, +/obj/item/seeds/wheat, +/obj/item/seeds/watermelon, +/obj/structure/table, +/obj/item/seeds/tower, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/service/hydroponics/garden) +"eWf" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/service/chapel/main) +"eWn" = ( +/obj/structure/closet/toolcloset, +/obj/effect/turf_decal/delivery, +/obj/item/clothing/glasses/meson/engine, +/turf/open/floor/plasteel, +/area/engineering/main) +"eWr" = ( +/obj/machinery/atmospherics/components/binary/valve/digital{ + name = "Waste Release" + }, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"eWU" = ( +/obj/structure/table, +/obj/item/storage/belt/utility, +/obj/item/storage/belt/utility, +/obj/item/radio/off, +/obj/item/radio/off, +/obj/item/radio/off, +/obj/item/radio/off, +/obj/item/multitool, +/turf/open/floor/plasteel, +/area/ai_monitored/command/storage/eva) +"eWY" = ( +/obj/effect/landmark/start/atmospheric_technician, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"eXd" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = 21 + }, +/turf/open/floor/engine, +/area/engineering/main) +"eXu" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/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/modular_computer/console/preset/research{ + dir = 8 + }, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/command/heads_quarters/rd) +"eXC" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/machinery/holopad, +/turf/open/floor/plasteel/white, +/area/medical/treatment_center) +"eXH" = ( +/obj/machinery/status_display/evac{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/table/wood, +/obj/item/pinpointer/nuke, +/obj/item/disk/nuclear, +/turf/open/floor/carpet, +/area/command/heads_quarters/captain/private) +"eXX" = ( +/obj/structure/table/reinforced, +/obj/item/storage/box/matches{ + pixel_y = 5 + }, +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/service/bar) +"eYD" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/engine, +/area/engineering/main) +"eYH" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/engine, +/area/engineering/main) +"eZc" = ( +/obj/machinery/power/apc{ + areastring = "/area/medical/medbay/central"; + dir = 1; + name = "Medbay Central APC"; + pixel_y = 23 + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Medbay Hallway Fore"; + network = list("ss13","medbay") + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"eZe" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"eZS" = ( +/obj/machinery/door/poddoor/preopen{ + id = "transittube"; + name = "Transit Tube Blast Door" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"faG" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"faU" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/turf/open/space/basic, +/area/space/nearstation) +"fbn" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"fbw" = ( +/obj/machinery/door/airlock{ + id_tag = "Cabin3"; + name = "Cabin 6" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/wood, +/area/commons/dorms) +"fbJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/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/service/hydroponics) +"fbZ" = ( +/obj/machinery/shieldgen, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Engineering - Secure Storage" + }, +/turf/open/floor/plating, +/area/engineering/main) +"fcg" = ( +/obj/effect/landmark/start/captain, +/obj/structure/chair/comfy/brown, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private) +"fcl" = ( +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"fco" = ( +/obj/structure/table, +/obj/item/assembly/igniter{ + pixel_x = -5; + pixel_y = 3 + }, +/obj/item/assembly/igniter{ + pixel_x = 5; + pixel_y = -4 + }, +/obj/item/assembly/igniter{ + pixel_x = 2; + pixel_y = 6 + }, +/obj/item/assembly/igniter{ + pixel_x = 2; + pixel_y = -1 + }, +/obj/machinery/power/apc{ + areastring = "/area/science/mixing"; + dir = 4; + name = "Toxins Lab APC"; + pixel_x = 24 + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"fcU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"fdk" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/holopad/secure, +/turf/open/floor/plasteel/cafeteria, +/area/command/heads_quarters/cmo) +"fdE" = ( +/obj/structure/chair/wood/wings{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/landmark/start/clown, +/turf/open/floor/carpet, +/area/service/theater) +"fem" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/portable_atmospherics/canister/water_vapor, +/mob/living/simple_animal/hostile/lizard{ + name = "Wags-His-Tail"; + real_name = "Wags-His-Tail" + }, +/turf/open/floor/plasteel, +/area/service/janitor) +"feJ" = ( +/obj/machinery/disposal/bin{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/wood, +/area/service/bar) +"feU" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"fft" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/ai_monitored/command/storage/eva) +"ffx" = ( +/obj/machinery/airalarm{ + pixel_y = 26 + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + name = "Auxiliary MiniSat Distribution Port" + }, +/obj/machinery/portable_atmospherics/canister/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/ai_monitored/command/storage/satellite) +"ffN" = ( +/obj/structure/chair/comfy/brown{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/command/heads_quarters/captain/private) +"ffS" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/service/bar) +"fgj" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -24 + }, +/obj/machinery/camera{ + c_tag = "Restrooms"; + dir = 4 + }, +/turf/open/floor/plasteel/freezer, +/area/commons/toilet/restrooms) +"fgv" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/medical/treatment_center) +"fgA" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/aisat/exterior) +"fgK" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"fgO" = ( +/obj/structure/bed, +/obj/item/bedsheet/captain, +/obj/effect/landmark/start/captain, +/obj/machinery/camera{ + c_tag = "Captain's Quarters"; + dir = 8 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private) +"fgU" = ( +/obj/machinery/hydroponics/soil{ + pixel_y = 8 + }, +/obj/item/reagent_containers/food/snacks/grown/harebell, +/obj/item/reagent_containers/food/snacks/grown/harebell, +/obj/item/reagent_containers/food/snacks/grown/harebell, +/obj/item/reagent_containers/food/snacks/grown/harebell, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plasteel/cult, +/area/service/chapel/main) +"fht" = ( +/obj/structure/table/reinforced, +/obj/item/flashlight/lamp, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/command/heads_quarters/ce) +"fhB" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/turf/closed/wall/r_wall, +/area/engineering/atmos) +"fhO" = ( +/obj/structure/closet/secure_closet/personal, +/obj/item/clothing/under/misc/assistantformal, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/item/clothing/suit/hooded/wintercoat, +/obj/item/clothing/shoes/winterboots, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/commons/dorms) +"fkj" = ( +/obj/item/folder/blue, +/obj/structure/table/glass, +/obj/item/stamp/cmo, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/cafeteria, +/area/command/heads_quarters/cmo) +"fkx" = ( +/obj/structure/table/wood, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/item/clothing/head/sombrero, +/obj/structure/sign/poster/random{ + pixel_x = 32 + }, +/turf/open/floor/wood, +/area/service/theater) +"fkF" = ( +/obj/structure/window/reinforced, +/obj/machinery/door/window/eastright{ + base_state = "left"; + dir = 8; + icon_state = "left"; + name = "Fitness Ring" + }, +/turf/open/floor/plasteel/dark, +/area/commons/fitness/recreation) +"flE" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/engineering/atmos) +"flY" = ( +/turf/open/pool, +/area/commons/fitness/pool) +"fmJ" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/open/floor/wood, +/area/commons/vacant_room/office) +"fmO" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/closed/wall, +/area/commons/fitness/recreation) +"fmY" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/machinery/door/poddoor/preopen{ + id = "hosspace"; + name = "space shutters" + }, +/turf/open/floor/plating, +/area/command/heads_quarters/hos) +"fnl" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"fnn" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/paper_bin{ + pixel_x = -2; + pixel_y = 8 + }, +/obj/structure/table/glass, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"fnI" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel/white, +/area/medical/treatment_center) +"foj" = ( +/obj/machinery/power/smes{ + charge = 5e+006 + }, +/obj/structure/cable/yellow{ + icon_state = "0-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/command/storage/satellite) +"fox" = ( +/obj/structure/chair/stool, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/command/gateway) +"fpa" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = -30 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"fpg" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/pipedispenser/disposal, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"fpr" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/newscaster{ + pixel_x = 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/command/heads_quarters/ce) +"fpF" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/chair/stool, +/turf/open/floor/plasteel/chapel{ + dir = 4 + }, +/area/service/chapel/main) +"fqD" = ( +/obj/structure/window/reinforced, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 10 + }, +/obj/machinery/portable_atmospherics/canister, +/turf/open/floor/plasteel/cafeteria, +/area/engineering/atmos) +"frn" = ( +/obj/structure/table, +/obj/item/folder/red, +/obj/item/restraints/handcuffs, +/turf/open/floor/plasteel, +/area/security/office) +"frr" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/table/wood/poker, +/obj/item/clothing/head/fedora, +/turf/open/floor/wood, +/area/service/bar) +"frS" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/command/storage/eva) +"fse" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/smartfridge/disks{ + pixel_y = 2 + }, +/obj/structure/table, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"fsi" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/commons/fitness/recreation) +"fsX" = ( +/obj/structure/table/wood, +/obj/item/book/manual/wiki/security_space_law, +/obj/machinery/power/apc{ + areastring = "/area/command/heads_quarters/captain/private"; + dir = 8; + name = "Captain's Quarters APC"; + pixel_x = -25 + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/item/paper/fluff/gateway, +/obj/item/coin/plasma, +/obj/item/melee/chainofcommand, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private) +"fti" = ( +/obj/structure/table, +/obj/item/stack/rods/fifty, +/obj/item/wrench, +/obj/item/storage/box/lights/mixed, +/obj/effect/turf_decal/bot{ + dir = 1 + }, +/turf/open/floor/plasteel{ + dir = 1 + }, +/area/engineering/main) +"ful" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/airlock/highsecurity{ + name = "Gravity Generator Foyer"; + req_access_txt = "10" + }, +/obj/effect/turf_decal/delivery, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/gravity_generator) +"fuH" = ( +/obj/structure/sign/warning/securearea{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"fvo" = ( +/turf/closed/wall, +/area/service/chapel/main) +"fwb" = ( +/obj/item/soap/nanotrasen, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/table/wood, +/obj/structure/sign/poster/random{ + pixel_x = 32 + }, +/turf/open/floor/wood, +/area/service/theater) +"fwd" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/machinery/door/poddoor/preopen{ + id = "cmoprivacy"; + name = "privacy shutter" + }, +/turf/open/floor/plating, +/area/command/heads_quarters/cmo) +"fwt" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-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/command/heads_quarters/hos) +"fwB" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/chapel{ + dir = 8 + }, +/area/service/chapel/main) +"fwH" = ( +/obj/machinery/air_sensor/atmos/nitrogen_tank, +/turf/open/floor/engine/n2, +/area/engineering/atmos) +"fxb" = ( +/obj/machinery/vending/engivend, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/engineering/main) +"fxf" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel/dark, +/area/commons/cryopod) +"fxX" = ( +/obj/machinery/vending/kink, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/commons/locker) +"fxY" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + 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/office) +"fyO" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/table/glass, +/obj/item/folder/blue, +/obj/item/folder/blue, +/obj/item/pen, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/cafeteria, +/area/command/heads_quarters/cmo) +"fyZ" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/machinery/firealarm{ + pixel_y = 29 + }, +/obj/structure/sign/poster/official/random{ + pixel_x = 32 + }, +/obj/structure/closet/crate/hydroponics, +/obj/item/shovel/spade, +/obj/item/wrench, +/obj/item/reagent_containers/glass/bucket, +/obj/item/cultivator, +/obj/item/wirecutters, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"fzt" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock{ + name = "Locker Room" + }, +/turf/open/floor/plasteel, +/area/commons/locker) +"fzU" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/techstorage/RnD_secure, +/turf/open/floor/plasteel/dark, +/area/engineering/storage/tech) +"fzZ" = ( +/obj/structure/table/wood, +/obj/item/storage/photo_album{ + pixel_y = -4 + }, +/obj/item/camera{ + pixel_y = 4 + }, +/obj/item/radio/intercom{ + dir = 8; + freerange = 1; + name = "Station Intercom (Captain)"; + pixel_x = -28 + }, +/turf/open/floor/carpet, +/area/command/heads_quarters/captain/private) +"fAA" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/locker) +"fCh" = ( +/obj/structure/disposaloutlet{ + dir = 4 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plating, +/area/cargo/sorting) +"fCx" = ( +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"fCZ" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/visible{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/engineering/atmos) +"fDh" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/engine, +/area/engineering/main) +"fDD" = ( +/obj/machinery/light_switch{ + pixel_y = -25 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"fEb" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/service/library) +"fEl" = ( +/obj/structure/bed, +/obj/machinery/button/door{ + id = "Cabin5"; + name = "Dorm Bolt Control"; + normaldoorcontrol = 1; + pixel_x = -25; + specialfunctions = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/obj/effect/spawner/lootdrop/bedsheet, +/turf/open/floor/wood, +/area/commons/dorms) +"fEm" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -26 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/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/command/heads_quarters/ce) +"fEX" = ( +/turf/open/floor/wood, +/area/service/library) +"fFa" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/service/kitchen) +"fFq" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -24 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/computer/shuttle/mining{ + dir = 4; + req_access = null + }, +/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/cargo/miningoffice) +"fFM" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"fFR" = ( +/obj/structure/closet/crate, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/camera{ + c_tag = "Atmospherics - Entrance" + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"fFY" = ( +/obj/structure/cable, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solars/port/aft) +"fGc" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plating, +/area/engineering/atmos) +"fGl" = ( +/obj/structure/chair, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/aisat/exterior) +"fGC" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"fGG" = ( +/obj/machinery/vr_sleeper, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"fHg" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"fHh" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/break_room) +"fHu" = ( +/obj/item/stack/sheet/cardboard, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/warehouse) +"fHz" = ( +/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/command/bridge) +"fHG" = ( +/obj/item/radio/intercom{ + pixel_y = 25 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -26 + }, +/obj/structure/table/wood, +/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/item/clothing/under/misc/burial, +/obj/item/clothing/under/misc/burial, +/turf/open/floor/plasteel/grimy, +/area/service/chapel/office) +"fIC" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/construction/storage_wing) +"fJE" = ( +/obj/machinery/power/apc{ + areastring = "/area/maintenance/disposal/incinerator"; + dir = 8; + name = "Incinerator APC"; + pixel_x = -25 + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"fJU" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"fKu" = ( +/obj/structure/chair/comfy/black{ + dir = 8 + }, +/turf/open/floor/plasteel/chapel{ + dir = 4 + }, +/area/service/chapel/main) +"fKG" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/cargo/miningoffice) +"fKM" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/closed/wall/r_wall, +/area/engineering/main) +"fLh" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/commons/fitness/recreation) +"fLm" = ( +/obj/structure/table/wood, +/obj/machinery/light, +/turf/open/floor/wood, +/area/service/library) +"fLq" = ( +/obj/effect/landmark/event_spawn, +/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/office) +"fLL" = ( +/obj/structure/lattice, +/turf/open/space, +/area/ai_monitored/aisat/exterior) +"fLM" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/service/kitchen) +"fLW" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + name = "bridge blast door" + }, +/turf/open/floor/plating, +/area/command/bridge) +"fMm" = ( +/obj/machinery/light/small, +/obj/machinery/camera{ + c_tag = "MiniSat Exterior - Space Access"; + dir = 1; + network = list("minisat") + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/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/aisat/exterior) +"fMM" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"fMW" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/command/heads_quarters/ce) +"fNf" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/machinery/light/small, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"fNh" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"fNk" = ( +/obj/machinery/vending/wardrobe/hydro_wardrobe, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"fNy" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "MiniSat Exterior - Starboard Aft"; + dir = 4; + network = list("minisat") + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/aisat/exterior) +"fOS" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/wood, +/area/command/corporate_showroom) +"fPJ" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/carpet, +/area/command/heads_quarters/hop) +"fPT" = ( +/obj/structure/table, +/obj/item/taperecorder{ + pixel_x = -3 + }, +/obj/item/paicard{ + pixel_x = 4 + }, +/obj/item/storage/secure/briefcase, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 24 + }, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/command/heads_quarters/rd) +"fQn" = ( +/obj/machinery/light_switch{ + pixel_x = -38 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -24 + }, +/obj/effect/turf_decal/loading_area{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"fQx" = ( +/obj/structure/reflector/box/anchored{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"fQZ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/spawner/structure/window/plasma/reinforced, +/turf/open/floor/plating, +/area/engineering/main) +"fRo" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/commons/fitness/recreation) +"fSe" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "Corporate Showroom"; + req_access_txt = "19" + }, +/turf/open/floor/wood, +/area/command/corporate_showroom) +"fSx" = ( +/obj/structure/chair/office/dark, +/obj/effect/landmark/start/head_of_personnel, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/light_switch{ + pixel_x = 38; + pixel_y = -35 + }, +/obj/machinery/button/door{ + id = "hopqueue"; + name = "Queue Shutters Control"; + pixel_x = 25; + pixel_y = -36; + req_access_txt = "28" + }, +/obj/machinery/button/door{ + id = "hop"; + name = "Privacy Shutters Control"; + pixel_x = 25; + pixel_y = -26; + req_access_txt = "28" + }, +/obj/machinery/button/flasher{ + id = "hopflash"; + pixel_x = 38; + pixel_y = -25 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/hop) +"fTb" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/pool) +"fTZ" = ( +/obj/machinery/conveyor/inverted{ + dir = 10; + id = "QMLoad2" + }, +/turf/open/floor/plating, +/area/cargo/storage) +"fUl" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/gravity_generator) +"fVa" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/cargo/miningoffice) +"fVg" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible, +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 4; + name = "Unfiltered & Air to Mix" + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"fVD" = ( +/obj/machinery/pool/drain, +/turf/open/pool, +/area/commons/fitness/pool) +"fVX" = ( +/obj/item/storage/secure/safe{ + pixel_x = 32 + }, +/obj/machinery/status_display/ai{ + pixel_y = 32 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/rd) +"fWb" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"fWm" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/nuke_storage) +"fWs" = ( +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/disposal/deliveryChute{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/cargo/sorting) +"fWy" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "MiniSat Exterior - Aft"; + network = list("minisat") + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/aisat/exterior) +"fWz" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/landmark/start/mime, +/turf/open/floor/wood, +/area/service/theater) +"fWJ" = ( +/obj/machinery/biogenerator, +/obj/machinery/firealarm{ + pixel_y = 27 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/service/hydroponics/garden) +"fWS" = ( +/obj/structure/sign/poster/official/random, +/turf/closed/wall, +/area/service/hydroponics) +"fXa" = ( +/obj/structure/dresser, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/turf/open/floor/wood, +/area/service/theater) +"fXs" = ( +/obj/machinery/light/small, +/turf/open/floor/engine/n2, +/area/engineering/atmos) +"fXZ" = ( +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solars/port/aft) +"fYa" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/chair/office/dark{ + dir = 8 + }, +/obj/effect/landmark/start/botanist, +/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/service/hydroponics) +"fZR" = ( +/obj/machinery/seed_extractor, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"gaa" = ( +/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/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/command/heads_quarters/ce) +"gad" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/airlock/public/glass{ + name = "Chapel Office"; + req_access_txt = "22" + }, +/turf/open/floor/plasteel/dark, +/area/service/chapel/office) +"gaV" = ( +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/pipedispenser, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/camera{ + c_tag = "Atmospherics - Entrance"; + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"gbt" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"gbw" = ( +/obj/machinery/camera/autoname{ + dir = 4 + }, +/obj/structure/rack, +/obj/item/storage/toolbox/electrical{ + pixel_x = 1; + pixel_y = -1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/storage/primary) +"gbJ" = ( +/turf/open/floor/plasteel/dark, +/area/service/chapel/main) +"gcz" = ( +/obj/structure/displaycase/labcage, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/sign/warning/biohazard{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/rd) +"gcE" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"gcI" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/public/glass{ + name = "Chapel" + }, +/turf/open/floor/plasteel/dark, +/area/service/chapel/main) +"gcZ" = ( +/obj/structure/table/wood, +/obj/item/folder/red, +/turf/open/floor/carpet, +/area/command/bridge) +"gdi" = ( +/obj/structure/chair/stool, +/turf/open/floor/plasteel/chapel{ + dir = 8 + }, +/area/service/chapel/main) +"gdF" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/item/storage/secure/briefcase, +/obj/structure/table/wood, +/obj/item/folder/blue, +/obj/item/storage/secure/briefcase, +/obj/item/assembly/flash/handheld, +/obj/machinery/computer/security/telescreen/vault{ + pixel_y = 30 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/hop) +"gdH" = ( +/obj/item/toy/cards/deck, +/obj/structure/table/wood, +/turf/open/floor/wood, +/area/commons/vacant_room/office) +"gdJ" = ( +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_y = -30 + }, +/obj/machinery/vending/cigarette, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/engineering/break_room) +"gdM" = ( +/obj/machinery/camera{ + c_tag = "Atmospherics Tank - Mix"; + dir = 8 + }, +/turf/open/floor/engine/vacuum, +/area/engineering/atmos) +"gdT" = ( +/obj/structure/showcase/mecha/marauder, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/carpet, +/area/command/corporate_showroom) +"geK" = ( +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/commons/locker) +"geY" = ( +/obj/machinery/vending/cigarette, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private) +"geZ" = ( +/obj/machinery/status_display/supply, +/turf/closed/wall, +/area/cargo/storage) +"gfr" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/commons/storage/primary) +"gfR" = ( +/obj/item/reagent_containers/spray/plantbgone, +/obj/item/reagent_containers/spray/pestspray{ + pixel_x = 3; + pixel_y = 4 + }, +/obj/item/reagent_containers/glass/bottle/nutrient/ez, +/obj/item/reagent_containers/glass/bottle/nutrient/rh{ + pixel_x = 2; + pixel_y = 1 + }, +/obj/structure/table, +/obj/structure/extinguisher_cabinet{ + pixel_x = -27 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/service/hydroponics/garden) +"ggj" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/locker) +"ggA" = ( +/obj/structure/table/wood, +/obj/item/lipstick{ + pixel_y = 5 + }, +/obj/machinery/camera{ + c_tag = "Theatre - Stage"; + dir = 8 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/item/instrument/guitar, +/obj/structure/sign/poster/random{ + pixel_x = 32 + }, +/turf/open/floor/wood, +/area/service/theater) +"ggU" = ( +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 8; + name = "Air to Distro" + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"ghb" = ( +/turf/open/floor/plating, +/area/engineering/main) +"ghl" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"ghn" = ( +/obj/machinery/computer/card{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/wood, +/area/command/heads_quarters/hop) +"ghG" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/commons/fitness/recreation) +"ghM" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/port) +"ghS" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/components/trinary/filter/flipped/critical, +/turf/open/floor/engine, +/area/engineering/main) +"gin" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/open/floor/wood, +/area/service/bar) +"giv" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/holopad, +/turf/open/floor/plasteel, +/area/commons/dorms) +"giS" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/wood, +/area/service/bar) +"gjo" = ( +/obj/machinery/door/airlock{ + name = "Unisex Showers" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/freezer, +/area/commons/toilet/restrooms) +"gjp" = ( +/obj/machinery/power/apc{ + areastring = "/area/maintenance/port/aft"; + dir = 1; + name = "Port Quarter Maintenance APC"; + pixel_y = 23 + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"gjr" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"gjy" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/storage/satellite) +"gjz" = ( +/obj/structure/closet/crate, +/obj/structure/disposalpipe/segment, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 3; + name = "3maintenance loot spawner" + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/cargo/storage) +"gkj" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"glc" = ( +/turf/closed/wall, +/area/service/library) +"gli" = ( +/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 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/command/storage/eva) +"glp" = ( +/obj/structure/closet/secure_closet/miner, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/miningoffice) +"glJ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"glN" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + 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 = 8 + }, +/turf/open/floor/plasteel, +/area/security/office) +"gmc" = ( +/turf/closed/wall, +/area/command/heads_quarters/cmo) +"gmh" = ( +/obj/structure/table/wood, +/turf/open/floor/plasteel/dark, +/area/service/chapel/main) +"gmo" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel/chapel{ + dir = 8 + }, +/area/service/chapel/main) +"gmD" = ( +/obj/machinery/portable_atmospherics/canister/nitrogen, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"gnZ" = ( +/obj/item/radio/intercom{ + pixel_y = -30 + }, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"goF" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/obj/structure/extinguisher_cabinet{ + pixel_x = 27 + }, +/turf/open/floor/carpet, +/area/command/heads_quarters/captain/private) +"goY" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/grass, +/area/service/hydroponics/garden) +"gpb" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/vending/wardrobe/engi_wardrobe, +/turf/open/floor/plasteel, +/area/engineering/main) +"gpH" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/chair/stool{ + pixel_y = 8 + }, +/turf/open/floor/wood, +/area/service/bar) +"gqh" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/machinery/camera/autoname{ + dir = 1 + }, +/obj/structure/table/wood, +/turf/open/floor/wood, +/area/service/library) +"gqA" = ( +/obj/machinery/button/door{ + id = "abandoned_kitchen"; + name = "Shutters Control"; + pixel_x = 26; + pixel_y = 6; + req_one_access_txt = null + }, +/obj/effect/decal/cleanable/blood/old, +/obj/item/clothing/suit/apron/chef, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"gqN" = ( +/obj/structure/chair/office/dark{ + dir = 8 + }, +/obj/effect/landmark/start/shaft_miner, +/turf/open/floor/plasteel, +/area/cargo/miningoffice) +"gra" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"grC" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solars/port/fore) +"grX" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 6 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"gsp" = ( +/turf/open/floor/carpet, +/area/commons/dorms) +"gst" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"gsy" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"gsT" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/computer/card, +/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/command/bridge) +"gtm" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/machinery/door/poddoor/preopen{ + id = "hosspace"; + name = "space shutters" + }, +/turf/open/floor/plating, +/area/command/heads_quarters/hos) +"gtn" = ( +/obj/effect/turf_decal/tile/neutral{ + 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/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/structure/sign/warning/nosmoking{ + pixel_x = 28 + }, +/turf/open/floor/plasteel/dark, +/area/medical/genetics) +"gtO" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 2 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"gua" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"gub" = ( +/obj/machinery/door/window/eastleft{ + base_state = "right"; + icon_state = "right"; + name = "Deliveries"; + req_access_txt = "50" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/cargo/sorting) +"guM" = ( +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/obj/structure/showcase/cyborg/old{ + dir = 8; + pixel_x = 9; + pixel_y = 2 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/aisat/exterior) +"guR" = ( +/obj/structure/window/reinforced, +/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/atmospherics/components/trinary/mixer/airmix{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"guZ" = ( +/obj/machinery/holopad/secure, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai_upload) +"gvJ" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/aisat/exterior) +"gvV" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow, +/turf/open/floor/plating, +/area/engineering/break_room) +"gvY" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/techstorage/engineering, +/turf/open/floor/plasteel/dark, +/area/engineering/storage/tech) +"gwR" = ( +/obj/machinery/camera{ + c_tag = "Teleporter Room"; + dir = 8 + }, +/obj/structure/rack, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/item/clothing/suit/hazardvest, +/obj/item/clothing/suit/hazardvest, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command/teleporter) +"gwW" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"gwZ" = ( +/obj/structure/table/wood, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/pen, +/obj/machinery/light_switch{ + pixel_x = 28 + }, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"gxe" = ( +/obj/structure/closet/crate{ + icon_state = "crateopen" + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/commons/storage/primary) +"gxl" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 9 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/engineering/atmos) +"gxO" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + name = "Gas to Filter" + }, +/turf/open/floor/engine, +/area/engineering/supermatter) +"gxW" = ( +/obj/machinery/computer/cargo, +/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/cargo/office) +"gyh" = ( +/turf/closed/wall, +/area/cargo/warehouse) +"gyN" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 0; + name = "Mix to Engine" + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"gyP" = ( +/obj/structure/chair/office/dark{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/office) +"gyR" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"gzm" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + name = "Security Office"; + req_one_access_txt = "1;4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/security/office) +"gzG" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/machinery/door/poddoor/preopen{ + id = "ceprivacy"; + name = "privacy shutter" + }, +/turf/open/floor/plating, +/area/command/heads_quarters/ce) +"gzN" = ( +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel, +/area/commons/locker) +"gzP" = ( +/obj/structure/closet/crate/coffin, +/obj/machinery/door/window/eastleft{ + name = "Coffin Storage"; + req_access_txt = "22" + }, +/turf/open/floor/plating, +/area/service/chapel/main) +"gzX" = ( +/obj/effect/spawner/structure/window, +/obj/machinery/door/poddoor/preopen{ + id = "kitchenwindow"; + name = "kitchen shutters" + }, +/turf/open/floor/plating, +/area/service/kitchen) +"gAe" = ( +/obj/structure/closet/secure_closet/CMO, +/obj/item/storage/secure/safe{ + pixel_x = 5; + pixel_y = 26 + }, +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_x = 30 + }, +/obj/item/screwdriver{ + pixel_y = 6 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/cafeteria, +/area/command/heads_quarters/cmo) +"gAR" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/closed/wall, +/area/commons/dorms) +"gAU" = ( +/obj/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/commons/fitness/recreation) +"gAV" = ( +/obj/machinery/vending/coffee, +/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/commons/fitness/recreation) +"gBn" = ( +/obj/machinery/door/airlock/external{ + req_access_txt = "24" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/turf/open/floor/plating, +/area/engineering/atmos) +"gBI" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/carpet, +/area/command/heads_quarters/hop) +"gCt" = ( +/obj/item/stack/packageWrap, +/obj/item/stack/packageWrap, +/obj/item/stack/packageWrap, +/obj/item/stack/packageWrap, +/obj/item/stack/packageWrap, +/obj/item/hand_labeler, +/obj/structure/table/glass, +/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, +/area/service/hydroponics) +"gCx" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp/green{ + pixel_x = 1; + pixel_y = 5 + }, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_x = -27 + }, +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_y = 32 + }, +/turf/open/floor/carpet, +/area/command/heads_quarters/captain/private) +"gCM" = ( +/obj/structure/table/wood, +/obj/item/paper_bin{ + pixel_x = 1; + pixel_y = 9 + }, +/turf/open/floor/wood, +/area/commons/vacant_room/office) +"gCY" = ( +/obj/effect/landmark/start/head_of_personnel, +/obj/structure/chair/office/dark{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/open/floor/wood, +/area/command/heads_quarters/hop) +"gEk" = ( +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"gED" = ( +/obj/structure/closet/crate/coffin, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plating, +/area/service/chapel/main) +"gEL" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/rd) +"gEN" = ( +/obj/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/dark, +/area/commons/fitness/recreation) +"gFa" = ( +/obj/structure/tank_dispenser/oxygen{ + pixel_x = -1; + pixel_y = 2 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/command/storage/eva) +"gFi" = ( +/obj/effect/spawner/structure/window, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/poddoor/preopen{ + id = "kitchenwindow"; + name = "kitchen shutters" + }, +/turf/open/floor/plating, +/area/service/kitchen) +"gFm" = ( +/turf/open/floor/engine/plasma, +/area/engineering/atmos) +"gFo" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "council blast"; + name = "Council Blast Doors" + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/command/bridge) +"gFw" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/window/reinforced, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/structure/showcase/machinery/implanter{ + layer = 2.7; + pixel_y = 4 + }, +/turf/open/floor/carpet, +/area/command/corporate_showroom) +"gFW" = ( +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/power/solar{ + id = "aftstarboard"; + name = "Aft-Starboard Solar Array" + }, +/turf/open/floor/plasteel/airless/solarpanel, +/area/solars/starboard/aft) +"gGb" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/commons/dorms) +"gGc" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"gGH" = ( +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"gGT" = ( +/obj/effect/landmark/start/scientist, +/obj/structure/chair/office/light{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"gHh" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/airlock/maintenance, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"gHk" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/space, +/area/solars/starboard/aft) +"gHw" = ( +/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 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/dark, +/area/commons/fitness/recreation) +"gHz" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/engine/air, +/area/engineering/atmos) +"gJm" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "council blast"; + name = "Council Blast Doors" + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/command/bridge) +"gJK" = ( +/turf/closed/wall, +/area/ai_monitored/aisat/exterior) +"gKh" = ( +/obj/item/radio/intercom{ + broadcasting = 1; + frequency = 1480; + name = "Confessional Intercom"; + pixel_x = -25 + }, +/obj/structure/chair, +/turf/open/floor/plasteel/dark, +/area/service/chapel/office) +"gLc" = ( +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/meter, +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/manifold/cyan/visible, +/turf/open/floor/engine, +/area/engineering/main) +"gLk" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + areastring = "/area/maintenance/fore"; + dir = 1; + name = "Fore Maintenance APC"; + pixel_y = 23 + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"gLC" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/plasteel, +/area/science/misc_lab) +"gLD" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/commons/locker) +"gLI" = ( +/obj/structure/table/reinforced, +/obj/item/book/manual/wiki/security_space_law{ + pixel_x = -3; + pixel_y = 5 + }, +/obj/item/taperecorder{ + pixel_x = -4 + }, +/turf/open/floor/plasteel, +/area/security/office) +"gLN" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"gLV" = ( +/obj/machinery/vending/boozeomat, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private) +"gMz" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/service/hydroponics) +"gMC" = ( +/obj/structure/table/wood, +/obj/item/folder/blue, +/obj/machinery/door/window{ + base_state = "right"; + icon_state = "right"; + name = "Captain's Desk"; + req_access_txt = "20" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/obj/item/stamp/captain, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private) +"gMW" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plasteel/grimy, +/area/service/chapel/office) +"gNe" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/maintenance/aft) +"gNH" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"gON" = ( +/obj/structure/chair, +/obj/machinery/button/electrochromatic{ + id = "!interrogation_room"; + pixel_x = -25 + }, +/turf/open/floor/plasteel/grimy, +/area/security/office) +"gPe" = ( +/obj/machinery/light_switch{ + pixel_y = -25 + }, +/obj/structure/table/wood, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/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/carpet, +/area/command/heads_quarters/captain/private) +"gPs" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/camera{ + c_tag = "Engineering Supermatter Aft"; + dir = 1; + network = list("ss13","engine") + }, +/turf/open/floor/engine, +/area/engineering/main) +"gPG" = ( +/obj/machinery/disposal/bin, +/obj/machinery/light_switch{ + pixel_y = -26 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Fitness Room - Aft"; + 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/commons/fitness/recreation) +"gPN" = ( +/obj/structure/table, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/item/storage/firstaid/brute, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"gPZ" = ( +/obj/structure/closet/crate/internals, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 3; + name = "3maintenance loot spawner" + }, +/turf/open/floor/plasteel, +/area/cargo/warehouse) +"gQq" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/item/reagent_containers/glass/bucket, +/obj/item/mop, +/obj/structure/disposalpipe/segment, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 24 + }, +/turf/open/floor/plasteel, +/area/service/janitor) +"gQu" = ( +/obj/structure/pool/Rboard, +/turf/open/floor/plasteel, +/area/commons/fitness/pool) +"gQT" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/commons/dorms) +"gRu" = ( +/obj/structure/table/glass, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/item/tank/internals/emergency_oxygen{ + pixel_x = -8 + }, +/obj/item/clothing/mask/breath{ + pixel_x = 4 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -26 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/break_room) +"gRD" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/service/theater) +"gRE" = ( +/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/command/bridge) +"gRJ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-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, +/area/security/office) +"gRS" = ( +/obj/structure/table/reinforced, +/obj/item/integrated_electronics/analyzer, +/obj/item/integrated_circuit_printer, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"gSK" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics/garden) +"gSQ" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/storage/primary) +"gSX" = ( +/obj/structure/closet/secure_closet/personal/cabinet, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/item/clothing/under/suit/tan, +/turf/open/floor/carpet, +/area/commons/dorms) +"gTs" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"gTN" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/commons/locker) +"gUf" = ( +/obj/machinery/door/firedoor/border_only/closed{ + dir = 8; + name = "Animal Pen A" + }, +/turf/open/floor/grass, +/area/service/hydroponics/garden) +"gUC" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical/glass{ + name = "Hydroponics"; + req_access_txt = "35" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"gVv" = ( +/obj/structure/table, +/obj/item/crowbar, +/obj/item/assembly/prox_sensor{ + pixel_x = -8; + pixel_y = 4 + }, +/obj/item/clothing/gloves/color/fyellow, +/obj/machinery/light/small, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/storage/primary) +"gWb" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/command{ + name = "Head of Security's Office"; + req_access_txt = "58" + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/open/floor/carpet, +/area/command/heads_quarters/hos) +"gWH" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/wood, +/area/service/bar) +"gXt" = ( +/obj/machinery/cryopod, +/obj/machinery/camera{ + c_tag = "Fitness Room - Fore" + }, +/turf/open/floor/plasteel/dark, +/area/commons/cryopod) +"gXV" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/office) +"gXY" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/closed/wall/r_wall, +/area/maintenance/disposal/incinerator) +"gZf" = ( +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/qm) +"gZo" = ( +/obj/machinery/camera{ + c_tag = "Gravity Generator Foyer" + }, +/obj/structure/closet/radiation, +/obj/structure/sign/warning/radiation/rad_area{ + dir = 1; + pixel_y = 32 + }, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/gravity_generator) +"gZF" = ( +/obj/structure/chair, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"gZR" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/machinery/door/poddoor/preopen{ + id = "hop"; + name = "privacy shutters" + }, +/turf/open/floor/plating, +/area/command/heads_quarters/hop) +"hab" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + name = "External Gas to Loop" + }, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"hbh" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall/r_wall, +/area/engineering/break_room) +"hbq" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plasteel/freezer, +/area/commons/toilet/restrooms) +"hci" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solars/port/aft) +"hcC" = ( +/turf/closed/wall, +/area/medical/treatment_center) +"hdk" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + name = "Mix Bypass" + }, +/turf/open/floor/engine, +/area/engineering/main) +"hdJ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/obj/machinery/suit_storage_unit/atmos, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"hdR" = ( +/obj/structure/chair/stool{ + pixel_y = 8 + }, +/turf/open/floor/plasteel, +/area/commons/dorms) +"hdT" = ( +/obj/machinery/door/morgue{ + name = "Relic Closet"; + req_access_txt = "22" + }, +/turf/open/floor/plasteel/cult, +/area/service/chapel/office) +"hem" = ( +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_x = 29 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/open/floor/grass, +/area/service/hydroponics/garden) +"hen" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/commons/dorms) +"heu" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/bot{ + dir = 1 + }, +/turf/open/floor/plasteel{ + dir = 1 + }, +/area/engineering/main) +"hfd" = ( +/obj/machinery/computer/atmos_alert, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"hfg" = ( +/obj/machinery/atmospherics/components/binary/pump{ + name = "Air to Ports" + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"hfv" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/obj/machinery/atmospherics/pipe/simple/purple/visible{ + dir = 4 + }, +/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/engineering/atmos) +"hfE" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"hfU" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/engineering/main) +"hgy" = ( +/obj/machinery/computer/robotics{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/command/heads_quarters/rd) +"hgE" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/command/corporate_showroom) +"hgV" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/wood, +/area/service/bar) +"hhA" = ( +/turf/open/floor/plasteel, +/area/cargo/warehouse) +"hhN" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "QMLoad" + }, +/turf/open/floor/plating, +/area/cargo/storage) +"hib" = ( +/obj/structure/table, +/obj/item/electronics/apc, +/obj/item/electronics/airlock, +/turf/open/floor/plasteel/dark, +/area/engineering/storage/tech) +"hij" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + name = "Gas to Mix" + }, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/engine, +/area/engineering/main) +"hiR" = ( +/obj/machinery/power/apc{ + areastring = "/area/hallway/primary/port"; + dir = 1; + name = "Port Hallway APC"; + pixel_x = -1; + pixel_y = 23 + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"hiZ" = ( +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/obj/machinery/vending/cigarette, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"hjA" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/office) +"hkr" = ( +/obj/structure/cable, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solars/starboard/fore) +"hks" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/service/library) +"hkz" = ( +/obj/structure/rack, +/obj/item/clothing/under/color/blue, +/obj/item/clothing/ears/earmuffs, +/obj/item/clothing/neck/tie/blue, +/obj/item/clothing/head/soft/blue, +/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/commons/fitness/recreation) +"hla" = ( +/turf/open/floor/plasteel/freezer, +/area/commons/toilet/restrooms) +"hlh" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/construction/storage_wing) +"hlQ" = ( +/obj/item/folder/white{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/table/glass, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"hmh" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security{ + name = "Interrogation Monitoring"; + req_one_access_txt = "1;4" + }, +/turf/open/floor/plasteel/grimy, +/area/security/office) +"hmw" = ( +/obj/structure/window/reinforced, +/obj/structure/table, +/obj/item/stack/packageWrap, +/obj/item/stack/packageWrap, +/obj/item/stack/packageWrap, +/obj/item/stack/packageWrap, +/obj/item/hand_labeler, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command/teleporter) +"hny" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/curtain, +/turf/open/floor/plasteel/white/side, +/area/medical/surgery) +"hop" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"hoq" = ( +/obj/machinery/power/apc{ + areastring = "/area/science/robotics/lab"; + dir = 1; + name = "Robotics Lab APC"; + pixel_y = 23 + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = -2; + 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/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"hpe" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/cargo/storage) +"hph" = ( +/obj/structure/chair/office/light{ + dir = 8 + }, +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Chief Medical Officer's Desk"; + departmentType = 5; + name = "Chief Medical Officer RC"; + pixel_y = -32 + }, +/obj/effect/landmark/start/chief_medical_officer, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/cafeteria, +/area/command/heads_quarters/cmo) +"hpl" = ( +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"hpr" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 10 + }, +/obj/machinery/portable_atmospherics/canister, +/turf/open/floor/plasteel/white/corner, +/area/engineering/atmos) +"hpt" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plasteel/dark, +/area/service/chapel/office) +"hpw" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"hpC" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"hpG" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics/garden) +"hqi" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -24 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/treatment_center) +"hqy" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"hqK" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/service/bar) +"hrn" = ( +/obj/structure/table/reinforced, +/obj/item/folder/red{ + pixel_x = 3 + }, +/obj/item/folder/blue{ + pixel_x = -2; + pixel_y = 3 + }, +/turf/open/floor/plasteel, +/area/security/office) +"hrB" = ( +/obj/structure/table/wood, +/obj/item/stack/packageWrap, +/obj/item/stack/packageWrap, +/obj/item/gun/ballistic/revolver/doublebarrel, +/obj/machinery/camera{ + c_tag = "Bar - Backroom" + }, +/obj/structure/sink/kitchen{ + pixel_y = 28 + }, +/turf/open/floor/wood, +/area/service/bar) +"hsi" = ( +/obj/structure/table/wood, +/obj/machinery/computer/libraryconsole, +/turf/open/floor/wood, +/area/service/library) +"hsq" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/machinery/portable_atmospherics/pump, +/obj/effect/turf_decal/delivery, +/obj/structure/sign/poster/official/random{ + pixel_y = 32 + }, +/turf/open/floor/plasteel, +/area/commons/locker) +"hsv" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/airalarm{ + pixel_y = 26 + }, +/turf/open/floor/plasteel/freezer, +/area/commons/toilet/restrooms) +"hsG" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"htx" = ( +/obj/structure/closet/secure_closet/miner, +/obj/structure/extinguisher_cabinet{ + pixel_x = 27 + }, +/obj/item/clothing/suit/hooded/wintercoat/miner, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/miningoffice) +"htH" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 28 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/chair/office/light, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/engineering/gravity_generator) +"htO" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/commons/toilet/auxiliary) +"htZ" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"huJ" = ( +/obj/structure/table/wood, +/obj/structure/window/reinforced, +/obj/machinery/light_switch{ + pixel_x = -28 + }, +/obj/item/storage/secure/briefcase{ + pixel_x = -2; + pixel_y = 4 + }, +/obj/item/storage/lockbox/medal, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private) +"huP" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/service/bar) +"huS" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/service/chapel/main) +"hvd" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/closed/wall/r_wall, +/area/engineering/main) +"hvn" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/chair/stool{ + pixel_y = 8 + }, +/turf/open/floor/wood, +/area/service/bar) +"hvy" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/sign/poster/random{ + pixel_y = 32 + }, +/turf/open/floor/carpet, +/area/service/theater) +"hvL" = ( +/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/commons/dorms) +"hwv" = ( +/obj/machinery/requests_console{ + department = "Engineering"; + departmentType = 4; + name = "Engineering RC" + }, +/turf/closed/wall, +/area/engineering/main) +"hwM" = ( +/obj/item/candle, +/obj/machinery/light_switch{ + pixel_y = 25 + }, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/structure/table/wood, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/service/chapel/main) +"hxi" = ( +/obj/machinery/power/apc/highcap/five_k{ + areastring = "/area/security/office"; + dir = 4; + name = "Security Office APC"; + pixel_x = 24 + }, +/obj/structure/cable/yellow, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/office) +"hxo" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/wood, +/area/command/corporate_showroom) +"hyb" = ( +/obj/machinery/computer/communications, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"hye" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/aisat/exterior) +"hyv" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/airlock{ + name = "Dormitories" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/dorms) +"hyy" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall, +/area/commons/toilet/auxiliary) +"hyP" = ( +/obj/machinery/door/airlock/external{ + name = "Escape Pod Two" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/plating, +/area/security/prison) +"hyV" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/landmark/start/security_officer, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/office) +"hyZ" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/commons/dorms) +"hzd" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"hzs" = ( +/obj/structure/chair/comfy/black{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/command/bridge) +"hzH" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/structure/cable/yellow{ + 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/engineering/storage/tech) +"hzM" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/service/chapel/office) +"hzS" = ( +/obj/machinery/door/poddoor{ + id = "Secure Storage"; + name = "Secure Storage" + }, +/turf/open/floor/plating, +/area/engineering/main) +"hAr" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/obj/machinery/door/window{ + base_state = "right"; + icon_state = "right"; + name = "MiniSat Walkway Access" + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/aisat/exterior) +"hAI" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"hAL" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/service/bar) +"hAM" = ( +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/chapel, +/area/service/chapel/main) +"hBc" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/obj/machinery/button/door{ + id = "bridge blast"; + name = "Bridge Access Blast Door Control"; + pixel_x = 24; + pixel_y = -24; + req_access_txt = "19" + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"hBG" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + areastring = "/area/engineering/gravity_generator"; + dir = 8; + name = "Gravity Generator APC"; + pixel_x = -25; + pixel_y = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/engineering/gravity_generator) +"hBP" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/wood, +/area/commons/vacant_room/office) +"hCt" = ( +/obj/machinery/gibber, +/turf/open/floor/plasteel/showroomfloor, +/area/service/kitchen) +"hCA" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/mob/living/carbon/monkey/punpun, +/turf/open/floor/plasteel, +/area/service/bar) +"hCH" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/camera{ + c_tag = "Kitchen - Coldroom"; + dir = 1 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/service/kitchen) +"hCU" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/cargo/office) +"hCX" = ( +/obj/structure/closet/crate/coffin, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/plating, +/area/service/chapel/main) +"hDb" = ( +/obj/effect/landmark/start/quartermaster, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/chair/office/dark{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/qm) +"hEm" = ( +/obj/item/taperecorder, +/obj/item/cartridge/lawyer, +/obj/structure/table/wood, +/obj/machinery/button/door{ + id = "lawyer_shutters"; + name = "law office shutters control"; + pixel_y = -26; + req_access_txt = "38" + }, +/turf/open/floor/wood, +/area/service/lawoffice) +"hEr" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solars/starboard/fore) +"hEC" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/command/gateway) +"hEZ" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "Corporate Showroom"; + req_access_txt = "19" + }, +/turf/open/floor/wood, +/area/command/corporate_showroom) +"hFa" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 10 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/engineering/atmos) +"hFm" = ( +/obj/structure/rack, +/obj/item/storage/toolbox/electrical{ + pixel_x = 1; + pixel_y = -1 + }, +/obj/item/multitool, +/obj/item/clothing/glasses/meson, +/obj/machinery/light_switch{ + pixel_y = -28 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/dark, +/area/engineering/storage/tech) +"hFt" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/command/heads_quarters/captain/private) +"hFD" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/showcase/machinery/tv{ + dir = 1; + pixel_x = 2; + pixel_y = 3 + }, +/obj/structure/table/wood, +/turf/open/floor/carpet, +/area/command/corporate_showroom) +"hGi" = ( +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_x = -30 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/engineering/atmos) +"hGo" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/table, +/obj/item/paper/guides/jobs/engi/gravity_gen, +/obj/item/pen/blue, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/engineering/gravity_generator) +"hGX" = ( +/turf/open/floor/engine/co2, +/area/engineering/atmos) +"hHh" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{ + dir = 8 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/engineering/atmos) +"hIg" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/machinery/camera{ + c_tag = "Mining Dock"; + dir = 8 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/cargo/miningoffice) +"hIt" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/poddoor/shutters{ + id = "abandoned_kitchen" + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"hIO" = ( +/obj/effect/spawner/structure/window, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/commons/storage/art) +"hJe" = ( +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"hJA" = ( +/obj/structure/closet/lasertag/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/commons/fitness/recreation) +"hJC" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/wood, +/area/service/bar) +"hKd" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "MiniSat Exterior - Port Fore"; + dir = 8; + network = list("minisat") + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/aisat/exterior) +"hKm" = ( +/obj/item/folder/white{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/structure/table/wood, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/carpet, +/area/commons/vacant_room/office) +"hKA" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/grimy, +/area/service/chapel/office) +"hKK" = ( +/obj/machinery/door/airlock{ + id_tag = "Cabin5"; + name = "Cabin 3" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/wood, +/area/commons/dorms) +"hKU" = ( +/obj/item/book/manual/wiki/engineering_hacking{ + pixel_x = 4; + pixel_y = 5 + }, +/obj/item/book/manual/wiki/engineering_construction{ + pixel_y = 3 + }, +/obj/item/book/manual/wiki/engineering_guide{ + pixel_x = -4 + }, +/obj/structure/table/glass, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"hKV" = ( +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solars/port/aft) +"hKZ" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/dorms) +"hLu" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/carpet, +/area/commons/dorms) +"hLG" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/wood, +/area/service/bar) +"hLH" = ( +/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/commons/fitness/recreation) +"hMn" = ( +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/pen, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/engineering/atmos) +"hMI" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/urinal{ + pixel_y = 29 + }, +/turf/open/floor/plasteel/freezer, +/area/commons/toilet/restrooms) +"hMN" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/holopad/secure, +/turf/open/floor/plasteel, +/area/cargo/qm) +"hMQ" = ( +/turf/closed/wall/r_wall, +/area/command/bridge) +"hNx" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/item/stock_parts/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/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/command/teleporter) +"hNB" = ( +/obj/item/paper_bin{ + pixel_x = -2; + pixel_y = 4 + }, +/obj/item/pen, +/obj/structure/window/reinforced, +/obj/structure/table/wood, +/turf/open/floor/wood, +/area/command/heads_quarters/hop) +"hNP" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/open/floor/wood, +/area/service/bar) +"hNW" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"hOA" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/commons/dorms) +"hOX" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/cargo/storage) +"hPo" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 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 + }, +/obj/machinery/atmospherics/pipe/manifold/yellow/visible{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"hPG" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/plasteel/grimy, +/area/service/chapel/office) +"hPI" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "Head of Personnel"; + req_access_txt = "57" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/hop) +"hQl" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"hQA" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 6 + }, +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/obj/item/clothing/head/cone{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/clothing/head/cone{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/clothing/head/cone{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/clothing/head/cone{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/clothing/head/cone{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/engineering/atmos) +"hQE" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/nitrogen_input{ + dir = 1 + }, +/turf/open/floor/engine/n2, +/area/engineering/atmos) +"hSe" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/cargo/storage) +"hSj" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/office) +"hSp" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/techstorage/rnd, +/turf/open/floor/plasteel/dark, +/area/engineering/storage/tech) +"hSw" = ( +/obj/structure/closet/secure_closet/personal, +/obj/item/clothing/under/misc/assistantformal, +/obj/item/clothing/suit/hooded/wintercoat, +/obj/item/clothing/shoes/winterboots, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/commons/locker) +"hSK" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + name = "bridge blast door" + }, +/obj/structure/cable/yellow, +/turf/open/floor/plating, +/area/command/bridge) +"hTd" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/command/heads_quarters/captain/private) +"hTs" = ( +/obj/structure/table, +/obj/item/cultivator, +/obj/item/hatchet, +/obj/item/crowbar, +/obj/machinery/light{ + dir = 1 + }, +/obj/item/plant_analyzer, +/obj/item/reagent_containers/glass/bucket, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/service/hydroponics/garden) +"hTE" = ( +/obj/machinery/computer/atmos_control/tank/nitrous_tank{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 5 + }, +/turf/open/floor/plasteel/white/corner, +/area/engineering/atmos) +"hUx" = ( +/obj/structure/janitorialcart, +/turf/open/floor/plasteel, +/area/service/janitor) +"hUO" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/command/heads_quarters/hop) +"hVj" = ( +/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 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"hVs" = ( +/turf/open/floor/plasteel, +/area/commons/toilet/auxiliary) +"hVw" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/event_spawn, +/turf/open/floor/wood, +/area/command/corporate_showroom) +"hVx" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"hVY" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/carpet, +/area/command/heads_quarters/captain/private) +"hWA" = ( +/obj/structure/table/glass, +/obj/item/wrench, +/obj/item/crowbar, +/obj/item/flashlight{ + pixel_x = 1; + pixel_y = 5 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/break_room) +"hXr" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 27 + }, +/obj/machinery/camera{ + c_tag = "Security - Office - Starboard"; + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/office) +"hXs" = ( +/obj/effect/turf_decal/bot{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/nitrogen, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"hXu" = ( +/obj/structure/closet/lasertag/blue, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/commons/fitness/recreation) +"hXC" = ( +/obj/structure/closet/l3closet/janitor, +/obj/machinery/airalarm{ + pixel_y = 28 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/service/janitor) +"hXP" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"hYa" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/mining/glass{ + name = "Quartermaster"; + req_access_txt = "41" + }, +/turf/open/floor/plasteel, +/area/cargo/qm) +"hYk" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/engineering/glass{ + name = "Supermatter Engine"; + req_access_txt = "10" + }, +/turf/open/floor/plating, +/area/engineering/main) +"hYq" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/closed/wall/r_wall, +/area/ai_monitored/command/nuke_storage) +"hYr" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/dark, +/area/commons/cryopod) +"hYA" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/security/glass{ + name = "Security Office"; + req_one_access_txt = "1;4" + }, +/turf/open/floor/plasteel, +/area/security/office) +"hYY" = ( +/obj/structure/chair/office/dark{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"hZe" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/atmos{ + name = "Atmospherics"; + req_access_txt = "24" + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"hZk" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/turf/closed/wall/r_wall, +/area/engineering/atmos) +"hZr" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/plasteel/white, +/area/medical/treatment_center) +"hZy" = ( +/obj/structure/table, +/obj/item/stack/sheet/glass/fifty, +/obj/item/stack/rods/fifty, +/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/commons/storage/tools) +"hZC" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"hZI" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/carpet, +/area/service/library) +"hZK" = ( +/obj/structure/rack, +/obj/item/cane, +/obj/item/reagent_containers/food/snacks/grown/mushroom/glowshroom, +/turf/open/floor/plating, +/area/command/heads_quarters/captain/private) +"hZR" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "packageExternal" + }, +/obj/structure/plasticflaps/opaque, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plating, +/area/cargo/sorting) +"hZY" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/chapel{ + dir = 1 + }, +/area/service/chapel/main) +"iaA" = ( +/turf/open/floor/wood, +/area/service/bar) +"iaE" = ( +/obj/machinery/hydroponics/constructable, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"ibn" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/extinguisher_cabinet{ + pixel_x = 27 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"ibJ" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/dark/visible, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"ibO" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/landmark/start/security_officer, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/office) +"icr" = ( +/turf/closed/wall, +/area/cargo/sorting) +"icE" = ( +/turf/closed/wall, +/area/security/office) +"idm" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"idx" = ( +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/structure/urinal{ + pixel_y = 29 + }, +/turf/open/floor/plasteel/freezer, +/area/commons/toilet/restrooms) +"idz" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"ieA" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/cargo/storage) +"ieJ" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "atmos"; + name = "Atmospherics Blast Door" + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/turf/open/floor/plating, +/area/engineering/atmos) +"ifs" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"ifM" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"ifU" = ( +/obj/structure/table/wood, +/obj/item/storage/crayons, +/turf/open/floor/wood, +/area/service/library) +"igf" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/item/radio/intercom{ + pixel_x = -29 + }, +/turf/open/floor/wood, +/area/commons/vacant_room/office) +"igL" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/chair/office/dark{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"igY" = ( +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/commons/storage/primary) +"ihw" = ( +/turf/closed/wall/r_wall, +/area/ai_monitored/command/nuke_storage) +"ihN" = ( +/obj/machinery/power/tracker, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/plating/airless, +/area/solars/starboard/aft) +"iiu" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/spawner/structure/window/plasma/reinforced, +/turf/open/floor/plating, +/area/engineering/main) +"iix" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"iiE" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 24 + }, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/structure/sign/poster/contraband/random{ + pixel_y = -32 + }, +/turf/open/floor/wood, +/area/service/theater) +"iiG" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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 + }, +/turf/open/floor/plasteel, +/area/cargo/warehouse) +"iiK" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/cargo/qm) +"iiP" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/toxin_output{ + dir = 8 + }, +/turf/open/floor/engine/plasma, +/area/engineering/atmos) +"ijm" = ( +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/service/kitchen) +"ijr" = ( +/turf/closed/wall, +/area/ai_monitored/command/storage/eva) +"ijE" = ( +/obj/structure/closet/crate, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 3; + name = "3maintenance loot spawner" + }, +/turf/open/floor/plasteel, +/area/cargo/warehouse) +"ijI" = ( +/obj/machinery/holopad, +/obj/structure/extinguisher_cabinet{ + pixel_x = -27 + }, +/turf/open/floor/wood, +/area/service/library) +"ijW" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/command/heads_quarters/ce) +"ikm" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/office) +"ikq" = ( +/obj/machinery/door/window/northleft{ + name = "Inner Pipe Access"; + req_access_txt = "24" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"iku" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/turf/open/floor/engine, +/area/engineering/main) +"ikA" = ( +/obj/structure/closet/secure_closet/personal/cabinet, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/item/clothing/under/suit/navy, +/turf/open/floor/carpet, +/area/commons/dorms) +"ilE" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/nitrogen_output{ + dir = 1 + }, +/turf/open/floor/engine/n2, +/area/engineering/atmos) +"ilJ" = ( +/turf/open/floor/plating/airless, +/area/engineering/atmos) +"imk" = ( +/obj/machinery/computer/card/minor/hos{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/office) +"imw" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/service/kitchen) +"inc" = ( +/obj/machinery/rnd/production/techfab/department/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/office) +"inY" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"iod" = ( +/obj/machinery/door/airlock/hatch{ + name = "MiniSat Space Access Airlock"; + req_one_access_txt = "32;19" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/break_room) +"ioo" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solars/starboard/fore) +"ioI" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/research/glass{ + name = "Circuitry Lab"; + req_access_txt = "47" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/science/circuit) +"iph" = ( +/obj/item/stack/rods{ + amount = 25 + }, +/turf/open/floor/engine/vacuum, +/area/engineering/atmos) +"ipj" = ( +/obj/structure/closet/wardrobe/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/commons/locker) +"ipm" = ( +/obj/structure/sign/map/right{ + desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; + icon_state = "map-right-MS"; + pixel_y = 32 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/closet/secure_closet/atmospherics, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/engineering/atmos) +"ipw" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/engine, +/area/engineering/main) +"ipG" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/carbon_output{ + dir = 8 + }, +/turf/open/floor/engine/co2, +/area/engineering/atmos) +"iqv" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock{ + name = "Hydroponics Backroom"; + req_access_txt = "35" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/bot, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"iqT" = ( +/obj/machinery/air_sensor/atmos/air_tank, +/turf/open/floor/engine/air, +/area/engineering/atmos) +"iqU" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/chair/stool, +/turf/open/floor/plasteel/chapel{ + dir = 8 + }, +/area/service/chapel/main) +"iqV" = ( +/obj/structure/table/wood/poker, +/obj/effect/spawner/lootdrop{ + loot = list(/obj/item/gun/ballistic/revolver/russian = 5, /obj/item/storage/box/syndie_kit/throwing_weapons, /obj/item/toy/cards/deck/syndicate = 2); + name = "gambling valuables spawner" + }, +/turf/open/floor/wood, +/area/service/bar) +"irx" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/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/cafeteria, +/area/command/heads_quarters/cmo) +"irz" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"irH" = ( +/obj/item/folder/blue, +/obj/structure/table/wood, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/carpet, +/area/commons/vacant_room/office) +"irY" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/open/floor/carpet, +/area/command/heads_quarters/hop) +"itH" = ( +/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/cafeteria, +/area/engineering/atmos) +"itL" = ( +/obj/effect/landmark/start/botanist, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"itP" = ( +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/turf/open/floor/wood, +/area/service/library) +"iui" = ( +/obj/structure/table/wood, +/obj/item/storage/secure/briefcase{ + desc = "A large briefcase with a digital locking system, and the Nanotrasen logo emblazoned on the sides."; + name = "Nanotrasen-brand secure briefcase exhibit"; + pixel_y = 2 + }, +/turf/open/floor/carpet, +/area/command/corporate_showroom) +"iun" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/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 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/treatment_center) +"iuy" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 24 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"iuC" = ( +/obj/structure/lattice, +/turf/closed/wall/r_wall, +/area/ai_monitored/aisat/exterior) +"iuD" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/computer/security/wooden_tv, +/turf/open/floor/carpet, +/area/command/heads_quarters/captain/private) +"iuF" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/service/bar) +"iuW" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"iuZ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/cargo/sorting) +"ivz" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/light_switch{ + pixel_x = 27 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"iwd" = ( +/obj/effect/landmark/xeno_spawn, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/wood, +/area/commons/dorms) +"iwg" = ( +/obj/structure/sign/warning/pods, +/turf/closed/wall/r_wall, +/area/engineering/break_room) +"iwo" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/turf/open/floor/plating, +/area/engineering/atmos) +"iwy" = ( +/obj/structure/bookcase, +/turf/open/floor/wood, +/area/command/bridge) +"iwY" = ( +/obj/item/folder/red{ + pixel_y = 3 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/table/glass, +/obj/item/folder/red{ + pixel_y = 3 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"ixc" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel, +/area/cargo/warehouse) +"ixs" = ( +/obj/structure/filingcabinet/chestdrawer, +/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 + }, +/mob/living/simple_animal/parrot/Poly, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/ce) +"ixH" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "chapel_shutters_parlour"; + name = "chapel shutters" + }, +/turf/open/floor/plating, +/area/service/chapel/main) +"ixJ" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/yellow/visible, +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engineering/atmos) +"ixL" = ( +/turf/closed/wall, +/area/cargo/miningoffice) +"ixP" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/turf/open/floor/plating, +/area/security/office) +"iyh" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/command/teleporter) +"iyn" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/effect/turf_decal/tile/neutral{ + 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/yellow/visible, +/obj/machinery/space_heater, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"iyy" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/cargo/sorting) +"iyJ" = ( +/obj/machinery/door/morgue{ + name = "Confession Booth" + }, +/turf/open/floor/plasteel/dark, +/area/service/chapel/main) +"izh" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"izu" = ( +/obj/machinery/autolathe{ + name = "public autolathe" + }, +/obj/machinery/door/window/eastright{ + dir = 2; + name = "Research and Development Desk"; + req_one_access_txt = "7;29" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "research_shutters"; + name = "research shutters" + }, +/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/white, +/area/science/lab) +"izA" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/commons/locker) +"izJ" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private) +"izZ" = ( +/turf/open/floor/engine/n2o, +/area/engineering/atmos) +"iAD" = ( +/obj/structure/sign/warning/electricshock, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/science/xenobiology) +"iAK" = ( +/obj/structure/window/reinforced, +/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 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 6 + }, +/obj/machinery/portable_atmospherics/canister, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"iAR" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/obj/structure/cable/yellow{ + 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/engineering/storage/tech) +"iBm" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/turf/open/floor/engine, +/area/engineering/main) +"iCn" = ( +/obj/machinery/vr_sleeper, +/turf/open/floor/plasteel, +/area/security/prison) +"iDz" = ( +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/airalarm{ + pixel_y = 28 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/aisat/exterior) +"iDK" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/heater/on{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"iEi" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/freezer, +/area/commons/toilet/restrooms) +"iEy" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/locker) +"iEG" = ( +/obj/item/restraints/legcuffs/beartrap, +/obj/item/restraints/legcuffs/beartrap, +/obj/structure/table, +/obj/machinery/requests_console{ + department = "Janitorial"; + departmentType = 1; + pixel_x = -29 + }, +/obj/item/reagent_containers/spray/cleaner, +/obj/machinery/camera{ + c_tag = "Custodial Closet"; + dir = 4 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/service/janitor) +"iET" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/engineering/main) +"iFl" = ( +/obj/machinery/portable_atmospherics/canister/nitrous_oxide{ + valve_open = 1 + }, +/obj/machinery/atmospherics/miner/n2o, +/turf/open/floor/engine/n2o, +/area/engineering/atmos) +"iFm" = ( +/obj/structure/closet/radiation, +/obj/structure/sign/warning/radiation/rad_area{ + dir = 1; + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/gravity_generator) +"iFq" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/machinery/power/apc{ + areastring = "/area/construction/storage_wing"; + name = "Storage Wing APC"; + pixel_y = -27 + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/construction/storage_wing) +"iFI" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Primary Tool Storage" + }, +/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/commons/storage/primary) +"iFO" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/holopad, +/turf/open/floor/plasteel, +/area/cargo/miningoffice) +"iGh" = ( +/obj/effect/mapping_helpers/airlock/locked, +/obj/machinery/door/airlock/vault{ + req_access_txt = "53" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/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/ai_monitored/command/nuke_storage) +"iGB" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/table, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/obj/machinery/camera{ + c_tag = "Cargo Bay - Starboard"; + dir = 8 + }, +/obj/item/paper_bin{ + pixel_x = -1; + pixel_y = 6 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"iGI" = ( +/obj/machinery/light/small, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/button/door{ + id = "chapel_shutters_parlour"; + name = "chapel shutters control"; + pixel_y = -25 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/service/chapel/main) +"iGQ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"iGV" = ( +/obj/structure/table, +/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/machinery/camera{ + c_tag = "Research Director's Office"; + dir = 1; + network = list("ss13","rd") + }, +/obj/machinery/light, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/command/heads_quarters/rd) +"iHl" = ( +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/structure/filingcabinet/chestdrawer, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/cafeteria, +/area/command/heads_quarters/cmo) +"iHr" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/open/floor/wood, +/area/service/library) +"iHw" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/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/ai_monitored/command/nuke_storage) +"iIk" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"iIJ" = ( +/obj/item/instrument/violin, +/obj/structure/table/wood, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_x = 29 + }, +/obj/structure/sign/poster/random{ + pixel_y = -32 + }, +/turf/open/floor/wood, +/area/service/theater) +"iIW" = ( +/obj/machinery/atmospherics/components/binary/pump/on{ + name = "Gas to Filter" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/engine, +/area/engineering/main) +"iJb" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/turf/open/floor/plating, +/area/engineering/atmos) +"iJx" = ( +/obj/effect/turf_decal/bot{ + dir = 1 + }, +/obj/structure/closet/crate/solarpanel_small, +/turf/open/floor/plasteel{ + dir = 1 + }, +/area/engineering/main) +"iJM" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel, +/area/engineering/main) +"iKH" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"iKQ" = ( +/obj/machinery/camera{ + c_tag = "Atmospherics Tank - N2"; + dir = 8 + }, +/turf/open/floor/engine/n2, +/area/engineering/atmos) +"iKS" = ( +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/cargo/storage) +"iLe" = ( +/turf/closed/wall, +/area/engineering/break_room) +"iLj" = ( +/obj/structure/table, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"iLG" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/commons/dorms) +"iLV" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/cell_charger{ + pixel_y = 4 + }, +/obj/structure/table/glass, +/obj/item/stock_parts/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"iLX" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/aisat/exterior) +"iMF" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/obj/effect/spawner/structure/window/plasma/reinforced, +/turf/open/floor/plating, +/area/engineering/main) +"iMH" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"iMN" = ( +/obj/structure/chair/office/dark{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/wood, +/area/service/library) +"iNf" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/command/heads_quarters/captain/private) +"iNi" = ( +/obj/machinery/autolathe, +/obj/machinery/newscaster{ + pixel_x = 28 + }, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -28 + }, +/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/cargo/office) +"iNR" = ( +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/plasteel/dark, +/area/commons/cryopod) +"iOc" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"iOe" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/freezer, +/area/commons/toilet/restrooms) +"iOZ" = ( +/obj/machinery/door/window{ + dir = 1; + name = "Captain's Bedroom"; + req_access_txt = "20" + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private) +"iPj" = ( +/obj/machinery/holopad, +/turf/open/floor/plasteel, +/area/commons/locker) +"iPP" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/command/teleporter) +"iQz" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/landmark/start/security_officer, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/office) +"iRr" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/landmark/start/cargo_technician, +/turf/open/floor/plasteel, +/area/cargo/warehouse) +"iSt" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white/corner, +/area/hallway/secondary/entry) +"iSE" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = -30 + }, +/obj/structure/table, +/obj/machinery/reagentgrinder, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/service/kitchen) +"iSO" = ( +/obj/structure/closet/secure_closet/hydroponics, +/obj/structure/extinguisher_cabinet{ + pixel_x = -27 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"iTm" = ( +/obj/machinery/power/apc/highcap/ten_k{ + areastring = "/area/science/research"; + dir = 1; + name = "Research Division APC"; + pixel_y = 23 + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/obj/machinery/camera{ + c_tag = "Research Division - Airlock"; + network = list("ss13","rd") + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"iTy" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering{ + name = "Engine Room"; + req_access_txt = "10" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/bot{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/plasteel{ + dir = 1 + }, +/area/engineering/main) +"iTC" = ( +/obj/machinery/button/door{ + id = "Cabin7"; + name = "Door Bolt Control"; + normaldoorcontrol = 1; + pixel_x = -25; + specialfunctions = 4 + }, +/obj/structure/bed, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/effect/spawner/lootdrop/bedsheet, +/turf/open/floor/wood, +/area/commons/dorms) +"iUm" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/mining/glass{ + name = "Mailroom"; + req_one_access_txt = "48;50" + }, +/obj/effect/turf_decal/delivery, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/cargo/sorting) +"iUw" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance/abandoned, +/obj/structure/barricade/wooden, +/turf/open/floor/plating, +/area/commons/fitness/pool) +"iUY" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/service/bar) +"iVr" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/light_switch{ + pixel_x = 27 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/office) +"iWB" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel, +/area/service/janitor) +"iWG" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/cargo/storage) +"iXR" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"iYr" = ( +/obj/machinery/door/window{ + dir = 1; + name = "MiniSat Walkway Access" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/aisat/exterior) +"iYv" = ( +/obj/machinery/biogenerator, +/obj/machinery/light_switch{ + pixel_x = 26 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"iYz" = ( +/obj/machinery/shower{ + dir = 4 + }, +/obj/machinery/light/small, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/blood/gibs/old, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/commons/toilet/auxiliary) +"iYH" = ( +/obj/item/stack/cable_coil, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solars/starboard/fore) +"iYP" = ( +/turf/closed/wall/r_wall, +/area/engineering/break_room) +"iYX" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"iZl" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/shower{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/toilet/auxiliary) +"iZM" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/structure/sign/poster/official/cleanliness{ + pixel_x = 32 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"jaL" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/aisat/exterior) +"jaP" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel/dark, +/area/service/chapel/main) +"jbv" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/wood, +/area/commons/dorms) +"jbE" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/cargo/warehouse) +"jbF" = ( +/obj/machinery/door/window/northleft{ + dir = 8; + name = "Disposals Chute" + }, +/obj/machinery/disposal/deliveryChute{ + dir = 8; + name = "disposals chute"; + pixel_x = 5 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/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/command/teleporter) +"jbH" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/wood, +/area/service/theater) +"jbZ" = ( +/obj/machinery/light_switch{ + pixel_x = 27 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/easel, +/obj/item/canvas/twentythreeXtwentythree, +/obj/item/canvas/twentythreeXtwentythree, +/turf/open/floor/plasteel, +/area/commons/storage/art) +"jcc" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/open/floor/wood, +/area/service/lawoffice) +"jco" = ( +/obj/machinery/door/airlock/atmos/glass{ + heat_proof = 1; + name = "Auxiliary Chamber"; + req_access_txt = "24" + }, +/turf/open/floor/plating, +/area/engineering/atmos) +"jcA" = ( +/turf/open/floor/plating, +/area/engineering/break_room) +"jcF" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/carpet, +/area/command/heads_quarters/hos) +"jda" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/loading_area{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"jdJ" = ( +/obj/machinery/atmospherics/components/trinary/filter/atmos/n2o{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"jdL" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow, +/turf/open/floor/plating, +/area/command/gateway) +"jdV" = ( +/obj/machinery/atmospherics/pipe/simple/purple/visible, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"jfa" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/green/visible, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 4 + }, +/turf/open/floor/plasteel/cafeteria, +/area/engineering/atmos) +"jfi" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/green/visible, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"jfl" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/cargo/storage) +"jfD" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/command/corporate_showroom) +"jfL" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/command/storage/eva) +"jfR" = ( +/obj/structure/table/glass, +/obj/item/pen, +/obj/item/clothing/neck/stethoscope, +/obj/structure/extinguisher_cabinet{ + pixel_x = 6; + 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/command/heads_quarters/cmo) +"jfY" = ( +/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/engineering/supermatter) +"jgc" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/engineering/gravity_generator) +"jgw" = ( +/obj/machinery/camera{ + c_tag = "Cargo Bay - Aft"; + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/cargo/storage) +"jgy" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/engineering/break_room) +"jgE" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock{ + name = "Custodial Closet"; + req_access_txt = "26" + }, +/turf/open/floor/plasteel, +/area/service/janitor) +"jho" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/sign/warning/securearea, +/turf/closed/wall/r_wall, +/area/command/teleporter) +"jhu" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/public/glass{ + id_tag = "permahydro"; + name = "Recreation Module" + }, +/turf/open/floor/plasteel, +/area/security/prison) +"jhw" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/service/bar) +"jhV" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/turf/open/floor/plating, +/area/command/gateway) +"jig" = ( +/turf/open/floor/plasteel/showroomfloor, +/area/service/kitchen) +"jik" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel, +/area/cargo/qm) +"jit" = ( +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel/dark, +/area/commons/cryopod) +"jiG" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/machinery/door/poddoor/preopen{ + id = "rdprivacy"; + name = "privacy shutter" + }, +/turf/open/floor/plating, +/area/command/heads_quarters/rd) +"jiN" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel/dark, +/area/service/chapel/main) +"jiU" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/obj/structure/closet/crate, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 3; + name = "3maintenance loot spawner" + }, +/turf/open/floor/plasteel, +/area/cargo/warehouse) +"jiZ" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 10 + }, +/turf/closed/wall, +/area/engineering/atmos) +"jje" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"jji" = ( +/obj/machinery/pool/controller, +/turf/open/floor/plasteel, +/area/commons/fitness/pool) +"jjm" = ( +/obj/effect/landmark/start/cook, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plasteel/showroomfloor, +/area/service/kitchen) +"jjF" = ( +/obj/structure/pool/Lboard, +/turf/open/pool, +/area/commons/fitness/pool) +"jjI" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/commons/fitness/recreation) +"jjZ" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + name = "Plasma to Pure" + }, +/obj/machinery/atmospherics/pipe/simple/green/visible, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"jkm" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/commons/storage/art) +"jlc" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/chapel, +/area/service/chapel/main) +"jld" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/service/chapel/office) +"jmq" = ( +/obj/machinery/hydroponics/constructable, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"jmy" = ( +/turf/closed/wall/r_wall, +/area/command/teleporter) +"jmU" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "packageSort2" + }, +/turf/open/floor/plating, +/area/cargo/sorting) +"jng" = ( +/obj/structure/cable/white, +/turf/open/floor/plating, +/area/engineering/main) +"jnW" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/command/storage/eva) +"joe" = ( +/obj/structure/table, +/obj/item/flashlight{ + pixel_x = 1; + pixel_y = 5 + }, +/obj/item/flashlight{ + pixel_x = 1; + pixel_y = 5 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/item/assembly/flash/handheld, +/obj/item/assembly/flash/handheld, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = 28 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/storage/tech) +"joj" = ( +/obj/machinery/status_display/evac{ + pixel_y = 32 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/break_room) +"jom" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/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/commons/dorms) +"jon" = ( +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -29 + }, +/obj/structure/rack, +/obj/item/assembly/signaler, +/obj/item/assembly/signaler, +/obj/item/assembly/timer, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"jor" = ( +/obj/machinery/atmospherics/pipe/manifold/yellow/visible{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"joE" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/closed/wall/r_wall, +/area/engineering/atmos) +"joP" = ( +/obj/structure/closet/secure_closet/bar{ + req_access_txt = "25" + }, +/turf/open/floor/wood, +/area/service/bar) +"joS" = ( +/obj/machinery/computer/holodeck{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"joV" = ( +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -28 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/cargo/storage) +"joY" = ( +/obj/machinery/status_display/supply, +/turf/closed/wall, +/area/cargo/miningoffice) +"jpf" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/window/eastright{ + dir = 8; + name = "Fitness Ring" + }, +/turf/open/floor/plasteel/dark, +/area/commons/fitness/recreation) +"jpq" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"jpr" = ( +/obj/structure/table/reinforced, +/obj/item/lighter, +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_x = -31 + }, +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/service/bar) +"jqj" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"jra" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/item/disk/data{ + pixel_x = 9; + pixel_y = -1 + }, +/obj/item/disk/tech_disk{ + pixel_x = -2; + pixel_y = -3 + }, +/obj/item/disk/design_disk{ + name = "component design disk"; + pixel_y = 6 + }, +/obj/structure/table/wood, +/obj/item/toy/talking/AI{ + name = "Nanotrasen-brand toy AI"; + pixel_y = 6 + }, +/turf/open/floor/carpet, +/area/command/corporate_showroom) +"jrm" = ( +/obj/effect/spawner/structure/window/reinforced/tinted, +/turf/open/floor/plasteel/dark, +/area/service/chapel/office) +"jrn" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/cargo/miningoffice) +"jso" = ( +/obj/machinery/camera/motion{ + c_tag = "MiniSat Maintenance"; + dir = 8; + network = list("minisat") + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/structure/rack, +/obj/item/storage/toolbox/electrical{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/storage/toolbox/mechanical, +/obj/item/multitool, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/storage/satellite) +"jsx" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/table/wood/poker, +/obj/item/clothing/mask/cigarette/cigar, +/turf/open/floor/wood, +/area/service/bar) +"jtn" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + name = "bridge blast door" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command/glass{ + name = "Bridge Access"; + req_access_txt = "19" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + 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/command/bridge) +"jtr" = ( +/obj/machinery/power/apc{ + areastring = "/area/service/theater"; + dir = 1; + name = "Theatre APC"; + pixel_y = 23 + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/structure/table/wood, +/obj/item/clothing/glasses/monocle, +/turf/open/floor/wood, +/area/service/theater) +"jty" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/miningoffice) +"jtI" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"jtX" = ( +/obj/structure/table/wood, +/obj/machinery/computer/libraryconsole/bookmanagement, +/obj/structure/noticeboard{ + desc = "A board for pinning important notices upon. Probably helpful for keeping track of requests."; + dir = 8; + name = "requests board"; + pixel_x = 32 + }, +/turf/open/floor/wood, +/area/service/library) +"jug" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + id = "kitchenhydro"; + name = "Service Shutter" + }, +/obj/machinery/door/airlock/medical/glass{ + name = "Service Door"; + req_one_access_txt = "35;28" + }, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/service/hydroponics) +"juj" = ( +/turf/open/floor/plating, +/area/engineering/atmos) +"juG" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"jvn" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/carpet, +/area/service/theater) +"jvP" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/dorms) +"jwh" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/cryopod, +/obj/machinery/light_switch{ + pixel_x = -26 + }, +/turf/open/floor/plasteel/dark, +/area/commons/cryopod) +"jwx" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/loading_area{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"jwC" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"jwE" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/command/heads_quarters/rd) +"jwH" = ( +/obj/item/storage/book/bible, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/obj/machinery/camera{ + c_tag = "Chapel - Fore" + }, +/obj/structure/table/wood, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/service/chapel/main) +"jxm" = ( +/obj/structure/sign/warning/securearea, +/turf/closed/wall/r_wall, +/area/ai_monitored/command/storage/eva) +"jxw" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/engineering/atmos) +"jxD" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/commons/dorms) +"jxI" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"jyd" = ( +/obj/machinery/computer/secure_data, +/obj/structure/cable/yellow{ + 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/security/office) +"jyj" = ( +/obj/machinery/vending/wardrobe/chap_wardrobe, +/turf/open/floor/plasteel/grimy, +/area/service/chapel/office) +"jyl" = ( +/obj/machinery/door/window{ + name = "Captain's Desk"; + req_access_txt = "20" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private) +"jyo" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/open/floor/engine, +/area/engineering/main) +"jyv" = ( +/obj/structure/table/reinforced, +/obj/item/stock_parts/cell/high, +/obj/item/stock_parts/cell/high, +/obj/machinery/computer/security/telescreen/circuitry{ + pixel_x = 30 + }, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"jyQ" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/solars/port/aft) +"jyT" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "MiniSat Exterior - Port Aft"; + dir = 8; + network = list("minisat") + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/aisat/exterior) +"jyX" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"jzm" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/commons/storage/primary) +"jzr" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/office) +"jzU" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/wood, +/area/service/lawoffice) +"jAn" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"jAr" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/plating, +/area/service/janitor) +"jAs" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/wood, +/area/commons/dorms) +"jAG" = ( +/obj/structure/rack, +/obj/item/aicard, +/obj/item/radio/off, +/obj/machinery/computer/security/telescreen/minisat{ + dir = 1; + pixel_y = -29 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"jAK" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 24 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/commons/locker) +"jAS" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/item/wrench, +/obj/item/stack/sheet/glass{ + amount = 30 + }, +/obj/item/stack/sheet/metal{ + amount = 30 + }, +/obj/item/stack/cable_coil/random, +/obj/item/stack/cable_coil/random, +/obj/structure/closet, +/obj/item/vending_refill/cigarette, +/turf/open/floor/wood, +/area/service/bar) +"jBe" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"jBh" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/aisat/exterior) +"jBn" = ( +/obj/structure/chair/wood/normal{ + dir = 1 + }, +/turf/open/floor/wood, +/area/commons/dorms) +"jBu" = ( +/obj/machinery/door/window{ + base_state = "right"; + dir = 8; + icon_state = "right"; + name = "Theatre Stage" + }, +/obj/structure/sign/poster/random{ + pixel_y = -32 + }, +/turf/open/floor/carpet, +/area/service/theater) +"jBD" = ( +/obj/machinery/power/apc{ + areastring = "/area/cargo/miningoffice"; + dir = 1; + name = "Mining APC"; + pixel_y = 23 + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/machinery/light_switch{ + pixel_y = 38 + }, +/obj/structure/closet/wardrobe/miner, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/miningoffice) +"jBG" = ( +/obj/structure/table/wood, +/obj/item/book/manual/wiki/security_space_law{ + pixel_y = 3 + }, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = 28 + }, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"jCt" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/storage/primary) +"jDx" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/airlock/command{ + name = "E.V.A. Storage"; + req_access_txt = "18" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/ai_monitored/command/storage/eva) +"jDz" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plating, +/area/engineering/break_room) +"jDD" = ( +/obj/structure/fireaxecabinet{ + pixel_x = -32 + }, +/obj/machinery/camera{ + c_tag = "Atmospherics - Port"; + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/engineering/atmos) +"jDS" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 9 + }, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"jDV" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -27 + }, +/obj/item/kirbyplants{ + icon_state = "plant-03" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/commons/locker) +"jEr" = ( +/obj/machinery/portable_atmospherics/canister, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"jFq" = ( +/turf/closed/wall, +/area/command/heads_quarters/hop) +"jGg" = ( +/turf/open/floor/plasteel, +/area/commons/fitness/pool) +"jGw" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/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/cargo/miningoffice) +"jGA" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/machinery/light, +/turf/open/floor/wood, +/area/service/bar) +"jGW" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/engine/n2o, +/area/engineering/atmos) +"jIg" = ( +/obj/structure/sign/directions/evac, +/obj/structure/sign/directions/medical{ + pixel_y = 8 + }, +/obj/structure/sign/directions/science{ + pixel_y = -8 + }, +/turf/closed/wall, +/area/commons/storage/art) +"jIS" = ( +/obj/machinery/vending/autodrobe, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/wood, +/area/service/theater) +"jJw" = ( +/obj/structure/sign/map/left{ + desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; + icon_state = "map-left-MS"; + pixel_y = 32 + }, +/obj/machinery/camera{ + c_tag = "Atmospherics - Control Room" + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/closet/secure_closet/atmospherics, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/engineering/atmos) +"jKi" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"jKl" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/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 + }, +/turf/open/floor/plasteel, +/area/commons/toilet/auxiliary) +"jKK" = ( +/obj/machinery/door/airlock/external{ + req_access_txt = "13" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"jLc" = ( +/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" + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hop) +"jLu" = ( +/obj/effect/landmark/start/chief_engineer, +/obj/structure/chair/office/light{ + dir = 1; + 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, +/area/command/heads_quarters/ce) +"jLE" = ( +/obj/machinery/door/airlock/maintenance/abandoned{ + name = "Storage Room"; + req_access_txt = "12" + }, +/obj/structure/barricade/wooden, +/turf/open/floor/plating, +/area/commons/fitness/pool) +"jLF" = ( +/obj/machinery/door/airlock{ + name = "Cryogenics" + }, +/obj/machinery/door/firedoor, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/dark, +/area/commons/cryopod) +"jLH" = ( +/obj/machinery/door/airlock/hatch{ + name = "MiniSat Space Access Airlock"; + req_one_access_txt = "32;19" + }, +/turf/open/floor/plating, +/area/ai_monitored/aisat/exterior) +"jLN" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/storage/primary) +"jLP" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/commons/fitness/recreation) +"jLY" = ( +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/obj/structure/sign/poster/official/random{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"jMq" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/landmark/secequipment, +/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/security/office) +"jMs" = ( +/obj/structure/chair/stool, +/turf/open/floor/plasteel/chapel{ + dir = 1 + }, +/area/service/chapel/main) +"jMw" = ( +/obj/structure/sign/warning/radiation/rad_area{ + pixel_y = 32 + }, +/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/engineering/gravity_generator) +"jMP" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hos) +"jNm" = ( +/obj/machinery/door/airlock/hatch{ + name = "MiniSat Space Access Airlock"; + req_one_access_txt = "32;19" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/break_room) +"jNs" = ( +/obj/machinery/power/apc/highcap/five_k{ + areastring = "/area/tcommsat/server"; + dir = 4; + name = "Telecomms Server Room APC"; + pixel_x = 24 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Telecomms - Server Room - Aft-Starboard"; + dir = 8; + network = list("ss13","tcomms") + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/turf/open/floor/plasteel/dark/telecomms, +/area/tcommsat/server) +"jNt" = ( +/obj/structure/rack, +/obj/item/storage/secure/briefcase, +/obj/item/clothing/mask/cigarette/cigar, +/obj/machinery/computer/security/telescreen/ce{ + dir = 1; + 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/command/heads_quarters/ce) +"jNA" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on, +/obj/structure/window/reinforced, +/turf/open/floor/plating/airless, +/area/ai_monitored/aisat/exterior) +"jOk" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"jOA" = ( +/obj/machinery/portable_atmospherics/canister/toxins, +/turf/open/floor/plating, +/area/engineering/main) +"jPl" = ( +/obj/structure/table/reinforced, +/obj/item/reagent_containers/food/condiment/saltshaker{ + pixel_x = -3 + }, +/obj/item/reagent_containers/food/condiment/peppermill{ + pixel_x = 3 + }, +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/service/bar) +"jPn" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/cargo/storage) +"jPu" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"jPE" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/command/storage/eva) +"jPO" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/commons/fitness/recreation) +"jPT" = ( +/obj/machinery/computer/secure_data{ + dir = 1 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/hop) +"jPX" = ( +/obj/structure/chair/comfy/brown{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/command/heads_quarters/captain/private) +"jQb" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/commons/cryopod) +"jQR" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 24 + }, +/turf/open/floor/plasteel, +/area/commons/toilet/auxiliary) +"jQT" = ( +/turf/open/floor/engine/vacuum, +/area/engineering/atmos) +"jRc" = ( +/obj/structure/table, +/obj/item/stack/wrapping_paper, +/obj/item/stack/wrapping_paper, +/obj/machinery/requests_console{ + department = "Cargo Bay"; + departmentType = 2; + pixel_y = -30 + }, +/obj/item/stack/packageWrap{ + pixel_x = 2; + pixel_y = -3 + }, +/obj/item/stack/packageWrap{ + pixel_x = 2; + pixel_y = -3 + }, +/obj/item/stack/packageWrap{ + pixel_x = 2; + pixel_y = -3 + }, +/obj/item/stack/packageWrap{ + pixel_x = 2; + pixel_y = -3 + }, +/obj/item/stack/packageWrap{ + pixel_x = 2; + pixel_y = -3 + }, +/obj/item/stack/packageWrap{ + pixel_x = 2; + pixel_y = -3 + }, +/obj/item/stack/packageWrap{ + pixel_x = 2; + pixel_y = -3 + }, +/obj/item/stack/packageWrap{ + pixel_x = 2; + pixel_y = -3 + }, +/obj/item/storage/box/lights/mixed, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white/corner, +/area/cargo/sorting) +"jRj" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/cargo/sorting) +"jRk" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/commons/dorms) +"jRI" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel, +/area/commons/locker) +"jRU" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/orange/visible{ + dir = 4 + }, +/turf/open/floor/engine, +/area/engineering/main) +"jSd" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/closed/wall, +/area/service/chapel/main) +"jSe" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/carpet, +/area/command/heads_quarters/hop) +"jSv" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/wood, +/area/service/lawoffice) +"jSx" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/engineering/main) +"jSy" = ( +/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/engineering/gravity_generator) +"jSM" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/cargo/office) +"jSQ" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/command/teleporter) +"jTb" = ( +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"jTX" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/command/gateway) +"jUl" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/table/glass, +/obj/item/folder/blue{ + pixel_y = 2 + }, +/obj/item/folder/blue{ + pixel_y = 2 + }, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"jUo" = ( +/obj/structure/table/wood, +/obj/machinery/light_switch{ + pixel_x = -28 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/item/folder, +/turf/open/floor/wood, +/area/commons/vacant_room/office) +"jUp" = ( +/obj/machinery/door/window/northleft{ + dir = 8; + name = "glass door"; + req_access_txt = "24" + }, +/obj/machinery/door/window/northleft{ + dir = 4; + name = "glass door"; + req_access_txt = "24" + }, +/turf/open/floor/plating, +/area/engineering/atmos) +"jUz" = ( +/turf/closed/wall, +/area/commons/locker) +"jUF" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/plasteel, +/area/engineering/main) +"jVR" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/meter, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/turf/open/floor/engine, +/area/engineering/main) +"jXa" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/holopad, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"jXz" = ( +/obj/structure/closet/crate/coffin, +/obj/machinery/light/small, +/turf/open/floor/plating, +/area/service/chapel/main) +"jYM" = ( +/obj/structure/chair/stool, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel/chapel{ + dir = 4 + }, +/area/service/chapel/main) +"jYV" = ( +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/aisat/exterior) +"jZs" = ( +/obj/machinery/door/poddoor/shutters{ + id = "teleshutter"; + name = "Teleporter Access Shutter" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/command/teleporter) +"jZx" = ( +/obj/structure/sign/warning/fire, +/turf/closed/wall/r_wall, +/area/engineering/supermatter) +"jZA" = ( +/obj/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"jZI" = ( +/obj/machinery/status_display/ai{ + pixel_y = 32 + }, +/obj/item/storage/toolbox/mechanical{ + pixel_x = -1; + pixel_y = 4 + }, +/obj/structure/table/glass, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"kbg" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/components/trinary/filter/flipped/critical{ + dir = 1 + }, +/turf/open/floor/engine, +/area/engineering/main) +"kbk" = ( +/obj/structure/table, +/obj/item/aicard, +/obj/item/aiModule/reset, +/turf/open/floor/plasteel/dark, +/area/engineering/storage/tech) +"kbS" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/aisat/exterior) +"kbX" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + name = "bridge blast door" + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/turf/open/floor/plating, +/area/command/bridge) +"kcH" = ( +/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/commons/storage/primary) +"kcT" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/cafeteria, +/area/command/heads_quarters/cmo) +"kdi" = ( +/obj/machinery/portable_atmospherics/canister/nitrogen, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"kdB" = ( +/obj/machinery/atmospherics/pipe/manifold/yellow/visible{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"kdR" = ( +/obj/structure/rack{ + icon = 'icons/obj/stationobjs.dmi'; + icon_state = "minibar"; + name = "skeletal minibar" + }, +/obj/item/storage/fancy/candle_box, +/turf/open/floor/engine/cult, +/area/service/library) +"kea" = ( +/obj/structure/pool/ladder{ + dir = 8; + pixel_x = 4 + }, +/turf/open/pool, +/area/commons/fitness/pool) +"ker" = ( +/turf/closed/wall, +/area/service/chapel/office) +"keY" = ( +/obj/structure/table, +/obj/item/folder/red, +/obj/item/assembly/flash/handheld, +/turf/open/floor/plasteel, +/area/security/office) +"kfb" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -24 + }, +/turf/open/floor/plasteel/dark, +/area/commons/cryopod) +"kff" = ( +/obj/machinery/door/airlock/external{ + name = "Mining Dock Airlock" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/turf/open/floor/plating, +/area/cargo/miningoffice) +"kfu" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"kfM" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"kfN" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/holopad, +/turf/open/floor/plasteel, +/area/service/hydroponics/garden) +"kfS" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/plasteel, +/area/cargo/storage) +"kfT" = ( +/obj/item/stack/cable_coil, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solars/port/fore) +"kgv" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + id = "kitchen"; + name = "Serving Hatch" + }, +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/service/kitchen) +"kgN" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/airlock/medical/glass{ + name = "Operating Theatre"; + req_access_txt = "45" + }, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"kgW" = ( +/obj/machinery/power/apc{ + areastring = "/area/ai_monitored/command/nuke_storage"; + dir = 1; + name = "Vault APC"; + pixel_y = 23 + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/turf/open/floor/circuit/green{ + luminosity = 2 + }, +/area/ai_monitored/command/nuke_storage) +"kho" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/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/ai_monitored/aisat/exterior) +"khq" = ( +/turf/open/floor/plasteel/dark, +/area/engineering/gravity_generator) +"khu" = ( +/obj/structure/chair/office/light{ + dir = 1 + }, +/obj/effect/landmark/start/chief_medical_officer, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/cafeteria, +/area/command/heads_quarters/cmo) +"khP" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"kig" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/obj/item/paper_bin{ + pixel_x = -2; + pixel_y = 8 + }, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/structure/table/wood, +/turf/open/floor/plasteel/dark, +/area/service/chapel/main) +"kiA" = ( +/obj/structure/closet/emcloset, +/obj/structure/sign/warning/pods{ + 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/commons/fitness/recreation) +"kiL" = ( +/obj/machinery/computer/slot_machine{ + pixel_y = 2 + }, +/obj/structure/sign/barsign{ + pixel_y = 32 + }, +/turf/open/floor/carpet, +/area/service/bar) +"kiW" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"kje" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8; + name = "Xenobiology air connection" + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"kjA" = ( +/obj/item/clothing/gloves/color/yellow, +/obj/item/clothing/gloves/color/yellow, +/obj/item/clothing/gloves/color/yellow, +/obj/item/clothing/suit/hazardvest, +/obj/item/clothing/suit/hazardvest, +/obj/item/tank/internals/emergency_oxygen/engi, +/obj/item/tank/internals/emergency_oxygen/engi, +/obj/effect/turf_decal/delivery, +/obj/structure/table, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"kjR" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"kkl" = ( +/obj/effect/spawner/structure/window/reinforced/tinted, +/turf/open/floor/plating, +/area/service/hydroponics/garden) +"kkR" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock{ + name = "Recreation Area" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/commons/dorms) +"klE" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/commons/fitness/recreation) +"klN" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/commons/fitness/pool) +"klX" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/carpet, +/area/command/heads_quarters/captain/private) +"kmr" = ( +/obj/effect/landmark/start/botanist, +/obj/machinery/holopad, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"kmP" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Bar" + }, +/turf/open/floor/plasteel, +/area/service/bar) +"kmT" = ( +/obj/structure/table/reinforced, +/obj/machinery/computer/security/telescreen/rd, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/command/heads_quarters/rd) +"knM" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/structure/chair/comfy/beige, +/turf/open/floor/carpet, +/area/command/bridge) +"kps" = ( +/obj/machinery/light/small, +/turf/open/floor/plasteel/chapel{ + dir = 4 + }, +/area/service/chapel/main) +"kpP" = ( +/obj/structure/table/wood, +/obj/item/book/granter/spell/smoke/lesser{ + name = "mysterious old book of " + }, +/obj/item/reagent_containers/food/drinks/bottle/holywater{ + pixel_x = -2; + pixel_y = 2 + }, +/obj/item/nullrod{ + pixel_x = 4 + }, +/obj/item/organ/heart, +/obj/item/soulstone/anybody/chaplain, +/turf/open/floor/plasteel/cult, +/area/service/chapel/office) +"kqF" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating, +/area/engineering/break_room) +"kqP" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock{ + name = "Bar Access"; + req_access_txt = "25" + }, +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/service/bar) +"kro" = ( +/obj/machinery/air_sensor/atmos/oxygen_tank, +/turf/open/floor/engine/o2, +/area/engineering/atmos) +"krD" = ( +/turf/closed/wall, +/area/science/circuit) +"krL" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/commons/dorms) +"krO" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Engineering - Entrance"; + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"ksp" = ( +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/item/toy/beach_ball{ + desc = "The simple beach ball is one of Nanotrasen's most popular products. 'Why do we make beach balls? Because we can! (TM)' - Nanotrasen"; + name = "Nanotrasen-brand beach ball"; + pixel_y = 7 + }, +/obj/structure/table/wood, +/turf/open/floor/carpet, +/area/command/corporate_showroom) +"ksO" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/airlock/public/glass{ + name = "Library" + }, +/turf/open/floor/wood, +/area/service/library) +"ksV" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"ktz" = ( +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/office) +"ktI" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/turf/open/floor/plating, +/area/engineering/atmos) +"ktS" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/carbon_input{ + dir = 8 + }, +/turf/open/floor/engine/co2, +/area/engineering/atmos) +"ktV" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/closed/wall, +/area/engineering/atmos) +"kuk" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/corner, +/area/engineering/break_room) +"kum" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/commons/dorms) +"kuG" = ( +/obj/structure/sign/map/left{ + desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; + icon_state = "map-left-MS"; + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"kvd" = ( +/obj/structure/closet/crate, +/obj/item/flashlight{ + pixel_x = 1; + pixel_y = 5 + }, +/obj/item/flashlight{ + pixel_x = 1; + pixel_y = 5 + }, +/obj/item/stock_parts/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/obj/item/stack/cable_coil{ + pixel_x = 3; + pixel_y = -7 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/miningoffice) +"kvr" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "MiniSat Exterior - Starboard Fore"; + dir = 4; + network = list("minisat") + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/aisat/exterior) +"kvJ" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/light_construct/small{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/warehouse) +"kvK" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/carpet, +/area/command/heads_quarters/hop) +"kwq" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/office) +"kwD" = ( +/obj/structure/rack, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/spawner/lootdrop/techstorage/tcomms, +/turf/open/floor/plasteel/dark, +/area/engineering/storage/tech) +"kwE" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/obj/machinery/shower{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"kwP" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/delivery, +/obj/structure/closet/secure_closet/engineering_welding, +/turf/open/floor/plasteel, +/area/engineering/main) +"kxk" = ( +/obj/structure/table/reinforced, +/obj/machinery/cell_charger, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"kxM" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/break_room) +"kxY" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"kyq" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel/chapel{ + dir = 8 + }, +/area/service/chapel/main) +"kyr" = ( +/obj/machinery/light/small, +/turf/open/floor/carpet, +/area/commons/dorms) +"kyt" = ( +/obj/machinery/button/door{ + id = "hop"; + name = "Privacy Shutters Control"; + pixel_x = -24; + pixel_y = -6; + req_access_txt = "28" + }, +/obj/machinery/light_switch{ + pixel_x = -25; + pixel_y = 5 + }, +/turf/open/floor/carpet, +/area/command/heads_quarters/hop) +"kyA" = ( +/obj/structure/table, +/obj/item/plant_analyzer, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/storage/tech) +"kyJ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"kyL" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/locker) +"kzn" = ( +/obj/machinery/door/airlock/external{ + name = "Departure Lounge Airlock" + }, +/obj/effect/turf_decal/delivery, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"kzo" = ( +/obj/machinery/camera/motion{ + c_tag = "E.V.A. Storage"; + dir = 8 + }, +/obj/machinery/requests_console{ + department = "EVA"; + pixel_x = 32 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/command/storage/eva) +"kAc" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/table, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/service/kitchen) +"kAr" = ( +/obj/structure/table/wood, +/obj/item/hand_tele, +/obj/structure/window/reinforced, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_x = 27 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private) +"kAx" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/service/kitchen) +"kAz" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "packageSort2" + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/cargo/sorting) +"kAA" = ( +/obj/structure/reflector/single/anchored{ + dir = 10 + }, +/turf/open/floor/plating, +/area/engineering/main) +"kAB" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/power/apc/highcap/ten_k{ + areastring = "/area/hallway/secondary/command"; + dir = 1; + name = "Command Hallway APC"; + pixel_y = 23 + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"kBg" = ( +/obj/machinery/light, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/structure/rack, +/obj/item/storage/secure/briefcase, +/obj/item/clothing/mask/cigarette/cigar, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"kBk" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + name = "Port to Filter" + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"kBm" = ( +/obj/structure/closet/secure_closet/exile, +/obj/structure/extinguisher_cabinet{ + pixel_x = -27 + }, +/obj/effect/turf_decal/bot{ + dir = 1 + }, +/turf/open/floor/plasteel{ + dir = 1 + }, +/area/command/gateway) +"kBn" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/spawner/structure/window/plasma/reinforced, +/turf/open/floor/plating, +/area/engineering/main) +"kBr" = ( +/obj/structure/closet/secure_closet/personal, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/item/clothing/under/misc/assistantformal, +/obj/structure/sign/map/left{ + desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; + icon_state = "map-left-MS"; + pixel_y = 32 + }, +/obj/item/clothing/suit/hooded/wintercoat, +/obj/item/clothing/shoes/winterboots, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/commons/locker) +"kBH" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/service/kitchen) +"kCp" = ( +/turf/closed/wall/r_wall, +/area/engineering/gravity_generator) +"kCR" = ( +/obj/structure/table/wood, +/obj/machinery/light/small, +/obj/item/clothing/glasses/regular/hipster{ + name = "Hipster Glasses" + }, +/turf/open/floor/wood, +/area/service/theater) +"kDc" = ( +/obj/machinery/reagentgrinder, +/obj/structure/table/wood, +/turf/open/floor/wood, +/area/service/bar) +"kDg" = ( +/turf/closed/wall, +/area/service/janitor) +"kDi" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/machinery/door/poddoor/preopen{ + id = "ceprivacy"; + name = "privacy shutter" + }, +/turf/open/floor/plating, +/area/command/heads_quarters/ce) +"kDk" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/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/aisat/exterior) +"kDw" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solars/starboard/fore) +"kDI" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solars/port/aft) +"kEn" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "chapel_shutters_space"; + name = "chapel shutters" + }, +/turf/open/floor/plating, +/area/service/chapel/main) +"kEE" = ( +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"kEQ" = ( +/obj/machinery/button/door{ + id = "qm_mine_warehouse"; + name = "Warehouse Door Control"; + pixel_x = 24; + pixel_y = 28; + req_access_txt = "48" + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/miningoffice) +"kFi" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/obj/effect/landmark/start/cargo_technician, +/turf/open/floor/plasteel, +/area/cargo/storage) +"kFo" = ( +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"kFM" = ( +/obj/item/phone{ + desc = "Supposedly a direct line to Nanotrasen Central Command. It's not even plugged in."; + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/cigbutt/cigarbutt{ + pixel_x = 5; + pixel_y = -1 + }, +/obj/structure/table/wood, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 28 + }, +/turf/open/floor/plasteel/grimy, +/area/security/office) +"kFZ" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow, +/obj/machinery/door/poddoor/preopen{ + id = "rdprivacy"; + name = "privacy shutter" + }, +/turf/open/floor/plating, +/area/command/heads_quarters/rd) +"kGl" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/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/office) +"kGH" = ( +/obj/machinery/atmospherics/components/trinary/filter/atmos/plasma{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"kGY" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 27 + }, +/obj/structure/closet/secure_closet/freezer/fridge, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/service/kitchen) +"kHh" = ( +/obj/structure/table, +/obj/item/paper/pamphlet/gateway, +/obj/effect/turf_decal/bot{ + dir = 1 + }, +/turf/open/floor/plasteel{ + dir = 1 + }, +/area/command/gateway) +"kHk" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engineering/main) +"kHv" = ( +/obj/item/flashlight/lamp/green{ + pixel_x = 1; + pixel_y = 5 + }, +/obj/machinery/button/door{ + id = "hop"; + name = "Privacy Shutters Control"; + pixel_y = 25; + req_access_txt = "28" + }, +/obj/structure/table/wood, +/turf/open/floor/wood, +/area/command/heads_quarters/hop) +"kHw" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/structure/table, +/obj/item/gps{ + gpstag = "MINE_PUB" + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"kIk" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock{ + name = "Unisex Restrooms" + }, +/turf/open/floor/plasteel/freezer, +/area/commons/toilet/restrooms) +"kIw" = ( +/obj/machinery/atmospherics/components/trinary/filter/atmos/n2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"kJc" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/commons/locker) +"kJB" = ( +/obj/structure/table, +/obj/item/stock_parts/subspace/treatment, +/obj/item/stock_parts/subspace/treatment, +/obj/item/stock_parts/subspace/treatment, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 24 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/storage/tcomms) +"kJM" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command/glass{ + name = "Bridge"; + req_access_txt = "19" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"kJQ" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 1 + }, +/obj/machinery/meter, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"kKa" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"kKl" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable, +/turf/open/space, +/area/solars/port/aft) +"kKq" = ( +/obj/machinery/holopad, +/turf/open/floor/wood, +/area/service/lawoffice) +"kKv" = ( +/obj/machinery/vending/tool, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/engineering/main) +"kKA" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/service/theater) +"kKR" = ( +/obj/structure/window/reinforced, +/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/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"kLa" = ( +/obj/structure/table, +/obj/item/toy/cards/deck, +/turf/open/floor/plasteel, +/area/commons/dorms) +"kLr" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"kLD" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/camera{ + c_tag = "Bridge - Starboard Access"; + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"kLP" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"kMq" = ( +/obj/item/flashlight/lantern{ + pixel_y = 7 + }, +/obj/structure/table/wood, +/turf/open/floor/plasteel/dark, +/area/service/chapel/main) +"kMC" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/command/gateway) +"kMT" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel, +/area/commons/storage/art) +"kNr" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"kNs" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/nitrous_input{ + dir = 8 + }, +/turf/open/floor/engine/n2o, +/area/engineering/atmos) +"kNB" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/closed/wall, +/area/commons/fitness/recreation) +"kNM" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"kOt" = ( +/obj/item/multitool, +/obj/item/screwdriver, +/obj/structure/table/reinforced, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"kPl" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "packageSort2" + }, +/obj/structure/plasticflaps, +/turf/open/floor/plating, +/area/cargo/sorting) +"kPw" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/commons/fitness/recreation) +"kPR" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/aisat/exterior) +"kPU" = ( +/obj/structure/table, +/obj/item/restraints/handcuffs, +/obj/item/radio/off, +/turf/open/floor/plasteel, +/area/security/office) +"kPW" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 24 + }, +/turf/open/floor/wood, +/area/service/lawoffice) +"kPZ" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/service/bar) +"kQh" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/open/floor/wood, +/area/command/corporate_showroom) +"kQm" = ( +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/obj/structure/window/reinforced, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/aisat/exterior) +"kQJ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/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/service/hydroponics) +"kQP" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=6-Port-Central"; + location = "5-Customs" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"kQW" = ( +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solars/port/fore) +"kRE" = ( +/obj/machinery/power/apc{ + areastring = "/area/ai_monitored/turret_protected/ai"; + dir = 1; + name = "AI Chamber APC"; + pixel_y = 23 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"kRI" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + name = "Atmos to Loop" + }, +/turf/open/floor/engine, +/area/engineering/main) +"kRO" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + name = "N2O to Pure" + }, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"kRP" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/spawner/structure/window/plasma/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/turf/open/floor/plating, +/area/engineering/main) +"kSn" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"kSp" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/command/gateway) +"kSs" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics/garden) +"kSt" = ( +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/obj/structure/table/wood, +/obj/item/paper_bin{ + pixel_x = -2; + pixel_y = 6 + }, +/turf/open/floor/wood, +/area/commons/vacant_room/office) +"kSy" = ( +/obj/machinery/power/apc{ + areastring = "/area/maintenance/solars/starboard/aft"; + dir = 1; + name = "Starboard Quarter Solar APC"; + pixel_y = 23 + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/aft) +"kSF" = ( +/obj/structure/lattice, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/space, +/area/ai_monitored/aisat/exterior) +"kSV" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/public/glass{ + name = "Funeral Parlour" + }, +/turf/open/floor/plasteel/dark, +/area/service/chapel/main) +"kTe" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Engineering Supermatter Port"; + dir = 8; + network = list("ss13","engine") + }, +/obj/machinery/airalarm/engine{ + dir = 8; + pixel_x = 24 + }, +/obj/machinery/atmospherics/pipe/manifold/green/visible{ + dir = 8 + }, +/turf/open/floor/engine, +/area/engineering/supermatter) +"kTv" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Crew Quarters Access" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/commons/locker) +"kTx" = ( +/obj/structure/closet/secure_closet/miner, +/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/cargo/miningoffice) +"kTS" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/commons/fitness/pool) +"kUx" = ( +/obj/machinery/camera{ + c_tag = "Council Chamber" + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/status_display/ai{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"kUS" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/obj/machinery/vending/wardrobe/jani_wardrobe, +/turf/open/floor/plasteel, +/area/service/janitor) +"kVo" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"kVz" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/service/chapel/main) +"kVZ" = ( +/obj/item/paper_bin{ + pixel_x = -2; + pixel_y = 8 + }, +/obj/item/pen, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/table/wood, +/turf/open/floor/plasteel/grimy, +/area/service/chapel/office) +"kWa" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/vending/snack/random, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"kWh" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solars/port/fore) +"kWW" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/engineering/atmos) +"kXd" = ( +/obj/machinery/power/terminal, +/obj/structure/cable, +/obj/structure/extinguisher_cabinet{ + pixel_x = -27 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"kXp" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/wood, +/area/service/theater) +"kXt" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/dorms) +"kXR" = ( +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/open/floor/wood, +/area/commons/vacant_room/office) +"kXS" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/gravity_generator) +"kYl" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"kYp" = ( +/obj/machinery/door/firedoor/border_only/closed{ + dir = 8; + name = "Animal Pen B" + }, +/turf/open/floor/grass, +/area/service/hydroponics/garden) +"kYt" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "2-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, +/area/security/office) +"kYv" = ( +/turf/closed/wall, +/area/commons/vacant_room/office) +"kYC" = ( +/obj/machinery/hydroponics/constructable, +/obj/machinery/light, +/obj/machinery/power/apc{ + areastring = "/area/service/hydroponics"; + name = "Hydroponics APC"; + pixel_y = -28 + }, +/obj/structure/cable/yellow, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"kYD" = ( +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"kYE" = ( +/obj/machinery/holopad/secure, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/command/heads_quarters/rd) +"kYM" = ( +/obj/structure/chair, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/service/chapel/main) +"kYY" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/commons/locker) +"kZm" = ( +/obj/structure/table/wood, +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Head of Security's Desk"; + departmentType = 5; + name = "Head of Security RC"; + pixel_y = 30 + }, +/obj/machinery/computer/med_data/laptop, +/obj/item/storage/secure/safe/HoS{ + pixel_x = 36; + pixel_y = 28 + }, +/obj/machinery/camera{ + c_tag = "Head of Security's Office" + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hos) +"kZs" = ( +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/commons/locker) +"kZv" = ( +/obj/structure/chair/wood/normal{ + dir = 4 + }, +/turf/open/floor/wood, +/area/commons/dorms) +"kZR" = ( +/obj/item/storage/book/bible, +/obj/structure/table/wood, +/turf/open/floor/plasteel/dark, +/area/service/chapel/main) +"lal" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/circuit) +"lao" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/service/kitchen) +"lbz" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"lbV" = ( +/obj/item/folder/white{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/item/clothing/glasses/hud/health, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/table/glass, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/cafeteria, +/area/command/heads_quarters/cmo) +"lcj" = ( +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=8"; + dir = 8; + freq = 1400; + location = "Hydroponics" + }, +/obj/structure/plasticflaps/opaque, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/bot{ + dir = 1 + }, +/turf/open/floor/plasteel{ + dir = 1 + }, +/area/service/hydroponics) +"lcm" = ( +/obj/item/wrench, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"lcv" = ( +/obj/machinery/door/airlock/external{ + name = "Public Mining Dock" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"lcH" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/item/bodypart/chest/robot{ + pixel_x = -2; + pixel_y = 2 + }, +/obj/item/bodypart/head/robot{ + pixel_x = 3; + pixel_y = 2 + }, +/obj/structure/table/wood, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/turf/open/floor/carpet, +/area/command/corporate_showroom) +"lcV" = ( +/obj/machinery/requests_console{ + department = "Chapel"; + departmentType = 2; + pixel_y = 30 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel/grimy, +/area/service/chapel/office) +"ldb" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 9 + }, +/turf/open/floor/plating, +/area/engineering/atmos) +"lde" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/structure/chair/office/dark{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 27 + }, +/obj/machinery/camera{ + c_tag = "Bridge - Starboard"; + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"ldm" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/obj/machinery/camera{ + c_tag = "Locker Room Starboard" + }, +/obj/structure/sign/warning/pods{ + pixel_y = 30 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/commons/locker) +"ldI" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 8; + name = "Air to External Air Ports" + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"lep" = ( +/obj/structure/cable/yellow{ + 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/engineering/storage/tech) +"les" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 24 + }, +/obj/machinery/vending/dinnerware, +/turf/open/floor/plasteel/cafeteria, +/area/service/kitchen) +"leN" = ( +/obj/machinery/atmospherics/pipe/simple, +/obj/machinery/meter{ + name = "Mixed Air Tank Out" + }, +/obj/structure/grille, +/turf/closed/wall/r_wall, +/area/engineering/atmos) +"lgF" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/mining{ + name = "Cargo Bay"; + req_one_access_txt = "48;50" + }, +/obj/effect/turf_decal/delivery, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/construction/storage_wing) +"lgH" = ( +/turf/open/floor/plasteel/chapel{ + dir = 1 + }, +/area/service/chapel/main) +"lgY" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/junction/flip{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/commons/locker) +"lhH" = ( +/obj/structure/table, +/obj/item/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = -1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/storage/primary) +"lhP" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock{ + name = "Garden" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics/garden) +"lhY" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"lix" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engineering/atmos) +"liF" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -29 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/service/kitchen) +"lja" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "Research Director's Office"; + req_access_txt = "30" + }, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/command/heads_quarters/rd) +"ljs" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/cafeteria, +/area/command/heads_quarters/cmo) +"ljM" = ( +/obj/structure/chair/stool{ + pixel_y = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/commons/locker) +"lkU" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/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/command/heads_quarters/ce) +"llb" = ( +/obj/structure/table/reinforced, +/obj/item/integrated_circuit_printer, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"llh" = ( +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/structure/table/wood, +/obj/item/radio/intercom{ + freerange = 1; + frequency = 1424; + name = "Interrogation Intercom"; + pixel_y = -31 + }, +/turf/open/floor/plasteel/grimy, +/area/security/office) +"llE" = ( +/obj/structure/closet/secure_closet/engineering_chief, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/airalarm{ + dir = 8; + 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/command/heads_quarters/ce) +"lmb" = ( +/obj/machinery/power/port_gen/pacman, +/obj/structure/cable/yellow, +/obj/effect/turf_decal/bot{ + dir = 1 + }, +/turf/open/floor/plasteel{ + dir = 1 + }, +/area/engineering/main) +"lmm" = ( +/obj/structure/table/wood, +/obj/item/pen/red, +/obj/item/pen/blue{ + pixel_x = 5; + pixel_y = 5 + }, +/turf/open/floor/wood, +/area/service/library) +"lmt" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"lnm" = ( +/obj/structure/chair/office/dark{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"lnY" = ( +/obj/structure/chair/comfy/beige, +/turf/open/floor/carpet, +/area/command/bridge) +"lod" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/landmark/start/station_engineer, +/turf/open/floor/plasteel, +/area/engineering/main) +"lpm" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -24 + }, +/turf/open/floor/carpet, +/area/command/heads_quarters/captain/private) +"lpD" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/machinery/holopad/secure, +/turf/open/floor/plasteel/dark/telecomms, +/area/tcommsat/server) +"lpS" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Auxiliary Tool Storage"; + req_access_txt = "12" + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/commons/storage/tools) +"lqj" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 9 + }, +/obj/machinery/power/rad_collector/anchored, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/structure/window/plasma/reinforced{ + dir = 1 + }, +/turf/open/floor/engine, +/area/engineering/supermatter) +"lqR" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/office) +"lrJ" = ( +/obj/machinery/power/apc/highcap/five_k{ + areastring = "/area/commons/toilet/auxiliary"; + name = "Auxiliary Restrooms APC"; + pixel_y = -24 + }, +/obj/structure/cable/yellow, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/commons/toilet/auxiliary) +"lrM" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "MiniSat Maintenance"; + req_access_txt = "32" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/storage/satellite) +"lrV" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"ltc" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/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/treatment_center) +"ltg" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"lty" = ( +/obj/structure/chair/stool, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/chapel{ + dir = 1 + }, +/area/service/chapel/main) +"luo" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/cafeteria, +/area/command/heads_quarters/cmo) +"lux" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "lawyer_shutters"; + name = "law office shutters" + }, +/turf/open/floor/plating, +/area/service/lawoffice) +"lvk" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/window/northleft{ + name = "Inner Pipe Access"; + req_access_txt = "24" + }, +/obj/machinery/atmospherics/pipe/simple/yellow/visible, +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"lvm" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/computer/shuttle/mining/common{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"lvr" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"lvu" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/service/kitchen) +"lvy" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/storage/primary) +"lvR" = ( +/obj/effect/landmark/start/bartender, +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/service/bar) +"lwz" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/service/kitchen) +"lwJ" = ( +/obj/machinery/light/small, +/turf/open/floor/engine/o2, +/area/engineering/atmos) +"lwL" = ( +/turf/open/floor/plasteel, +/area/service/janitor) +"lwN" = ( +/obj/structure/chair/stool/bar, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/service/bar) +"lwX" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/bot_white/right, +/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/command/nuke_storage) +"lxd" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"lxs" = ( +/obj/structure/closet/crate/freezer, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 3; + name = "3maintenance loot spawner" + }, +/turf/open/floor/plasteel, +/area/cargo/warehouse) +"lxw" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/cargo/sorting) +"lyF" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/item/stock_parts/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/obj/effect/turf_decal/bot{ + dir = 1 + }, +/turf/open/floor/plasteel{ + dir = 1 + }, +/area/command/gateway) +"lyU" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_x = 30 + }, +/obj/machinery/vending/wardrobe/curator_wardrobe, +/turf/open/floor/engine/cult, +/area/service/library) +"lzk" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"lzo" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/mining/glass{ + name = "Cargo Office"; + req_one_access_txt = "48;50" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/cargo/office) +"lzt" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Vault Storage" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + 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/construction/storage_wing) +"lzQ" = ( +/obj/machinery/holopad, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"lAt" = ( +/obj/machinery/power/apc{ + areastring = "/area/security/checkpoint/supply"; + dir = 1; + name = "Security Post - Cargo Bay APC"; + pixel_x = 1; + pixel_y = 23 + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/supply) +"lAF" = ( +/obj/structure/table/wood, +/obj/item/paper_bin{ + pixel_x = -2; + pixel_y = 4 + }, +/obj/item/pen, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/wood, +/area/service/library) +"lAN" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/ai_slipper{ + uses = 10 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/aisat/exterior) +"lBg" = ( +/turf/open/floor/grass, +/area/service/hydroponics/garden) +"lBi" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/wood, +/area/service/library) +"lBv" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/toxin_input{ + dir = 8 + }, +/turf/open/floor/engine/plasma, +/area/engineering/atmos) +"lBR" = ( +/obj/structure/table/wood, +/obj/item/folder/white{ + pixel_x = 4; + pixel_y = -3 + }, +/turf/open/floor/carpet, +/area/command/bridge) +"lBY" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/aisat/exterior) +"lCe" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plating, +/area/commons/fitness/pool) +"lCf" = ( +/obj/structure/tank_dispenser{ + pixel_x = -1 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/engineering/atmos) +"lDu" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/public/glass{ + name = "Bar" + }, +/turf/open/floor/plasteel, +/area/service/bar) +"lDU" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "lawyer_shutters"; + name = "law office shutters" + }, +/turf/open/floor/plating, +/area/service/lawoffice) +"lEn" = ( +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/cargo/storage) +"lEx" = ( +/turf/closed/wall, +/area/cargo/office) +"lEN" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/dorms) +"lFD" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/structure/chair/stool{ + pixel_y = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/commons/locker) +"lFH" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/suit_storage_unit/atmos, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"lFQ" = ( +/obj/structure/chair/office/dark{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/cargo/sorting) +"lFR" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/vending/clothing, +/turf/open/floor/plasteel/white/corner, +/area/hallway/secondary/entry) +"lFY" = ( +/obj/machinery/door/airlock/highsecurity{ + name = "Gravity Generator Room"; + req_access_txt = "19;23" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/delivery, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/turf/open/floor/plasteel, +/area/engineering/gravity_generator) +"lGk" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/service/kitchen) +"lGv" = ( +/obj/machinery/chem_master/condimaster{ + name = "CondiMaster Neo"; + pixel_x = -4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/service/kitchen) +"lGS" = ( +/obj/docking_port/stationary/public_mining_dock, +/turf/open/floor/plating, +/area/construction/mining/aux_base) +"lHj" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/locker) +"lHN" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + name = "Port to External" + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"lIs" = ( +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/obj/machinery/atmospherics/miner/carbon_dioxide, +/turf/open/floor/engine/co2, +/area/engineering/atmos) +"lIt" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/grunge{ + name = "Quiet Room" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/wood, +/area/service/library) +"lJc" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/turf/open/floor/engine, +/area/engineering/main) +"lJd" = ( +/obj/structure/sign/directions/supply{ + dir = 1; + pixel_y = 8 + }, +/turf/closed/wall, +/area/cargo/office) +"lJu" = ( +/obj/structure/disposalpipe/sorting/wrap{ + dir = 1 + }, +/turf/closed/wall, +/area/cargo/sorting) +"lJx" = ( +/turf/closed/wall/r_wall, +/area/command/gateway) +"lJy" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 10 + }, +/obj/machinery/power/rad_collector/anchored, +/obj/structure/cable, +/obj/structure/window/plasma/reinforced, +/turf/open/floor/engine, +/area/engineering/supermatter) +"lJX" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock{ + name = "Law Office"; + req_access_txt = "38" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/wood, +/area/service/lawoffice) +"lKe" = ( +/obj/structure/chair/stool{ + pixel_y = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"lKv" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/carpet, +/area/service/chapel/main) +"lKz" = ( +/obj/structure/bookcase{ + name = "Forbidden Knowledge" + }, +/turf/open/floor/engine/cult, +/area/service/library) +"lLt" = ( +/obj/machinery/door/poddoor/preopen{ + id = "Engineering"; + name = "Engineering Security Doors" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"lMh" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/aisat/exterior) +"lMo" = ( +/obj/effect/landmark/xmastree, +/turf/open/floor/wood, +/area/service/bar) +"lMz" = ( +/obj/structure/falsewall, +/turf/open/floor/plating, +/area/science/circuit) +"lMJ" = ( +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"lMK" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/cargo/storage) +"lMS" = ( +/obj/item/book/manual/wiki/security_space_law{ + name = "space law"; + pixel_y = 2 + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/item/toy/gun, +/obj/item/restraints/handcuffs, +/obj/structure/table/wood, +/obj/item/clothing/head/collectable/HoS{ + name = "novelty HoS hat" + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 24 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/command/corporate_showroom) +"lMY" = ( +/obj/structure/table, +/obj/item/storage/box/bodybags{ + pixel_x = 2; + pixel_y = 2 + }, +/turf/open/floor/plasteel/dark, +/area/service/chapel/office) +"lNc" = ( +/turf/closed/wall, +/area/service/lawoffice) +"lNN" = ( +/obj/structure/closet/l3closet/scientist, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/bot{ + dir = 1 + }, +/turf/open/floor/plasteel{ + dir = 1 + }, +/area/command/gateway) +"lOi" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/landmark/start/roboticist, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"lOk" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/structure/sign/poster/official/random{ + pixel_y = -32 + }, +/obj/structure/table, +/obj/structure/bedsheetbin/towel, +/turf/open/floor/plasteel/freezer, +/area/commons/toilet/restrooms) +"lOt" = ( +/obj/effect/landmark/xeno_spawn, +/obj/item/bikehorn/rubberducky, +/turf/open/floor/plasteel/freezer, +/area/commons/toilet/restrooms) +"lOv" = ( +/obj/machinery/atmospherics/components/binary/pump{ + name = "Port to Fuel Pipe" + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"lOI" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"lOJ" = ( +/obj/machinery/atmospherics/pipe/manifold/green/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"lPm" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/command/gateway) +"lPr" = ( +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/machinery/power/tracker, +/turf/open/floor/plating/airless, +/area/solars/port/fore) +"lPE" = ( +/obj/structure/chair/stool{ + pixel_y = 8 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/wood, +/area/service/bar) +"lPI" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"lQo" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/item/clothing/mask/pig, +/obj/item/bikehorn, +/obj/structure/table/wood, +/obj/structure/sign/poster/contraband/random{ + pixel_x = -32 + }, +/turf/open/floor/wood, +/area/service/theater) +"lQr" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/turf/open/floor/plating, +/area/construction/storage_wing) +"lQC" = ( +/obj/machinery/door/airlock/mining/glass{ + name = "Mining Dock"; + req_access_txt = "48" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/miningoffice) +"lQV" = ( +/obj/structure/cable/yellow{ + 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/command/heads_quarters/ce) +"lRj" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/grimy, +/area/service/chapel/office) +"lRl" = ( +/obj/structure/cable/white, +/obj/machinery/power/emitter/anchored{ + state = 2 + }, +/turf/open/floor/plating, +/area/engineering/main) +"lRm" = ( +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solars/starboard/aft) +"lRs" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/light_switch{ + pixel_x = 28 + }, +/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/commons/storage/primary) +"lRI" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/commons/dorms) +"lRU" = ( +/obj/structure/closet/athletic_mixed, +/obj/item/toy/poolnoodle/blue, +/turf/open/floor/plating, +/area/commons/fitness/pool) +"lTr" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/corner, +/area/engineering/break_room) +"lTz" = ( +/obj/structure/toilet/secret/low_loot{ + pixel_y = 8 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/newscaster{ + pixel_y = -32 + }, +/obj/effect/landmark/blobstart, +/obj/machinery/button/door{ + id = "Toilet2"; + name = "Lock Control"; + normaldoorcontrol = 1; + pixel_x = -25; + specialfunctions = 4 + }, +/turf/open/floor/plasteel/freezer, +/area/commons/toilet/restrooms) +"lUn" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/plasticflaps/opaque, +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=4"; + dir = 4; + freq = 1400; + location = "Atmospherics" + }, +/obj/machinery/door/poddoor/preopen{ + id = "atmos"; + name = "Atmospherics Blast Door" + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/door/window/westleft{ + req_access_txt = "24" + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"lUs" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/engineering/atmos) +"lUv" = ( +/obj/structure/noticeboard{ + dir = 1; + pixel_y = -32 + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"lUB" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + name = "bridge blast door" + }, +/obj/structure/cable/yellow, +/turf/open/floor/plating, +/area/command/bridge) +"lUC" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/engineering/main) +"lUO" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/wood, +/area/command/corporate_showroom) +"lUV" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/extinguisher_cabinet{ + pixel_x = -27 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/office) +"lVH" = ( +/obj/machinery/suit_storage_unit/standard_unit, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/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/command/storage/eva) +"lVL" = ( +/obj/structure/light_construct{ + dir = 8 + }, +/turf/open/floor/wood, +/area/commons/vacant_room/office) +"lWq" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood, +/area/service/bar) +"lWL" = ( +/obj/machinery/computer/med_data{ + dir = 8 + }, +/obj/structure/window{ + dir = 4 + }, +/obj/item/radio/intercom{ + broadcasting = 1; + frequency = 1485; + listening = 0; + name = "Station Intercom (Medbay)"; + pixel_y = -30 + }, +/turf/open/floor/plasteel/white/side{ + dir = 8 + }, +/area/medical/surgery) +"lWX" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/command/storage/eva) +"lWY" = ( +/obj/machinery/door/airlock/hatch{ + name = "Telecomms Server Room" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/tcommsat/server) +"lXj" = ( +/obj/structure/table, +/obj/item/reagent_containers/glass/beaker{ + pixel_x = 5 + }, +/obj/item/reagent_containers/food/condiment/enzyme{ + layer = 5 + }, +/turf/open/floor/plasteel/cafeteria, +/area/service/kitchen) +"lXo" = ( +/obj/machinery/airalarm{ + pixel_y = 24 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"lXt" = ( +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"lYc" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/airlock/command{ + name = "Chief Engineer's Office"; + req_access_txt = "56" + }, +/obj/effect/turf_decal/bot{ + dir = 1 + }, +/turf/open/floor/plasteel{ + dir = 1 + }, +/area/command/heads_quarters/ce) +"lYe" = ( +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 8; + name = "Air to Distro" + }, +/obj/machinery/airalarm{ + pixel_y = 25 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/camera{ + c_tag = "Atmospherics - Distro Loop" + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/engineering/atmos) +"lYC" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"lYW" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/qm) +"lYZ" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/commons/cryopod) +"lZv" = ( +/turf/open/floor/wood, +/area/commons/vacant_room/office) +"lZE" = ( +/obj/structure/chair/office/dark{ + dir = 8 + }, +/turf/open/floor/wood, +/area/commons/vacant_room/office) +"lZK" = ( +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/pen, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/table/wood, +/turf/open/floor/wood, +/area/service/lawoffice) +"maE" = ( +/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/commons/fitness/recreation) +"maO" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{ + dir = 8 + }, +/obj/machinery/meter/atmos/atmos_waste_loop, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/engineering/atmos) +"maP" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"maQ" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/commons/dorms) +"mbl" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/wood, +/area/commons/vacant_room/office) +"mbw" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/commons/dorms) +"mbJ" = ( +/obj/structure/table, +/obj/item/folder/yellow, +/obj/item/folder/yellow, +/obj/item/storage/firstaid/regular, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/commons/storage/primary) +"mcu" = ( +/obj/structure/rack, +/obj/item/storage/toolbox/emergency{ + pixel_x = 2; + pixel_y = -3 + }, +/obj/item/storage/toolbox/emergency, +/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/cargo/miningoffice) +"mcS" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -28 + }, +/turf/open/floor/plasteel/white/corner, +/area/hallway/secondary/entry) +"mdt" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"med" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel, +/area/command/gateway) +"mei" = ( +/turf/closed/wall, +/area/commons/toilet/auxiliary) +"mex" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Cargo Bay - Port"; + dir = 4 + }, +/obj/machinery/conveyor{ + dir = 1; + id = "QMLoad" + }, +/turf/open/floor/plating, +/area/cargo/storage) +"mfs" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/power/apc{ + areastring = "/area/cargo/office"; + dir = 8; + name = "Cargo Office APC"; + pixel_x = -25 + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/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/cargo/office) +"mfP" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/chair/office/light{ + dir = 1 + }, +/obj/machinery/power/apc{ + areastring = "/area/medical/paramedic"; + dir = 8; + name = "Paramedic Station APC"; + pixel_x = -25 + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/turf/open/floor/plasteel, +/area/medical/paramedic) +"mfS" = ( +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 1; + name = "Cold Loop to Gas" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/engine, +/area/engineering/main) +"mfW" = ( +/obj/structure/toilet/secret/low_loot{ + pixel_y = 8 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/newscaster{ + pixel_y = -32 + }, +/obj/effect/landmark/blobstart, +/obj/machinery/button/door{ + id = "Toilet1"; + name = "Lock Control"; + normaldoorcontrol = 1; + pixel_x = -25; + specialfunctions = 4 + }, +/turf/open/floor/plasteel/freezer, +/area/commons/toilet/restrooms) +"mgb" = ( +/obj/structure/table, +/obj/item/folder/yellow, +/obj/item/pen{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/pen/red, +/obj/machinery/requests_console{ + department = "Cargo Bay"; + departmentType = 2; + pixel_x = 32 + }, +/obj/item/stamp/qm, +/turf/open/floor/plasteel, +/area/cargo/qm) +"mgn" = ( +/obj/machinery/portable_atmospherics/scrubber, +/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/engineering/atmos) +"mgo" = ( +/obj/structure/bodycontainer/crematorium{ + dir = 1; + id = "crematoriumChapel" + }, +/turf/open/floor/plasteel/dark, +/area/service/chapel/office) +"mgw" = ( +/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/command/bridge) +"mgG" = ( +/obj/structure/rack, +/obj/item/stack/medical/mesh, +/obj/item/stack/medical/suture, +/obj/item/reagent_containers/syringe/charcoal, +/obj/item/reagent_containers/syringe/epinephrine{ + pixel_x = -1; + pixel_y = 2 + }, +/obj/effect/turf_decal/bot{ + dir = 1 + }, +/turf/open/floor/plasteel{ + dir = 1 + }, +/area/command/gateway) +"mgI" = ( +/obj/machinery/power/apc{ + areastring = "/area/security/checkpoint/medical"; + dir = 8; + name = "Medical Security Checkpoint APC"; + pixel_x = -25 + }, +/obj/machinery/airalarm{ + pixel_y = 28 + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/structure/closet/secure_closet/security/med, +/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) +"mgJ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/dark, +/area/engineering/gravity_generator) +"mhX" = ( +/obj/structure/table, +/obj/item/weldingtool, +/obj/item/crowbar, +/obj/item/stack/packageWrap, +/obj/item/stack/packageWrap, +/obj/item/stack/packageWrap, +/obj/item/stack/packageWrap, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/brown, +/turf/open/floor/plasteel, +/area/commons/storage/primary) +"mig" = ( +/obj/machinery/vending/clothing, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/commons/locker) +"miq" = ( +/obj/structure/bookcase/random/nonfiction, +/turf/open/floor/wood, +/area/service/library) +"miC" = ( +/turf/open/floor/wood{ + icon_state = "wood-broken3" + }, +/area/command/corporate_showroom) +"mjp" = ( +/obj/machinery/light, +/obj/machinery/camera{ + c_tag = "Kitchen Hatch"; + dir = 1 + }, +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/service/bar) +"mjJ" = ( +/obj/machinery/nuclearbomb/beer{ + pixel_x = 2; + pixel_y = 6 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"mjX" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/sign/poster/official/random{ + pixel_y = -32 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/construction/storage_wing) +"mkz" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/engine/vacuum, +/area/engineering/atmos) +"mkS" = ( +/obj/structure/closet/boxinggloves, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/commons/fitness/recreation) +"mlf" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"mlA" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/closed/wall/r_wall, +/area/engineering/main) +"mlH" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/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/service/hydroponics/garden) +"mlO" = ( +/obj/structure/closet/athletic_mixed, +/obj/effect/turf_decal/tile/neutral{ + 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/commons/fitness/recreation) +"mmy" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"mmH" = ( +/turf/open/floor/carpet, +/area/command/heads_quarters/hop) +"mmJ" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 24 + }, +/turf/open/floor/wood, +/area/commons/vacant_room/office) +"mmU" = ( +/obj/machinery/portable_atmospherics/canister/nitrous_oxide, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"mmX" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/transit_tube/curved{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/aisat/exterior) +"mnr" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/landmark/start/cyborg, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/holopad/secure, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"moO" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/service/chapel/main) +"moT" = ( +/obj/structure/table, +/obj/item/camera, +/turf/open/floor/plasteel, +/area/commons/storage/art) +"moW" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 24 + }, +/obj/machinery/camera{ + c_tag = "Bridge - Port Access"; + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"mpx" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/keycard_auth{ + pixel_x = 26; + pixel_y = -7 + }, +/obj/machinery/computer/med_data/laptop, +/obj/structure/table/glass, +/obj/machinery/button/door{ + id = "cmoprivacy"; + name = "Privacy Shutters Control"; + pixel_x = 26; + pixel_y = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/cafeteria, +/area/command/heads_quarters/cmo) +"mpB" = ( +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/aisat/exterior) +"mpF" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plating, +/area/engineering/main) +"mpO" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/gravity_generator) +"mpT" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"mql" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/storage/satellite) +"mqq" = ( +/obj/structure/chair/comfy/black{ + dir = 1 + }, +/turf/open/floor/carpet, +/area/command/bridge) +"mqC" = ( +/obj/structure/lattice, +/turf/closed/wall, +/area/maintenance/port/aft) +"mqX" = ( +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/mob/living/simple_animal/pet/bumbles, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"mqZ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/wood, +/area/service/library) +"mrr" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/door/window{ + name = "HoP's Desk"; + req_access_txt = "57" + }, +/turf/open/floor/wood, +/area/command/heads_quarters/hop) +"msf" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/turf/open/floor/plating, +/area/command/gateway) +"msu" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/closed/wall/r_wall, +/area/ai_monitored/aisat/exterior) +"msv" = ( +/obj/machinery/door/airlock/command/glass{ + name = "Gravity Generator Area"; + req_access_txt = "19; 61" + }, +/turf/open/floor/plasteel/dark, +/area/engineering/gravity_generator) +"msx" = ( +/obj/machinery/holopad, +/turf/open/floor/carpet, +/area/command/bridge) +"msI" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/service/bar) +"mte" = ( +/obj/machinery/light/small, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -30 + }, +/turf/open/floor/wood, +/area/service/bar) +"mtf" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/wood, +/area/service/bar) +"mtH" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/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/service/hydroponics) +"mtJ" = ( +/obj/structure/sign/warning/securearea{ + pixel_y = 32 + }, +/obj/structure/transit_tube/station/reverse/flipped{ + dir = 1 + }, +/obj/structure/transit_tube_pod{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/break_room) +"mtM" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + name = "Pure to Mix" + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"muJ" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/command/gateway) +"mvj" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/closed/wall, +/area/hallway/secondary/service) +"mvN" = ( +/turf/closed/wall, +/area/construction/storage_wing) +"mvY" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/aisat/exterior) +"mwg" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/aisat/exterior) +"mwM" = ( +/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/office) +"mwN" = ( +/obj/machinery/door/window/eastright{ + dir = 1; + name = "Hydroponics Delivery"; + req_access_txt = "35" + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"mwP" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/obj/effect/landmark/start/botanist, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"mxh" = ( +/obj/structure/table/wood, +/obj/machinery/button/door{ + id = "corporate_privacy"; + name = "corporate showroom shutters control"; + pixel_x = 28; + req_access_txt = "19" + }, +/obj/item/poster/random_official, +/obj/item/poster/random_official, +/obj/item/poster/random_official, +/obj/item/poster/random_official, +/obj/item/poster/random_official, +/obj/item/paicard{ + desc = "A real Nanotrasen success, these personal AIs provide all of the companionship of an AI without any law related red-tape."; + name = "Nanotrasen-brand personal AI device exhibit" + }, +/turf/open/floor/carpet, +/area/command/corporate_showroom) +"mxo" = ( +/obj/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/aisat/exterior) +"mxL" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 4; + sortType = 7 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/office) +"myk" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + name = "bridge blast door" + }, +/turf/open/floor/plating, +/area/command/bridge) +"myO" = ( +/obj/structure/table, +/obj/item/storage/belt/utility, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/obj/item/storage/box/lights/mixed, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/storage/primary) +"mze" = ( +/obj/structure/window/reinforced, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/yellow/visible, +/turf/open/floor/plasteel/cafeteria, +/area/engineering/atmos) +"mzh" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"mzp" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/obj/structure/dresser, +/turf/open/floor/carpet, +/area/commons/dorms) +"mzq" = ( +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"mzH" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/engineering/main) +"mAa" = ( +/obj/structure/table/glass, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/item/storage/secure/briefcase, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/cafeteria, +/area/command/heads_quarters/cmo) +"mAj" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/command/heads_quarters/ce) +"mAV" = ( +/obj/machinery/computer/station_alert, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"mBk" = ( +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/machinery/status_display/evac{ + pixel_y = 32 + }, +/obj/machinery/camera{ + c_tag = "Engineering - Power Monitoring" + }, +/obj/machinery/modular_computer/console/preset/engineering, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"mBW" = ( +/turf/open/floor/plasteel, +/area/commons/locker) +"mCa" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/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/command/bridge) +"mCT" = ( +/obj/structure/table, +/obj/machinery/recharger{ + pixel_y = 4 + }, +/turf/open/floor/plasteel, +/area/security/office) +"mDc" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/machinery/light_switch{ + pixel_x = -26 + }, +/turf/open/floor/plasteel/freezer, +/area/commons/toilet/restrooms) +"mDk" = ( +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/engine, +/area/engineering/main) +"mDF" = ( +/obj/structure/sign/map/left{ + desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; + icon_state = "map-left-MS"; + pixel_y = 32 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private) +"mDR" = ( +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Chief Engineer's Desk"; + departmentType = 3; + name = "Chief Engineer RC"; + pixel_y = 32 + }, +/obj/machinery/computer/card/minor/ce, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/ce) +"mDX" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/service/bar) +"mEe" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/spawner/lootdrop/maintenance, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/port) +"mEr" = ( +/obj/machinery/status_display/supply{ + pixel_x = 32 + }, +/obj/machinery/computer/card/minor/qm{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/qm) +"mEw" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/engine/plasma, +/area/engineering/atmos) +"mEE" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/light/small, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/engineering/gravity_generator) +"mER" = ( +/obj/structure/table, +/obj/item/clothing/head/soft/grey{ + pixel_x = -2; + pixel_y = 3 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/locker) +"mFr" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/plasteel, +/area/engineering/main) +"mFH" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 28 + }, +/obj/structure/reagent_dispensers/cooking_oil, +/turf/open/floor/plasteel/showroomfloor, +/area/service/kitchen) +"mGL" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/command/storage/eva) +"mGM" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "kitchen"; + name = "Serving Hatch" + }, +/obj/item/storage/fancy/donut_box, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/service/kitchen) +"mGQ" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"mHn" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/closed/wall, +/area/engineering/atmos) +"mHo" = ( +/obj/structure/sign/directions/security{ + dir = 1; + pixel_y = 8 + }, +/obj/structure/sign/directions/engineering{ + dir = 4 + }, +/obj/structure/sign/directions/command{ + pixel_y = -8 + }, +/turf/closed/wall/r_wall, +/area/commons/storage/tools) +"mHR" = ( +/obj/machinery/photocopier{ + pixel_y = 3 + }, +/turf/open/floor/wood, +/area/service/library) +"mHZ" = ( +/obj/effect/landmark/xeno_spawn, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/commons/dorms) +"mIt" = ( +/obj/structure/showcase/cyborg/old{ + dir = 8; + pixel_x = 9; + pixel_y = 2 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/storage/satellite) +"mIE" = ( +/turf/open/floor/plasteel, +/area/cargo/storage) +"mIG" = ( +/obj/machinery/hydroponics/constructable, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"mIJ" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 5 + }, +/turf/open/space, +/area/space/nearstation) +"mIW" = ( +/obj/machinery/computer/arcade, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_y = 32 + }, +/turf/open/floor/wood, +/area/service/bar) +"mJg" = ( +/obj/structure/table/wood, +/obj/item/folder/blue, +/obj/item/folder/blue, +/obj/item/folder/blue, +/obj/item/folder/blue, +/obj/item/stamp/law, +/turf/open/floor/wood, +/area/service/lawoffice) +"mJR" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/engineering/main) +"mJX" = ( +/obj/structure/lattice/catwalk, +/obj/item/stack/cable_coil, +/turf/open/space, +/area/solars/starboard/aft) +"mKn" = ( +/obj/structure/table/reinforced, +/obj/item/folder/yellow, +/obj/item/pen{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white/corner, +/area/cargo/sorting) +"mKu" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/circuit/green{ + luminosity = 2 + }, +/area/ai_monitored/command/nuke_storage) +"mKw" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/turf/open/floor/plating, +/area/engineering/main) +"mKI" = ( +/obj/structure/rack, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -26 + }, +/obj/item/clothing/gloves/color/fyellow, +/obj/item/clothing/suit/hazardvest, +/obj/item/multitool, +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/storage/tools) +"mKW" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/cargo/storage) +"mLh" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/wood, +/area/service/library) +"mLk" = ( +/turf/closed/wall, +/area/command/heads_quarters/captain/private) +"mLH" = ( +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solars/port/fore) +"mMn" = ( +/turf/open/floor/plasteel, +/area/engineering/atmos) +"mMO" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/cargo/storage) +"mMU" = ( +/obj/machinery/camera{ + c_tag = "Atmospherics Tank - N2O"; + dir = 8 + }, +/turf/open/floor/engine/n2o, +/area/engineering/atmos) +"mMW" = ( +/obj/structure/safe, +/obj/item/storage/backpack/duffelbag/syndie/hitman{ + contents = newlist(/obj/item/clothing/suit/armor/vest,/obj/item/gun/ballistic/automatic/pistol,/obj/item/suppressor,/obj/item/melee/classic_baton/telescopic,/obj/item/clothing/mask/balaclava,/obj/item/bodybag,/obj/item/soap/nanotrasen) + }, +/obj/item/card/id/silver/reaper, +/obj/item/lazarus_injector, +/obj/item/gun/energy/e_gun/advtaser, +/obj/item/clothing/neck/stethoscope, +/obj/item/book{ + desc = "An undeniably handy book."; + icon_state = "bookknock"; + name = "A Simpleton's Guide to Safe-cracking with Stethoscopes" + }, +/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/ai_monitored/command/nuke_storage) +"mNV" = ( +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -22 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"mNX" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/dark, +/area/engineering/gravity_generator) +"mOc" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/service/chapel/main) +"mPm" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/obj/structure/chair/stool{ + pixel_y = 8 + }, +/turf/open/floor/wood, +/area/service/bar) +"mPo" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/office) +"mPv" = ( +/obj/structure/chair/stool/bar, +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/service/bar) +"mPQ" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/cargo/storage) +"mQW" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/service/theater) +"mRb" = ( +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"mRE" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"mRZ" = ( +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/computer/bounty, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/qm) +"mSd" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"mSf" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/circuit/green{ + luminosity = 2 + }, +/area/ai_monitored/command/nuke_storage) +"mSB" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"mSL" = ( +/obj/structure/cable, +/obj/machinery/power/solar{ + id = "aftport"; + name = "Aft-Port Solar Array" + }, +/turf/open/floor/plasteel/airless/solarpanel, +/area/solars/port/aft) +"mTr" = ( +/obj/structure/toilet/secret/low_loot{ + pixel_y = 8 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/newscaster{ + pixel_y = -32 + }, +/obj/machinery/button/door{ + id = "Toilet3"; + name = "Lock Control"; + normaldoorcontrol = 1; + pixel_x = -25; + specialfunctions = 4 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel/freezer, +/area/commons/toilet/restrooms) +"mTL" = ( +/obj/machinery/atmospherics/pipe/simple, +/obj/machinery/meter, +/obj/structure/grille, +/turf/closed/wall/r_wall, +/area/engineering/atmos) +"mTN" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"mUa" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/camera/autoname{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/carpet, +/area/service/library) +"mUZ" = ( +/obj/structure/table/reinforced, +/obj/item/clipboard, +/obj/item/paper/monitorkey, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/command/heads_quarters/ce) +"mVa" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/commons/storage/primary) +"mVL" = ( +/turf/closed/wall/mineral/plastitanium, +/area/engineering/break_room) +"mWg" = ( +/obj/structure/girder, +/obj/structure/grille, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/port/aft) +"mWm" = ( +/obj/structure/chair/stool, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/chapel, +/area/service/chapel/main) +"mWu" = ( +/obj/machinery/air_sensor/atmos/toxin_tank, +/turf/open/floor/engine/plasma, +/area/engineering/atmos) +"mWy" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/turf/open/floor/engine, +/area/engineering/main) +"mWA" = ( +/obj/structure/table/wood, +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_x = -32 + }, +/obj/effect/decal/cleanable/cobweb, +/obj/item/flashlight/lamp/green{ + pixel_x = 1; + pixel_y = 5 + }, +/turf/open/floor/wood, +/area/service/library) +"mWP" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/service/chapel/main) +"mXi" = ( +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private) +"mXH" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/cafeteria, +/area/command/heads_quarters/cmo) +"mXL" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/item/storage/firstaid/regular, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/cargo/storage) +"mYt" = ( +/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/command/gateway) +"mYT" = ( +/obj/machinery/power/apc{ + areastring = "/area/medical/chemistry"; + dir = 8; + name = "Chemistry APC"; + pixel_x = -25 + }, +/obj/structure/closet/secure_closet/chemical{ + pixel_x = -3 + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"mYU" = ( +/obj/item/stack/ore/iron, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/cargo/miningoffice) +"mZA" = ( +/obj/machinery/door/window/westleft{ + dir = 4; + name = "Bridge Deliveries"; + req_access_txt = "19" + }, +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + name = "bridge blast door" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/command/bridge) +"mZD" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"mZQ" = ( +/obj/structure/chair/office/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/landmark/start/medical_doctor, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/treatment_center) +"mZT" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/engine, +/area/engineering/main) +"naf" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/turf/closed/wall, +/area/engineering/atmos) +"nas" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/cargo/office) +"naO" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"naS" = ( +/obj/machinery/air_sensor/atmos/carbon_tank, +/turf/open/floor/engine/co2, +/area/engineering/atmos) +"nbl" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/carpet, +/area/service/theater) +"nbs" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/holopad, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/office) +"ncN" = ( +/obj/vehicle/ridden/secway, +/obj/item/key/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/office) +"ndd" = ( +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_x = -32 + }, +/obj/machinery/camera/autoname{ + dir = 4 + }, +/obj/structure/displaycase/trophy, +/turf/open/floor/wood, +/area/service/library) +"nee" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/carpet, +/area/command/heads_quarters/hos) +"neP" = ( +/obj/machinery/atmospherics/components/binary/pump, +/turf/closed/wall/r_wall, +/area/engineering/atmos) +"nfs" = ( +/obj/structure/mirror{ + pixel_x = 28 + }, +/turf/open/floor/plating, +/area/commons/toilet/auxiliary) +"nfO" = ( +/obj/machinery/door/airlock{ + id_tag = "Toilet1"; + name = "Unit 1" + }, +/turf/open/floor/plasteel/freezer, +/area/commons/toilet/restrooms) +"nfP" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/airlock/command{ + name = "E.V.A. Storage"; + req_access_txt = "18" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/ai_monitored/command/storage/eva) +"ngZ" = ( +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = 21 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Club - Fore" + }, +/turf/open/floor/wood, +/area/service/bar) +"nho" = ( +/obj/item/latexballon, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"nhy" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"nhL" = ( +/obj/machinery/airalarm{ + pixel_y = 28 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel, +/area/cargo/warehouse) +"nia" = ( +/obj/machinery/camera{ + c_tag = "Club - Aft"; + dir = 1 + }, +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_y = -29 + }, +/obj/item/clothing/mask/cigarette/pipe, +/obj/structure/table/wood, +/turf/open/floor/carpet, +/area/service/bar) +"nid" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/engineering/main) +"nik" = ( +/obj/effect/decal/cleanable/cobweb, +/obj/item/kirbyplants{ + icon_state = "plant-20"; + pixel_y = 3 + }, +/obj/effect/turf_decal/bot{ + dir = 1 + }, +/turf/open/floor/plasteel{ + dir = 1 + }, +/area/engineering/main) +"nix" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat/foyer) +"njt" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/commons/locker) +"njB" = ( +/obj/structure/closet/masks, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/commons/fitness/recreation) +"njD" = ( +/obj/structure/table, +/obj/item/storage/dice, +/turf/open/floor/plasteel, +/area/commons/dorms) +"nkn" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/carpet, +/area/service/library) +"nkq" = ( +/obj/structure/table, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -26 + }, +/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/cargo/office) +"nkB" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics/garden) +"nkQ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/service/janitor) +"nkV" = ( +/obj/effect/spawner/structure/window/reinforced/tinted/electrochromatic{ + electrochromatic_id = "!interrogation_room" + }, +/turf/open/floor/plating, +/area/security/office) +"nln" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/space, +/area/solars/starboard/aft) +"nlr" = ( +/obj/structure/chair/office/dark{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"nmt" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/holopad, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"nmx" = ( +/obj/structure/table, +/obj/item/folder/red, +/obj/item/pen, +/obj/item/storage/box/donkpockets, +/turf/open/floor/plasteel, +/area/security/office) +"nmz" = ( +/turf/closed/wall/r_wall, +/area/command/heads_quarters/ce) +"nmK" = ( +/obj/structure/rack, +/obj/item/storage/toolbox/electrical{ + pixel_x = 1; + pixel_y = -1 + }, +/obj/item/clothing/gloves/color/yellow, +/obj/item/t_scanner, +/obj/item/multitool, +/turf/open/floor/plasteel/dark, +/area/engineering/storage/tech) +"nmM" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/window{ + dir = 8; + name = "MiniSat Airlock Access" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/aisat/exterior) +"nmO" = ( +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/machinery/power/solar{ + id = "foreport"; + name = "Fore-Port Solar Array" + }, +/turf/open/floor/plasteel/airless/solarpanel, +/area/solars/port/fore) +"nnB" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"nnK" = ( +/obj/item/stack/sheet/glass/fifty, +/obj/item/paper_bin, +/obj/item/pen, +/obj/structure/table/reinforced, +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 32 + }, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"noG" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/science/circuit) +"noS" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/command/gateway) +"npi" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/turf/open/floor/engine, +/area/engineering/main) +"npo" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/effect/landmark/xeno_spawn, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/wood, +/area/service/bar) +"npE" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/freezer, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"nqx" = ( +/obj/machinery/suit_storage_unit/standard_unit, +/obj/machinery/light_switch{ + pixel_x = -8; + 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/ai_monitored/command/storage/eva) +"nqK" = ( +/obj/structure/dresser, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/turf/open/floor/carpet, +/area/commons/dorms) +"nqT" = ( +/obj/structure/table, +/obj/item/clothing/under/suit/black/skirt{ + pixel_x = 3; + pixel_y = 1 + }, +/obj/item/clothing/under/suit/black_really{ + pixel_x = -2 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = 28 + }, +/obj/item/clothing/accessory/waistcoat, +/obj/item/clothing/suit/toggle/lawyer/black, +/obj/item/clothing/under/suit/red, +/obj/item/clothing/neck/tie/black, +/obj/item/clothing/under/suit/black, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/cafeteria, +/area/commons/dorms) +"nry" = ( +/obj/machinery/door/airlock{ + id_tag = "AuxToilet1"; + name = "Unit 1" + }, +/turf/open/floor/plasteel, +/area/commons/toilet/auxiliary) +"nsA" = ( +/mob/living/simple_animal/cow{ + name = "Betsy"; + real_name = "Betsy" + }, +/turf/open/floor/grass, +/area/service/hydroponics/garden) +"nvq" = ( +/obj/effect/landmark/start/lawyer, +/obj/structure/chair/office/dark{ + dir = 4 + }, +/obj/item/radio/intercom{ + dir = 8; + name = "Station Intercom (General)"; + pixel_x = -28 + }, +/turf/open/floor/wood, +/area/service/lawoffice) +"nwc" = ( +/mob/living/simple_animal/sloth/citrus, +/turf/open/floor/plasteel, +/area/cargo/storage) +"nwG" = ( +/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/commons/fitness/recreation) +"nwH" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/junction/flip{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/dorms) +"nwU" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"nxb" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/engine_waste, +/turf/open/floor/plating/airless, +/area/engineering/main) +"nxc" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/turf/open/floor/engine, +/area/engineering/main) +"nxA" = ( +/obj/machinery/computer/security/telescreen/interrogation{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/grimy, +/area/security/office) +"nxP" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Library" + }, +/turf/open/floor/wood, +/area/service/library) +"nxU" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/simple/orange/visible, +/turf/open/floor/engine, +/area/engineering/main) +"nyg" = ( +/obj/machinery/door/airlock{ + id_tag = "Cabin4"; + name = "Cabin 5" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/wood, +/area/commons/dorms) +"nyo" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/service) +"nzp" = ( +/obj/structure/urinal{ + pixel_y = 29 + }, +/turf/open/floor/plating, +/area/commons/toilet/auxiliary) +"nzz" = ( +/obj/machinery/vending/boozeomat, +/turf/closed/wall, +/area/service/bar) +"nzH" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/grass, +/area/service/hydroponics/garden) +"nzZ" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "packageExternal" + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plating, +/area/cargo/sorting) +"nAl" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/lattice/catwalk, +/obj/structure/window/reinforced, +/turf/open/space, +/area/ai_monitored/aisat/exterior) +"nAB" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/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/engineering/gravity_generator) +"nAD" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/chair/office/dark, +/obj/effect/landmark/start/cargo_technician, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white/corner, +/area/cargo/sorting) +"nAG" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"nBx" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/commons/fitness/pool) +"nBJ" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"nBX" = ( +/obj/structure/table/wood, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/turf/open/floor/wood, +/area/service/library) +"nDn" = ( +/turf/closed/wall/r_wall, +/area/command/corporate_showroom) +"nEw" = ( +/obj/machinery/power/terminal{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/ai_slipper{ + uses = 10 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/storage/satellite) +"nEx" = ( +/obj/machinery/bookbinder, +/turf/open/floor/wood, +/area/service/library) +"nFp" = ( +/obj/machinery/air_sensor/atmos/nitrous_tank, +/turf/open/floor/engine/n2o, +/area/engineering/atmos) +"nFz" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/engineering/main) +"nFG" = ( +/obj/structure/table/reinforced, +/obj/item/clothing/head/that, +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/service/bar) +"nFS" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/machinery/vending/wardrobe/cargo_wardrobe, +/turf/open/floor/plasteel, +/area/cargo/storage) +"nGl" = ( +/obj/structure/mirror{ + pixel_y = 28 + }, +/obj/structure/sink{ + pixel_y = 17 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/captain/private) +"nGn" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/northleft{ + dir = 4; + name = "Atmospherics Desk"; + req_access_txt = "24" + }, +/obj/item/folder/yellow, +/obj/item/folder/yellow, +/obj/item/pen, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/preopen{ + id = "atmos"; + name = "Atmospherics Blast Door" + }, +/obj/effect/turf_decal/delivery, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"nGs" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/wood, +/area/service/bar) +"nHn" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/green/visible{ + dir = 1 + }, +/turf/open/floor/engine, +/area/engineering/main) +"nHL" = ( +/obj/machinery/cryopod, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/commons/cryopod) +"nHM" = ( +/obj/item/radio/intercom{ + broadcasting = 1; + frequency = 1480; + name = "Confessional Intercom"; + pixel_x = 25 + }, +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/landmark/start/chaplain, +/turf/open/floor/plasteel/dark, +/area/service/chapel/office) +"nIQ" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/storage/primary) +"nIU" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics/garden) +"nJr" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"nKi" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "QMLoad" + }, +/turf/open/floor/plating, +/area/cargo/storage) +"nKs" = ( +/obj/machinery/camera/autoname{ + dir = 4 + }, +/obj/item/book/manual/hydroponics_pod_people, +/obj/item/paper/guides/jobs/hydroponics, +/obj/machinery/requests_console{ + department = "Hydroponics"; + departmentType = 2; + pixel_x = -31; + pixel_y = -2 + }, +/obj/structure/table/glass, +/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, +/area/service/hydroponics) +"nKP" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Primary Tool Storage" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/storage/primary) +"nKU" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/heat_exchanging/junction{ + dir = 4 + }, +/turf/open/floor/plating, +/area/science/circuit) +"nLx" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/window{ + base_state = "right"; + dir = 8; + icon_state = "right"; + name = "MiniSat Airlock Access" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/aisat/exterior) +"nLy" = ( +/obj/structure/chair/comfy/brown, +/turf/open/floor/engine/cult, +/area/service/library) +"nLA" = ( +/obj/structure/table, +/obj/item/analyzer, +/obj/item/healthanalyzer, +/obj/machinery/camera/autoname{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/storage/tech) +"nLQ" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solars/starboard/fore) +"nLT" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"nMV" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/command/gateway) +"nNm" = ( +/obj/effect/landmark/blobstart, +/turf/open/floor/plating, +/area/engineering/main) +"nOm" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/commons/dorms) +"nOq" = ( +/obj/effect/landmark/start/chaplain, +/turf/open/floor/plasteel/dark, +/area/service/chapel/main) +"nOJ" = ( +/turf/open/floor/engine, +/area/engineering/supermatter) +"nOM" = ( +/obj/machinery/newscaster{ + pixel_x = -32 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/wood, +/area/service/library) +"nPc" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall, +/area/science/xenobiology) +"nPf" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"nPn" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -27 + }, +/obj/structure/closet/secure_closet/freezer/meat, +/turf/open/floor/plasteel/showroomfloor, +/area/service/kitchen) +"nPo" = ( +/obj/structure/table, +/obj/item/stack/packageWrap, +/obj/item/hand_labeler, +/obj/machinery/button/door{ + id = "kitchenhydro"; + name = "Service Shutter Control"; + pixel_y = -24; + req_access_txt = "28" + }, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/service/kitchen) +"nPJ" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/engineering/gravity_generator) +"nPL" = ( +/obj/structure/table, +/obj/item/folder/yellow, +/obj/item/pen, +/obj/machinery/requests_console{ + department = "Mining"; + pixel_y = -30 + }, +/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/cargo/miningoffice) +"nQo" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/office) +"nQt" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/command/heads_quarters/ce) +"nQV" = ( +/turf/open/floor/plasteel/grimy, +/area/security/office) +"nQW" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics/garden) +"nSn" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/holopad, +/turf/open/floor/carpet, +/area/command/heads_quarters/hop) +"nSv" = ( +/turf/closed/wall, +/area/command/heads_quarters/rd) +"nSP" = ( +/obj/structure/rack, +/obj/machinery/power/apc{ + areastring = "/area/cargo/storage"; + name = "Cargo Bay APC"; + pixel_x = 1; + pixel_y = -24 + }, +/obj/structure/cable/yellow, +/obj/machinery/light, +/obj/item/hand_labeler, +/obj/item/hand_labeler, +/obj/item/screwdriver{ + pixel_y = 10 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/cargo/storage) +"nTU" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/mining{ + name = "Cargo Bay"; + req_one_access_txt = "48;50" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/cargo/office) +"nTV" = ( +/obj/structure/table/wood, +/obj/item/paper_bin{ + pixel_x = -2; + pixel_y = 6 + }, +/turf/open/floor/carpet, +/area/commons/vacant_room/office) +"nUa" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering{ + name = "Telecomms Storage"; + req_access_txt = "61" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/engineering/storage/tcomms) +"nUi" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/machinery/door/poddoor/preopen{ + id = "cmoprivacy"; + name = "privacy shutter" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/command/heads_quarters/cmo) +"nUn" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/cargo/storage) +"nUs" = ( +/obj/machinery/vending/cola/random, +/turf/open/floor/carpet, +/area/service/bar) +"nUt" = ( +/obj/structure/fireaxecabinet{ + pixel_y = -32 + }, +/obj/item/paper_bin{ + pixel_x = -2; + pixel_y = 7 + }, +/obj/item/pen{ + pixel_y = 3 + }, +/obj/machinery/light_switch{ + pixel_x = 28 + }, +/obj/structure/table/glass, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"nUC" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"nUI" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/office) +"nVE" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/closet/wardrobe/pjs, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/commons/dorms) +"nVX" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/closet/firecloset, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"nWa" = ( +/obj/structure/reagent_dispensers/fueltank, +/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/commons/storage/tools) +"nWb" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"nWX" = ( +/obj/machinery/shower{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/open/floor/plating, +/area/commons/toilet/auxiliary) +"nXe" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-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/command/heads_quarters/hos) +"nXL" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/cargo/office) +"nXO" = ( +/obj/structure/lattice, +/turf/closed/wall/r_wall, +/area/engineering/break_room) +"nYk" = ( +/obj/machinery/shower{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel/freezer, +/area/commons/toilet/restrooms) +"nYm" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + name = "O2 to Pure" + }, +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"nYq" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"nYJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/carpet, +/area/service/chapel/main) +"nYK" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/chair/comfy/black{ + dir = 4 + }, +/turf/open/floor/plasteel/chapel{ + dir = 1 + }, +/area/service/chapel/main) +"nZd" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ + dir = 8 + }, +/turf/open/floor/engine, +/area/engineering/main) +"nZv" = ( +/obj/structure/toilet/secret/low_loot{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/newscaster{ + pixel_x = 32 + }, +/obj/machinery/button/door{ + id = "Toilet4"; + name = "Lock Control"; + normaldoorcontrol = 1; + pixel_y = -25; + specialfunctions = 4 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel/freezer, +/area/commons/toilet/restrooms) +"nZB" = ( +/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/service/hydroponics) +"nZE" = ( +/turf/open/floor/plasteel, +/area/service/hydroponics) +"nZH" = ( +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=8"; + dir = 8; + freq = 1400; + location = "Kitchen" + }, +/obj/structure/plasticflaps/opaque, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/bot{ + dir = 1 + }, +/turf/open/floor/plasteel{ + dir = 1 + }, +/area/service/kitchen) +"nZI" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/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/treatment_center) +"nZS" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/command/teleporter) +"oag" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"oao" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/commons/fitness/pool) +"oav" = ( +/obj/structure/rack, +/obj/item/clothing/suit/hazardvest, +/obj/item/clothing/suit/hazardvest, +/obj/item/clothing/head/hardhat/orange{ + name = "protective hat" + }, +/obj/item/clothing/head/hardhat/orange{ + name = "protective hat" + }, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/effect/turf_decal/bot{ + dir = 1 + }, +/turf/open/floor/plasteel{ + dir = 1 + }, +/area/command/gateway) +"oay" = ( +/obj/machinery/power/apc/highcap/ten_k{ + areastring = "/area/engineering/atmos"; + dir = 1; + name = "Atmospherics APC"; + pixel_y = 23 + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/machinery/light_switch{ + pixel_x = -26 + }, +/obj/machinery/pipedispenser/disposal/transit_tube, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"oaA" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/construction/storage_wing) +"oaZ" = ( +/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/service/hydroponics) +"obb" = ( +/obj/structure/target_stake, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/circuit) +"obX" = ( +/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/default; + width = 9 + }, +/turf/open/floor/plating, +/area/construction/mining/aux_base) +"ocB" = ( +/turf/closed/wall, +/area/engineering/gravity_generator) +"ocS" = ( +/turf/closed/wall/r_wall, +/area/engineering/main) +"ocT" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/table/reinforced, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/item/stock_parts/cell/high, +/obj/item/stock_parts/cell/high, +/obj/machinery/computer/security/telescreen/circuitry{ + pixel_y = 30 + }, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"ocU" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/construction/storage_wing) +"ocV" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/wood, +/area/service/bar) +"oda" = ( +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + name = "bridge blast door" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/airlock/command/glass{ + name = "Bridge Access"; + req_access_txt = "19" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + 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/command/bridge) +"odb" = ( +/obj/structure/filingcabinet/filingcabinet, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -28 + }, +/obj/machinery/camera{ + c_tag = "Cargo - Mailroom"; + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white/corner, +/area/cargo/sorting) +"odn" = ( +/obj/machinery/computer/atmos_control/tank/carbon_tank{ + dir = 8 + }, +/obj/structure/window/reinforced{ + 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/yellow/visible, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"odq" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall/r_wall, +/area/engineering/atmos) +"ods" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable, +/turf/open/space, +/area/solars/starboard/aft) +"odv" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"odA" = ( +/obj/structure/table, +/obj/item/stack/cable_coil{ + pixel_x = 2; + pixel_y = -2 + }, +/obj/item/stack/cable_coil{ + pixel_x = 3; + pixel_y = 5 + }, +/obj/item/screwdriver{ + pixel_y = 16 + }, +/obj/item/stock_parts/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/storage/primary) +"oek" = ( +/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 = 4 + }, +/turf/open/floor/engine, +/area/engineering/supermatter) +"oen" = ( +/obj/structure/filingcabinet, +/obj/item/folder/documents, +/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/ai_monitored/command/nuke_storage) +"oeu" = ( +/obj/machinery/camera{ + c_tag = "Secure Tech Storage"; + dir = 8 + }, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_x = 29 + }, +/obj/machinery/light/small{ + 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/engineering/storage/tech) +"oeQ" = ( +/obj/structure/rack, +/obj/item/clothing/mask/gas, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"ofn" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/office) +"ofp" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/machinery/light/small, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -28 + }, +/obj/vehicle/ridden/janicart, +/obj/item/key/janitor, +/turf/open/floor/plating, +/area/service/janitor) +"ofE" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=14.9-CrewQuarters-Central"; + location = "14.8-Dorms-Lockers" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/commons/dorms) +"ofI" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/cargo/storage) +"ogf" = ( +/obj/structure/table/wood, +/obj/item/stamp/captain, +/obj/machinery/computer/security/wooden_tv, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private) +"ohj" = ( +/obj/item/integrated_electronics/analyzer, +/obj/item/integrated_electronics/debugger, +/obj/item/integrated_electronics/wirer, +/obj/structure/table/reinforced, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"ohx" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/aisat/exterior) +"oiv" = ( +/obj/structure/sign/warning/pods, +/turf/closed/wall, +/area/commons/locker) +"oiY" = ( +/obj/machinery/light, +/obj/structure/rack, +/obj/item/storage/toolbox/emergency, +/obj/item/storage/toolbox/emergency{ + pixel_x = -2; + pixel_y = -3 + }, +/obj/item/wrench, +/obj/item/multitool, +/obj/machinery/newscaster{ + pixel_y = -30 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"ojs" = ( +/obj/structure/table/wood, +/obj/machinery/newscaster/security_unit{ + pixel_x = -30; + pixel_y = 1 + }, +/obj/item/card/id/captains_spare, +/turf/open/floor/carpet, +/area/command/heads_quarters/captain/private) +"ojC" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/storage/primary) +"ojI" = ( +/obj/machinery/camera{ + c_tag = "Cargo Bay - Storage Wing Entrance"; + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/construction/storage_wing) +"okb" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/commons/cryopod) +"okm" = ( +/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ + dir = 8 + }, +/obj/machinery/meter, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"okn" = ( +/obj/structure/table/wood, +/obj/machinery/recharger, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hos) +"okp" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/airalarm{ + pixel_y = 28 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/office) +"okX" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/item/crowbar, +/obj/machinery/door/poddoor/shutters/radiation/preopen{ + id = "engsm"; + name = "Radiation Chamber Shutters" + }, +/turf/open/floor/plating, +/area/engineering/supermatter) +"olc" = ( +/obj/machinery/light/small, +/obj/machinery/recharge_station, +/turf/open/floor/plasteel/freezer, +/area/commons/toilet/restrooms) +"olw" = ( +/obj/machinery/door/airlock/atmos/glass{ + name = "Atmospherics Monitoring"; + req_access_txt = "24" + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"olW" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"omb" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/dark/visible{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"omQ" = ( +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/turf/open/floor/plating, +/area/engineering/main) +"omS" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/cargo/storage) +"omU" = ( +/obj/machinery/door/morgue{ + name = "Confession Booth (Chaplain)"; + req_access_txt = "22" + }, +/turf/open/floor/plasteel/dark, +/area/service/chapel/office) +"oni" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"onz" = ( +/obj/structure/table, +/obj/item/canvas/twentythreeXtwentythree, +/obj/item/canvas/twentythreeXtwentythree, +/obj/item/canvas/twentythreeXnineteen, +/obj/item/canvas/twentythreeXnineteen, +/obj/item/canvas/nineteenXnineteen, +/obj/item/canvas/nineteenXnineteen, +/obj/item/storage/crayons, +/obj/item/storage/crayons, +/obj/item/storage/crayons, +/turf/open/floor/plasteel, +/area/commons/storage/art) +"ooc" = ( +/obj/machinery/shieldwallgen, +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 2 + }, +/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/command/teleporter) +"ooe" = ( +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/turf/open/floor/plasteel, +/area/security/office) +"ooo" = ( +/obj/machinery/bluespace_beacon, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/command/teleporter) +"oop" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/commons/locker) +"ooB" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/dark/visible{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"ooH" = ( +/obj/structure/disposalpipe/segment, +/turf/closed/wall, +/area/cargo/sorting) +"opc" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"opk" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/service/kitchen) +"opw" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 5 + }, +/turf/open/floor/engine, +/area/engineering/main) +"opx" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/wood, +/area/command/corporate_showroom) +"opM" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/rd) +"oqK" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Cargo Bay - Fore" + }, +/obj/structure/sign/map/right{ + desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; + icon_state = "map-right-MS"; + pixel_y = 32 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"oqV" = ( +/obj/machinery/vending/assist, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/sign/poster/official/random{ + pixel_y = 32 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/storage/primary) +"orA" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/machinery/light_switch{ + pixel_x = 8; + pixel_y = 30 + }, +/turf/open/floor/plasteel, +/area/service/janitor) +"orJ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall, +/area/security/brig) +"osB" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/external{ + name = "Escape Pod Four"; + req_access_txt = "32" + }, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"osD" = ( +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solars/starboard/fore) +"osR" = ( +/obj/machinery/light/small, +/turf/open/floor/plating, +/area/cargo/storage) +"otk" = ( +/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/cargo/storage) +"otq" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/ce) +"ott" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command/gateway) +"our" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=14.3-Lockers-Dorms"; + location = "14.2-Central-CrewQuarters" + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/commons/locker) +"out" = ( +/obj/structure/closet/wardrobe/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/commons/locker) +"ouC" = ( +/obj/machinery/power/apc{ + areastring = "/area/engineering/storage/tech"; + dir = 8; + name = "Tech Storage APC"; + pixel_x = -25 + }, +/obj/structure/cable/yellow{ + icon_state = "0-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/engineering/storage/tech) +"ovB" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/commons/storage/primary) +"owz" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/landmark/start/security_officer, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/office) +"owQ" = ( +/obj/structure/tank_dispenser, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/turf_decal/bot{ + dir = 1 + }, +/turf/open/floor/plasteel{ + dir = 1 + }, +/area/engineering/main) +"oxn" = ( +/obj/machinery/door/window/westright, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private) +"oxr" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/structure/chair/comfy/brown{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/command/heads_quarters/captain/private) +"oyi" = ( +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/machinery/power/tracker, +/turf/open/floor/plating/airless, +/area/solars/starboard/fore) +"oyV" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 6 + }, +/obj/effect/landmark/start/atmospheric_technician, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"ozl" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/sign/poster/contraband/clown{ + pixel_x = 32 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/wood, +/area/service/theater) +"ozS" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance{ + name = "Crematorium"; + req_access_txt = "22;27" + }, +/turf/open/floor/plasteel/dark, +/area/service/chapel/office) +"ozU" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters{ + id = "evashutter"; + name = "E.V.A. Storage Shutter" + }, +/obj/machinery/button/door{ + id = "evashutter"; + name = "E.V.A. Storage Shutter Control"; + pixel_x = 30; + req_access_txt = "19" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/ai_monitored/command/storage/eva) +"ozV" = ( +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + areastring = "/area/hallway/secondary/service"; + dir = 1; + name = "Service Hall APC"; + pixel_y = 23 + }, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/service) +"oAw" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/service/kitchen) +"oAS" = ( +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/command/heads_quarters/rd) +"oBl" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/locker) +"oBB" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/landmark/start/bartender, +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/service/bar) +"oBF" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"oBW" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/commons/storage/primary) +"oBX" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/engineering/atmos) +"oCb" = ( +/obj/structure/table, +/obj/effect/turf_decal/delivery, +/obj/item/clothing/glasses/meson, +/obj/item/clothing/glasses/meson, +/obj/item/clothing/glasses/meson, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/item/storage/belt/utility, +/obj/item/storage/belt/utility, +/turf/open/floor/plasteel, +/area/engineering/main) +"oCu" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/atmos_waste{ + dir = 1 + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/engineering/atmos) +"oCy" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/turf/open/floor/plating, +/area/engineering/break_room) +"oCQ" = ( +/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/command/bridge) +"oDl" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"oDp" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/turf/open/floor/plasteel/dark, +/area/commons/fitness/recreation) +"oDQ" = ( +/obj/machinery/power/port_gen/pacman, +/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/ai_monitored/command/storage/satellite) +"oEM" = ( +/obj/machinery/power/apc{ + areastring = "/area/maintenance/starboard"; + dir = 1; + name = "Starboard Maintenance APC"; + pixel_x = -1; + pixel_y = 23 + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"oFv" = ( +/obj/machinery/atmospherics/components/binary/pump/on{ + name = "Gas to Cold Loop" + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/engine, +/area/engineering/main) +"oFB" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/service/kitchen) +"oGd" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/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/office) +"oHW" = ( +/obj/machinery/portable_atmospherics/canister/air, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"oIi" = ( +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/plating, +/area/commons/fitness/pool) +"oIN" = ( +/obj/machinery/vending/coffee, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/engineering/break_room) +"oJk" = ( +/obj/structure/chair/stool, +/turf/open/floor/plasteel/chapel{ + dir = 4 + }, +/area/service/chapel/main) +"oJt" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/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/engineering/gravity_generator) +"oJO" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel, +/area/commons/locker) +"oKf" = ( +/obj/item/wrench, +/obj/item/clothing/suit/apron, +/obj/item/clothing/accessory/armband/hydro, +/obj/structure/table/glass, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"oKi" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/item/beacon, +/obj/machinery/holopad/secure, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat/foyer) +"oKY" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_x = 30 + }, +/turf/open/floor/plasteel/grimy, +/area/service/chapel/office) +"oLm" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + name = "Pure to Ports" + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"oLu" = ( +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_y = 32 + }, +/obj/structure/filingcabinet/chestdrawer{ + pixel_y = 2 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/hop) +"oLU" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/commons/dorms) +"oLW" = ( +/obj/structure/table/reinforced, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/requests_console{ + department = "Science"; + departmentType = 2; + name = "Science Requests Console"; + pixel_y = 30; + receive_ore_updates = 1 + }, +/obj/item/integrated_electronics/debugger, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"oMe" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/commons/fitness/pool) +"oMn" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/wood, +/area/service/library) +"oMq" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/engine/plasma, +/area/engineering/atmos) +"oMG" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "Gateway Atrium"; + req_access_txt = "62" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/command/gateway) +"oNf" = ( +/obj/machinery/door/window/northright{ + base_state = "left"; + dir = 8; + icon_state = "left"; + name = "Library Desk Door"; + pixel_x = 3; + req_access_txt = "37" + }, +/turf/open/floor/wood, +/area/service/library) +"oNX" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/machinery/computer/atmos_control, +/turf/open/floor/plasteel/checker, +/area/engineering/atmos) +"oOi" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters{ + id = "gateshutter"; + name = "Gateway Access Shutter" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/command/gateway) +"oOQ" = ( +/obj/machinery/door/poddoor/preopen{ + id = "atmos"; + name = "Atmospherics Blast Door" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"oOW" = ( +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + name = "bridge blast door" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command/glass{ + name = "Bridge Access"; + req_access_txt = "19" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + 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/command/bridge) +"oPo" = ( +/obj/structure/chair, +/obj/effect/landmark/start/chaplain, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/service/chapel/main) +"oPO" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/dark, +/area/commons/fitness/recreation) +"oQo" = ( +/obj/structure/chair{ + pixel_y = -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/service/chapel/main) +"oQs" = ( +/obj/structure/window/reinforced, +/obj/machinery/computer/atmos_control/tank/air_tank{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/cafeteria, +/area/engineering/atmos) +"oQI" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"oRp" = ( +/turf/open/space/basic, +/area/space/station_ruins) +"oRx" = ( +/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/commons/fitness/recreation) +"oRL" = ( +/obj/docking_port/stationary{ + dir = 2; + dwidth = 11; + height = 22; + id = "whiteship_home"; + name = "SS13: Auxiliary Dock, Station-Port"; + width = 35 + }, +/turf/open/space/basic, +/area/space) +"oSo" = ( +/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/command/gateway) +"oSD" = ( +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hos) +"oSE" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/mining{ + name = "Cargo Bay"; + req_one_access_txt = "48;50" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/cargo/office) +"oTb" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/carpet, +/area/command/heads_quarters/hop) +"oTo" = ( +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_x = -30 + }, +/obj/effect/turf_decal/bot{ + dir = 1 + }, +/obj/structure/reagent_dispensers/fueltank/high, +/turf/open/floor/plasteel{ + dir = 1 + }, +/area/engineering/main) +"oTr" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -24 + }, +/obj/structure/table, +/obj/item/folder, +/obj/item/storage/firstaid/regular, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/commons/locker) +"oTC" = ( +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -27 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/commons/dorms) +"oTY" = ( +/obj/structure/closet/secure_closet/captains, +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 2 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private) +"oUy" = ( +/obj/machinery/light/small, +/obj/machinery/power/apc{ + areastring = "/area/commons/toilet/restrooms"; + name = "Restrooms APC"; + pixel_y = -26 + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/turf/open/floor/plasteel/freezer, +/area/commons/toilet/restrooms) +"oUA" = ( +/obj/structure/table/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/item/paper_bin, +/obj/item/pen, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"oUJ" = ( +/obj/structure/rack, +/obj/item/stack/packageWrap{ + pixel_x = 2; + pixel_y = -3 + }, +/obj/item/stack/packageWrap{ + pixel_x = 2; + pixel_y = -3 + }, +/obj/item/stack/packageWrap{ + pixel_x = 2; + pixel_y = -3 + }, +/obj/item/stack/packageWrap{ + pixel_x = 2; + pixel_y = -3 + }, +/obj/item/stack/packageWrap{ + pixel_x = 2; + pixel_y = -3 + }, +/obj/item/stack/wrapping_paper, +/obj/item/stack/wrapping_paper, +/obj/item/destTagger{ + pixel_x = 4; + pixel_y = 3 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/cargo/storage) +"oVF" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/dark, +/area/commons/fitness/recreation) +"oVH" = ( +/obj/machinery/atmospherics/components/binary/pump/on{ + name = "Waste to Filter" + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"oWn" = ( +/obj/machinery/firealarm{ + pixel_y = 27 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"oWo" = ( +/turf/closed/wall/mineral/plastitanium, +/area/commons/fitness/recreation) +"oWt" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock{ + name = "Recreation Area" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/dorms) +"oWF" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/engineering/atmos) +"oWR" = ( +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/port) +"oXj" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/closet/cardboard, +/obj/structure/sign/poster/official/random{ + pixel_y = 32 + }, +/turf/open/floor/plasteel, +/area/cargo/warehouse) +"oXk" = ( +/obj/structure/table/reinforced, +/obj/item/folder/yellow, +/obj/item/stamp/ce, +/obj/item/reagent_containers/pill/patch/silver_sulf, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/command/heads_quarters/ce) +"oXt" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/construction/storage_wing) +"oYR" = ( +/obj/structure/table, +/obj/item/assembly/igniter{ + pixel_x = -4; + pixel_y = -4 + }, +/obj/item/assembly/igniter, +/obj/item/screwdriver{ + pixel_y = 16 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/storage/primary) +"oZg" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/girder, +/obj/structure/grille, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"oZv" = ( +/obj/machinery/computer/secure_data, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hos) +"oZL" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/storage/satellite) +"oZU" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/reagent_containers/food/snacks/grown/harebell, +/obj/item/reagent_containers/food/snacks/grown/harebell, +/obj/item/reagent_containers/food/snacks/grown/harebell, +/obj/item/reagent_containers/food/snacks/grown/harebell, +/obj/item/reagent_containers/food/snacks/grown/harebell, +/obj/machinery/button/massdriver{ + id = "chapelgun"; + name = "Chapel Mass Driver"; + pixel_x = -4; + pixel_y = -26 + }, +/obj/structure/table/wood, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/service/chapel/main) +"pan" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/engineering/main) +"paA" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/transit_tube/station{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/aisat/exterior) +"paM" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/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 + }, +/obj/machinery/atmospherics/pipe/manifold/yellow/visible{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"paQ" = ( +/obj/structure/closet/secure_closet/personal/cabinet, +/obj/item/clothing/under/misc/assistantformal, +/turf/open/floor/wood, +/area/commons/dorms) +"paS" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"pbc" = ( +/obj/structure/light_construct/small{ + dir = 4 + }, +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_x = 30 + }, +/mob/living/simple_animal/opossum/poppy, +/turf/open/floor/wood, +/area/maintenance/port/aft) +"pbQ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall, +/area/ai_monitored/aisat/exterior) +"pcc" = ( +/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 = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"pcd" = ( +/turf/closed/wall, +/area/cargo/storage) +"pch" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/engineering/main) +"pcs" = ( +/obj/machinery/atmospherics/pipe/simple/dark/visible{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"pct" = ( +/obj/structure/table, +/obj/machinery/microwave{ + pixel_x = -3; + pixel_y = 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/security/office) +"pcy" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/techstorage/command, +/turf/open/floor/plasteel/dark, +/area/engineering/storage/tech) +"pcz" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 6 + }, +/turf/closed/wall/r_wall, +/area/engineering/supermatter) +"pcD" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel, +/area/commons/storage/tools) +"pdm" = ( +/obj/machinery/power/apc{ + areastring = "/area/security/checkpoint/engineering"; + dir = 8; + name = "Engineering Security APC"; + pixel_x = -25 + }, +/obj/structure/cable/yellow{ + 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) +"pdy" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/freezer, +/area/commons/toilet/restrooms) +"pdZ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 4; + sortType = 8 + }, +/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 + }, +/turf/open/floor/plasteel, +/area/security/office) +"peh" = ( +/obj/effect/turf_decal/stripes/line, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/reagent_dispensers/watertank/high, +/obj/item/reagent_containers/glass/bucket, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"peX" = ( +/obj/item/storage/box, +/obj/structure/table, +/obj/item/storage/box, +/obj/item/storage/box, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/obj/item/hand_labeler, +/obj/machinery/power/apc{ + areastring = "/area/cargo/sorting"; + dir = 4; + name = "Delivery Office APC"; + pixel_x = 24 + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white/corner, +/area/cargo/sorting) +"pfi" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/machinery/door/poddoor/preopen{ + id = "rdprivacy"; + name = "privacy shutter" + }, +/turf/open/floor/plating, +/area/command/heads_quarters/rd) +"pfp" = ( +/obj/structure/cable/yellow{ + 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/engineering/storage/tech) +"pfE" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solars/starboard/fore) +"pfU" = ( +/obj/item/storage/firstaid/regular{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/table/glass, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"pgP" = ( +/obj/machinery/power/apc{ + areastring = "/area/command/heads_quarters/rd"; + name = "RD Office APC"; + pixel_y = -27 + }, +/obj/structure/cable/yellow, +/obj/machinery/light_switch{ + pixel_x = -23 + }, +/obj/item/kirbyplants/dead, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/command/heads_quarters/rd) +"pgT" = ( +/obj/machinery/portable_atmospherics/canister/toxins, +/obj/machinery/atmospherics/miner/toxins, +/turf/open/floor/engine/plasma, +/area/engineering/atmos) +"phk" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/cargo/miningoffice) +"php" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 1 + }, +/turf/open/floor/engine/vacuum, +/area/engineering/atmos) +"pht" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/bookcase, +/turf/open/floor/wood, +/area/command/bridge) +"pic" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 2 + }, +/obj/machinery/disposal/deliveryChute{ + dir = 4; + name = "Crate Disposal Chute"; + pixel_x = -5; + pixel_y = 2 + }, +/obj/machinery/door/window/westleft{ + base_state = "right"; + dir = 4; + icon_state = "right"; + name = "Crate Disposal Chute" + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/commons/storage/primary) +"pig" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"pii" = ( +/obj/machinery/light/small, +/turf/open/floor/engine/air, +/area/engineering/atmos) +"piB" = ( +/obj/machinery/vending/hydroseeds{ + slogan_delay = 700 + }, +/obj/structure/noticeboard{ + desc = "A board for pinning important notices upon. Probably helpful for keeping track of requests."; + name = "requests board"; + pixel_y = 32 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"pjr" = ( +/obj/machinery/camera{ + c_tag = "Atmospherics - Starboard Aft"; + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 9 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"pjG" = ( +/obj/structure/table/wood, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/power/apc{ + areastring = "/area/security/detectives_office"; + dir = 8; + name = "Detective APC"; + pixel_x = -25 + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/item/taperecorder{ + pixel_x = 3 + }, +/obj/item/storage/box/evidence, +/obj/item/flashlight/seclite, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"pjR" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"pko" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/commons/dorms) +"pky" = ( +/obj/machinery/power/apc{ + areastring = "/area/security/checkpoint/science/research"; + dir = 8; + name = "Security Post - Research Division APC"; + pixel_x = -25 + }, +/obj/structure/cable/yellow, +/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/research) +"plk" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/storage/tech) +"plm" = ( +/obj/machinery/power/apc/highcap/ten_k{ + areastring = "/area/command/bridge"; + dir = 8; + name = "Bridge APC"; + pixel_x = -25 + }, +/obj/structure/cable/yellow, +/obj/machinery/camera{ + c_tag = "Bridge - Port"; + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"plI" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/aisat/exterior) +"plN" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"plV" = ( +/obj/machinery/power/apc{ + areastring = "/area/service/chapel/office"; + name = "Chapel Office APC"; + pixel_y = -25 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/cable/yellow, +/turf/open/floor/plasteel/grimy, +/area/service/chapel/office) +"plX" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"pmb" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/costume, +/obj/effect/spawner/lootdrop/costume, +/obj/item/clothing/mask/balaclava, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/commons/locker) +"pmc" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/closed/wall/r_wall, +/area/maintenance/disposal/incinerator) +"pmd" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/sign/warning/pods{ + pixel_x = 30 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/commons/dorms) +"pmq" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/commons/dorms) +"pmA" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Holodeck"; + dir = 1 + }, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -28 + }, +/obj/machinery/light/small, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"pnA" = ( +/obj/machinery/light_switch{ + pixel_x = 28 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/machinery/camera{ + c_tag = "Chapel Office"; + dir = 8 + }, +/turf/open/floor/plasteel/grimy, +/area/service/chapel/office) +"pnF" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/gravity_generator) +"pnM" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/gravity_generator) +"pok" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/carpet, +/area/command/heads_quarters/captain/private) +"poo" = ( +/obj/machinery/vending/cigarette, +/turf/open/floor/carpet, +/area/service/bar) +"poT" = ( +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + areastring = "/area/command/heads_quarters/hop"; + dir = 1; + name = "Head of Personnel APC"; + pixel_y = 23 + }, +/turf/open/floor/carpet, +/area/command/heads_quarters/hop) +"poW" = ( +/obj/effect/decal/cleanable/cobweb, +/obj/structure/bodycontainer/morgue{ + dir = 2 + }, +/turf/open/floor/plasteel/dark, +/area/service/chapel/office) +"pqa" = ( +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/command/heads_quarters/captain/private) +"pqi" = ( +/obj/structure/table, +/obj/item/wirecutters, +/obj/item/flashlight{ + pixel_x = 1; + pixel_y = 5 + }, +/obj/machinery/requests_console{ + department = "Tool Storage"; + pixel_x = 30 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Tool Storage"; + dir = 8 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/storage/primary) +"pqG" = ( +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"pqJ" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/office) +"prf" = ( +/turf/closed/wall, +/area/commons/storage/tools) +"prg" = ( +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solars/port/aft) +"pri" = ( +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/commons/storage/primary) +"prS" = ( +/obj/structure/chair, +/turf/open/floor/plasteel/grimy, +/area/security/office) +"prY" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/commons/locker) +"pse" = ( +/turf/open/floor/wood{ + icon_state = "wood-broken5" + }, +/area/service/library) +"psh" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/ai_slipper{ + uses = 10 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/aisat/exterior) +"psw" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Primary Tool Storage" + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/storage/primary) +"psx" = ( +/obj/machinery/vending/cigarette, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/turf/open/floor/plasteel, +/area/construction/storage_wing) +"psM" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/power/apc{ + areastring = "/area/hallway/primary/starboard"; + dir = 1; + name = "Starboard Hallway APC"; + pixel_y = 23 + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"psS" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/commons/fitness/recreation) +"ptX" = ( +/obj/structure/sign/warning/securearea, +/turf/closed/wall/r_wall, +/area/engineering/main) +"puw" = ( +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hos) +"puC" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 6 + }, +/obj/machinery/camera{ + c_tag = "Engineering Supermatter Fore"; + dir = 4; + network = list("ss13","engine") + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -26 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"pvk" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/security/detectives_office) +"pvo" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/commons/locker) +"pvs" = ( +/obj/machinery/vending/cart{ + req_access_txt = "57" + }, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = 21 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/hop) +"pvA" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/starboard) +"pvK" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/holopad/secure, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"pvU" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/cargo/office) +"pwz" = ( +/obj/machinery/door/window/northleft{ + dir = 8; + name = "Inner Pipe Access"; + req_access_txt = "24" + }, +/obj/machinery/atmospherics/pipe/simple/yellow/visible, +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"pwE" = ( +/obj/machinery/atmospherics/pipe/manifold4w/general/visible, +/obj/machinery/meter, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"pwY" = ( +/obj/item/seeds/wheat, +/obj/item/seeds/sugarcane, +/obj/item/seeds/potato, +/obj/item/seeds/apple, +/obj/item/grown/corncob, +/obj/item/reagent_containers/food/snacks/grown/carrot, +/obj/item/reagent_containers/food/snacks/grown/wheat, +/obj/item/reagent_containers/food/snacks/grown/pumpkin{ + pixel_y = 5 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 27 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/camera/autoname{ + dir = 8 + }, +/obj/structure/table/glass, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"pxg" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/miningoffice) +"pxy" = ( +/obj/machinery/status_display/evac{ + pixel_y = 32 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/computer/station_alert, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/engineering/atmos) +"pxS" = ( +/obj/machinery/light/small, +/obj/machinery/libraryscanner, +/turf/open/floor/wood, +/area/service/library) +"pya" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"pyj" = ( +/obj/structure/table, +/obj/item/paper_bin/construction, +/obj/item/airlock_painter, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/turf/open/floor/plasteel, +/area/commons/storage/art) +"pyW" = ( +/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/glass, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/cafeteria, +/area/command/heads_quarters/cmo) +"pzg" = ( +/obj/machinery/status_display/evac{ + pixel_x = -32; + pixel_y = 32 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hos) +"pzj" = ( +/obj/machinery/door/airlock/external, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"pzk" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/command/gateway) +"pzF" = ( +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/disposal/bin, +/turf/open/floor/plasteel, +/area/service/janitor) +"pzO" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/rack, +/obj/item/stack/sheet/cardboard, +/obj/item/stack/rods/fifty, +/obj/item/paper, +/obj/item/storage/box/lights/mixed, +/obj/structure/sign/poster/official/random{ + pixel_y = -32 + }, +/turf/open/floor/plasteel, +/area/cargo/warehouse) +"pzY" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/service/bar) +"pAk" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"pAr" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/mix_input{ + dir = 8 + }, +/turf/open/floor/engine/vacuum, +/area/engineering/atmos) +"pAA" = ( +/obj/item/flashlight/lamp, +/obj/machinery/newscaster{ + pixel_x = -30 + }, +/obj/structure/table/wood, +/turf/open/floor/plasteel/grimy, +/area/service/chapel/office) +"pAD" = ( +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"pAO" = ( +/obj/structure/table, +/obj/item/airlock_painter, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/engineering/main) +"pBK" = ( +/turf/closed/wall/r_wall, +/area/command/heads_quarters/hop) +"pBY" = ( +/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, +/area/space) +"pCg" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/holopad/secure, +/turf/open/floor/plasteel/grimy, +/area/tcommsat/computer) +"pCC" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/freezer, +/area/commons/toilet/restrooms) +"pCP" = ( +/obj/structure/closet/secure_closet/medical1, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -22 + }, +/obj/effect/turf_decal/bot{ + dir = 1 + }, +/turf/open/floor/plasteel{ + dir = 1 + }, +/area/command/gateway) +"pCV" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"pDa" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"pDb" = ( +/obj/machinery/door/airlock/external{ + name = "Atmospherics External Airlock"; + req_access_txt = "24" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plating, +/area/engineering/atmos) +"pDf" = ( +/obj/machinery/disposal/bin{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"pDn" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 6 + }, +/turf/open/space/basic, +/area/space/nearstation) +"pDz" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/space, +/area/solars/starboard/aft) +"pEN" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/office) +"pGf" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"pGg" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/landmark/start/clown, +/turf/open/floor/wood, +/area/service/theater) +"pGj" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"pGD" = ( +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/power/solar{ + id = "aftstarboard"; + name = "Aft-Starboard Solar Array" + }, +/turf/open/floor/plasteel/airless/solarpanel, +/area/solars/starboard/aft) +"pGH" = ( +/obj/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"pGN" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/camera{ + c_tag = "Fitness Room - Fore" + }, +/obj/machinery/airalarm{ + pixel_y = 24 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"pHb" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/light_switch{ + pixel_y = -25 + }, +/obj/machinery/vending/cola/random, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"pHk" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_x = -26 + }, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"pHm" = ( +/obj/machinery/computer/security/hos, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hos) +"pHr" = ( +/obj/machinery/power/apc/auto_name/east, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/turf/open/floor/plasteel/dark, +/area/commons/cryopod) +"pHS" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"pHX" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/gravity_generator) +"pIc" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"pIp" = ( +/obj/structure/sign/map/right{ + desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; + icon_state = "map-right-MS"; + pixel_y = 32 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private) +"pIJ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/landmark/start/assistant, +/obj/structure/chair/stool/bar, +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/service/bar) +"pJd" = ( +/obj/structure/window/reinforced, +/obj/machinery/holopad/secure, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/aisat/exterior) +"pJi" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/recharger{ + pixel_y = 3 + }, +/obj/item/restraints/handcuffs{ + pixel_y = 3 + }, +/obj/structure/table/glass, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"pKe" = ( +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/machinery/power/solar{ + id = "forestarboard"; + name = "Fore-Starboard Solar Array" + }, +/turf/open/floor/plasteel/airless/solarpanel, +/area/solars/starboard/fore) +"pKu" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 4; + name = "Gas to Chamber" + }, +/turf/open/floor/engine, +/area/engineering/supermatter) +"pKx" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/carpet, +/area/command/heads_quarters/hos) +"pKD" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/power/apc{ + areastring = "/area/commons/fitness/recreation"; + dir = 1; + name = "Recreation Area APC"; + pixel_y = 23 + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"pLf" = ( +/turf/open/floor/engine/n2, +/area/engineering/atmos) +"pLx" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/bot{ + dir = 1 + }, +/turf/open/floor/plasteel{ + dir = 1 + }, +/area/engineering/main) +"pMd" = ( +/obj/structure/displaycase/trophy, +/turf/open/floor/wood, +/area/service/library) +"pMn" = ( +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/circuit/green{ + luminosity = 2 + }, +/area/ai_monitored/command/nuke_storage) +"pMX" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 4; + sortType = 16 + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"pNU" = ( +/obj/machinery/holopad, +/turf/open/floor/plasteel, +/area/commons/storage/tools) +"pOk" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/command/teleporter) +"pOP" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall/r_wall, +/area/maintenance/disposal/incinerator) +"pOS" = ( +/turf/closed/wall/r_wall, +/area/security/office) +"pPp" = ( +/obj/structure/closet/secure_closet/hydroponics, +/obj/machinery/light_switch{ + pixel_x = -26 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"pPG" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/treatment_center) +"pPS" = ( +/obj/machinery/atmospherics/pipe/simple/purple/visible{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"pQD" = ( +/obj/structure/window/reinforced, +/obj/structure/showcase/cyborg/old{ + dir = 8; + pixel_x = 9; + pixel_y = 2 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 24 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/aisat/exterior) +"pQJ" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/machinery/button/door{ + id = "FitnessShower"; + name = "Lock Control"; + normaldoorcontrol = 1; + pixel_y = -25; + specialfunctions = 4 + }, +/obj/structure/mirror{ + pixel_x = -28 + }, +/obj/machinery/light/small, +/turf/open/floor/plasteel/freezer, +/area/commons/fitness/recreation) +"pRd" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/space, +/area/solars/starboard/aft) +"pRp" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/grunge{ + name = "Club" + }, +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/service/bar) +"pRA" = ( +/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/dark, +/area/command/bridge) +"pRX" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 24 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/storage/primary) +"pSm" = ( +/obj/item/radio/intercom{ + dir = 4; + name = "Station Intercom (General)"; + pixel_x = 27 + }, +/obj/machinery/camera{ + c_tag = "Mining Office"; + dir = 8 + }, +/obj/machinery/mineral/equipment_vendor, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/miningoffice) +"pSE" = ( +/obj/effect/landmark/start/captain, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private) +"pSX" = ( +/obj/machinery/door/airlock/external{ + name = "Auxiliary Escape Airlock" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"pSY" = ( +/turf/closed/wall, +/area/service/hydroponics/garden) +"pTr" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"pTI" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/service/kitchen) +"pTL" = ( +/obj/effect/turf_decal/tile/neutral{ + 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/holopad/secure, +/turf/open/floor/plasteel, +/area/command/heads_quarters/ce) +"pUa" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics/garden) +"pUr" = ( +/obj/machinery/suit_storage_unit/engine, +/obj/effect/turf_decal/bot{ + dir = 1 + }, +/turf/open/floor/plasteel{ + dir = 1 + }, +/area/engineering/main) +"pUB" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/heater/on, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/engineering/atmos) +"pUH" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/commons/fitness/recreation) +"pUJ" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/table/wood/poker, +/obj/item/toy/cards/deck{ + pixel_y = 4 + }, +/turf/open/floor/wood, +/area/service/bar) +"pUZ" = ( +/obj/structure/window/reinforced, +/obj/machinery/computer/atmos_control/tank/oxygen_tank{ + dir = 1 + }, +/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/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"pVL" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"pVM" = ( +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/aisat/exterior) +"pVV" = ( +/obj/structure/closet/secure_closet/hop, +/turf/open/floor/wood, +/area/command/heads_quarters/hop) +"pXj" = ( +/obj/structure/plasticflaps/opaque, +/obj/machinery/conveyor{ + backwards = 1; + forwards = 2; + id = "packageSort2" + }, +/obj/effect/turf_decal/loading_area, +/turf/open/floor/plating, +/area/cargo/sorting) +"pXm" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/machinery/door/poddoor/preopen{ + id = "cmoprivacy"; + name = "privacy shutter" + }, +/turf/open/floor/plating, +/area/command/heads_quarters/cmo) +"pXC" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plating, +/area/commons/fitness/pool) +"pXT" = ( +/obj/machinery/seed_extractor, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/service/hydroponics/garden) +"pYh" = ( +/obj/structure/bookcase/random/religion, +/turf/open/floor/wood, +/area/service/library) +"pYn" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Art Storage" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/commons/storage/art) +"pYN" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/cargo/storage) +"pYY" = ( +/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/command/heads_quarters/hop) +"pZc" = ( +/obj/structure/window/reinforced, +/obj/machinery/computer/atmos_control/tank/nitrogen_tank{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/dark/visible, +/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/engineering/atmos) +"pZe" = ( +/obj/machinery/camera/motion{ + c_tag = "Vault"; + dir = 1; + network = list("vault") + }, +/obj/machinery/light, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/nuke_storage) +"pZP" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/security/office) +"pZY" = ( +/obj/machinery/power/supermatter_crystal/engine, +/turf/open/floor/engine, +/area/engineering/supermatter) +"qaa" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/carpet, +/area/command/bridge) +"qaA" = ( +/obj/structure/window/reinforced, +/obj/machinery/light/small, +/obj/machinery/camera{ + c_tag = "MiniSat Exterior - Fore"; + dir = 1; + network = list("minisat") + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/aisat/exterior) +"qaJ" = ( +/obj/structure/table, +/obj/item/razor{ + pixel_y = 5 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/locker) +"qaK" = ( +/obj/machinery/atmospherics/pipe/simple/dark/visible{ + dir = 10 + }, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"qbf" = ( +/obj/effect/spawner/structure/window, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/cargo/miningoffice) +"qbu" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 24 + }, +/turf/open/floor/wood, +/area/service/library) +"qcF" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/techstorage/service, +/turf/open/floor/plasteel/dark, +/area/engineering/storage/tech) +"qcH" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/sign/warning/securearea{ + pixel_y = 30 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/construction/storage_wing) +"qda" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/command/heads_quarters/rd) +"qde" = ( +/obj/machinery/power/apc{ + areastring = "/area/commons/vacant_room/office"; + dir = 8; + name = "Vacant Office APC"; + pixel_x = -25 + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/turf/open/floor/wood, +/area/commons/vacant_room/office) +"qed" = ( +/obj/structure/table, +/obj/item/radio/intercom{ + dir = 4; + name = "Station Intercom (General)"; + pixel_x = 27 + }, +/obj/item/clothing/gloves/color/yellow, +/obj/item/t_scanner, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/storage/primary) +"qee" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 27 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"qfe" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/service/kitchen) +"qfi" = ( +/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/command/gateway) +"qfD" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/commons/storage/primary) +"qfP" = ( +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/structure/chair/comfy/black{ + dir = 8 + }, +/turf/open/floor/plasteel/chapel{ + dir = 4 + }, +/area/service/chapel/main) +"qfY" = ( +/obj/structure/chair/stool{ + pixel_y = 8 + }, +/turf/open/floor/wood, +/area/service/bar) +"qgb" = ( +/obj/structure/toilet/secret/low_loot{ + pixel_y = 8 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/button/door{ + id = "AuxToilet2"; + name = "Lock Control"; + normaldoorcontrol = 1; + pixel_x = 25; + specialfunctions = 4 + }, +/obj/machinery/newscaster{ + pixel_y = -32 + }, +/turf/open/floor/plasteel, +/area/commons/toilet/auxiliary) +"qgP" = ( +/obj/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/aisat/exterior) +"qgV" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/power/apc{ + areastring = "/area/commons/locker"; + name = "Locker Room APC"; + pixel_x = -1; + pixel_y = -26 + }, +/obj/structure/cable/yellow, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/commons/locker) +"qha" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engineering/atmos) +"qhe" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"qhx" = ( +/obj/structure/rack, +/obj/item/clothing/under/color/red, +/obj/item/clothing/ears/earmuffs, +/obj/item/clothing/neck/tie/red, +/obj/item/clothing/head/soft/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/commons/fitness/recreation) +"qin" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/machinery/door/poddoor/preopen{ + id = "hosprivacy"; + name = "privacy shutters" + }, +/turf/open/floor/plating, +/area/command/heads_quarters/hos) +"qiA" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/engineering/break_room) +"qiH" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/command/gateway) +"qiT" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/manifold/cyan/visible, +/turf/open/floor/engine, +/area/engineering/main) +"qjf" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/closed/wall, +/area/commons/fitness/recreation) +"qjZ" = ( +/obj/item/radio/intercom{ + dir = 4; + name = "Station Intercom (General)"; + pixel_x = -28; + pixel_y = 23 + }, +/obj/machinery/status_display/supply{ + pixel_y = 32 + }, +/obj/machinery/conveyor{ + dir = 5; + id = "QMLoad2" + }, +/turf/open/floor/plating, +/area/cargo/storage) +"qka" = ( +/obj/machinery/power/apc/highcap/five_k{ + areastring = "/area/command/corporate_showroom"; + dir = 4; + name = "Nanotrasen Corporate Showroom APC"; + pixel_x = 24 + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/item/cigbutt, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/wood, +/area/command/corporate_showroom) +"qkm" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/engineering/supermatter) +"qkC" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/turf/open/floor/engine, +/area/engineering/main) +"qkQ" = ( +/obj/machinery/light{ + 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/engineering/storage/tech) +"qkZ" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/construction/storage_wing) +"qlI" = ( +/obj/structure/table/glass, +/obj/item/lightreplacer{ + pixel_y = 7 + }, +/obj/item/storage/belt/utility, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"qmj" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/command/heads_quarters/captain/private) +"qmn" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/office) +"qmw" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/firealarm{ + pixel_y = 27 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"qmx" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 24 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/machinery/shower{ + dir = 8; + name = "emergency shower" + }, +/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/treatment_center) +"qmB" = ( +/obj/structure/table/wood, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/obj/item/clipboard, +/obj/item/paper, +/turf/open/floor/wood, +/area/commons/vacant_room/office) +"qmK" = ( +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/obj/structure/table/wood, +/obj/item/paper, +/turf/open/floor/wood, +/area/commons/dorms) +"qmL" = ( +/obj/machinery/conveyor_switch/oneway{ + dir = 8; + id = "QMLoad"; + pixel_x = 6 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"qnv" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + name = "bridge blast door" + }, +/turf/open/floor/plating, +/area/command/bridge) +"qnE" = ( +/obj/item/reagent_containers/food/drinks/soda_cans/thirteenloko{ + pixel_y = 4 + }, +/obj/structure/table/glass, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"qnH" = ( +/obj/machinery/portable_atmospherics/canister/air, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"qoi" = ( +/obj/structure/sign/poster/official/random, +/turf/closed/wall, +/area/service/kitchen) +"qoA" = ( +/obj/structure/reagent_dispensers/water_cooler, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/commons/fitness/recreation) +"qoD" = ( +/obj/machinery/atmospherics/pipe/manifold/purple/visible, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"qoW" = ( +/obj/machinery/door/window/northleft{ + dir = 8; + name = "Magboot Storage"; + pixel_x = -1; + req_access_txt = "19" + }, +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/obj/structure/rack, +/obj/item/clothing/shoes/magboots{ + pixel_x = -4; + pixel_y = 3 + }, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/shoes/magboots{ + pixel_x = 4; + 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/ai_monitored/command/storage/eva) +"qpG" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "MiniSat Exterior - Fore Port"; + dir = 8; + network = list("minisat") + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/aisat/exterior) +"qpJ" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + name = "bridge blast door" + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/turf/open/floor/plating, +/area/command/bridge) +"qpQ" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/gravity_generator) +"qpV" = ( +/obj/structure/table, +/obj/item/screwdriver{ + pixel_y = 16 + }, +/obj/item/wirecutters, +/obj/item/multitool, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/storage/tech) +"qqb" = ( +/mob/living/simple_animal/chicken{ + name = "Featherbottom"; + real_name = "Featherbottom" + }, +/turf/open/floor/grass, +/area/service/hydroponics/garden) +"qqg" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/science/misc_lab) +"qqK" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/cargo/office) +"qqM" = ( +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"qrb" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/carpet, +/area/command/heads_quarters/captain/private) +"qrc" = ( +/turf/open/floor/plasteel/chapel, +/area/service/chapel/main) +"qrH" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel/chapel{ + dir = 4 + }, +/area/service/chapel/main) +"qrM" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_x = -26 + }, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"qsU" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/command/storage/eva) +"qsV" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/obj/structure/cable/yellow{ + 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 = 8 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/engineering/atmos) +"qtw" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/circuit/green{ + luminosity = 2 + }, +/area/ai_monitored/command/nuke_storage) +"qtO" = ( +/turf/closed/wall/r_wall, +/area/engineering/storage/tcomms) +"qur" = ( +/turf/open/floor/wood, +/area/command/corporate_showroom) +"qvR" = ( +/obj/structure/chair/office/dark{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"qwb" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock{ + name = "Locker Room" + }, +/turf/open/floor/plasteel, +/area/commons/locker) +"qwn" = ( +/obj/structure/closet/secure_closet/quartermaster, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/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/cargo/qm) +"qwv" = ( +/obj/structure/sign/painting/library{ + pixel_y = 32 + }, +/turf/open/floor/wood, +/area/service/library) +"qwP" = ( +/obj/structure/rack, +/obj/item/pickaxe{ + pixel_x = 5 + }, +/obj/item/shovel{ + pixel_x = -5 + }, +/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/cargo/miningoffice) +"qxd" = ( +/turf/closed/wall/r_wall, +/area/engineering/atmos) +"qxg" = ( +/obj/structure/table/wood/fancy/blue, +/obj/structure/table/wood/fancy/royalblue, +/obj/structure/sign/painting/library_secure{ + pixel_x = 32 + }, +/obj/machinery/door/window{ + dir = 8; + name = "Secure Art Exhibition"; + req_access_txt = "37" + }, +/turf/open/floor/wood, +/area/service/library) +"qxN" = ( +/obj/structure/table/wood, +/obj/item/camera_film{ + pixel_x = 6; + pixel_y = 7 + }, +/obj/item/camera_film{ + pixel_x = -3; + pixel_y = 5 + }, +/turf/open/floor/wood, +/area/commons/vacant_room/office) +"qyd" = ( +/obj/structure/bed/roller, +/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/treatment_center) +"qyf" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/commons/fitness/recreation) +"qzI" = ( +/obj/machinery/computer/security/qm{ + 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/cargo/qm) +"qAf" = ( +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/machinery/light_switch{ + pixel_x = -24 + }, +/obj/machinery/power/smes/engineering, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"qAr" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"qAz" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/open/floor/wood, +/area/service/library) +"qAA" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/wood, +/area/command/corporate_showroom) +"qAG" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/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 + }, +/obj/machinery/atmospherics/pipe/simple/yellow/visible, +/obj/machinery/space_heater, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"qAS" = ( +/obj/machinery/plantgenes{ + pixel_y = 6 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/table, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"qBh" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/machinery/lapvend, +/turf/open/floor/plasteel/white, +/area/science/research) +"qBl" = ( +/obj/structure/noticeboard{ + desc = "A board for pinning important notices upon. Probably helpful for keeping track of requests."; + name = "requests board"; + pixel_x = 32; + pixel_y = 32 + }, +/obj/machinery/requests_console{ + department = "Cargo Bay"; + departmentType = 2; + pixel_y = 30 + }, +/obj/machinery/computer/bounty, +/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/cargo/office) +"qBq" = ( +/turf/closed/wall/mineral/plastitanium, +/area/hallway/secondary/entry) +"qBv" = ( +/obj/machinery/power/apc{ + areastring = "/area/science/robotics/mechbay"; + dir = 4; + name = "Mech Bay APC"; + pixel_x = 24 + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"qBy" = ( +/obj/machinery/hydroponics/constructable, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/service/hydroponics/garden) +"qBG" = ( +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/obj/structure/closet/crate/internals, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/commons/storage/primary) +"qCl" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/effect/landmark/start/security_officer, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/office) +"qCB" = ( +/obj/machinery/microwave{ + pixel_y = 4 + }, +/obj/machinery/camera{ + c_tag = "Engineering - Foyer - Port"; + dir = 1 + }, +/obj/structure/table/glass, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/engineering/break_room) +"qCO" = ( +/obj/machinery/light_switch{ + pixel_x = 23 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/machinery/shower{ + dir = 8; + name = "emergency shower" + }, +/obj/structure/sign/warning/securearea{ + pixel_y = 32 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"qCY" = ( +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private) +"qDg" = ( +/obj/machinery/conveyor/inverted{ + dir = 10; + id = "QMLoad" + }, +/turf/open/floor/plating, +/area/cargo/storage) +"qDt" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/effect/spawner/structure/window/plasma/reinforced, +/turf/open/floor/plating, +/area/engineering/main) +"qDu" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/engineering/main) +"qDJ" = ( +/obj/machinery/portable_atmospherics/canister/nitrous_oxide, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"qEc" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/heat_exchanging/junction, +/turf/open/floor/plating, +/area/science/circuit) +"qEi" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/rd) +"qFr" = ( +/obj/structure/toilet/secret/low_loot{ + pixel_y = 13 + }, +/obj/machinery/light, +/obj/effect/landmark/start/captain, +/obj/machinery/light_switch{ + pixel_y = -25 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/captain/private) +"qGg" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/obj/machinery/light_switch{ + pixel_x = -26 + }, +/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/service/hydroponics/garden) +"qGt" = ( +/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/engineering/gravity_generator) +"qGy" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/nitrous_output{ + dir = 8 + }, +/turf/open/floor/engine/n2o, +/area/engineering/atmos) +"qGP" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"qHe" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 27 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/commons/locker) +"qHn" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/dark/visible{ + dir = 9 + }, +/turf/open/floor/plating, +/area/engineering/atmos) +"qHT" = ( +/turf/open/floor/plasteel, +/area/cargo/miningoffice) +"qHV" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/service/library) +"qIn" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 24 + }, +/obj/structure/table/wood, +/obj/item/reagent_containers/food/snacks/pie/cream, +/turf/open/floor/wood, +/area/service/theater) +"qIp" = ( +/obj/machinery/computer/mecha{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/command/heads_quarters/rd) +"qIq" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/gravity_generator) +"qID" = ( +/obj/structure/sign/warning/securearea, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/closed/wall/r_wall, +/area/ai_monitored/command/nuke_storage) +"qIM" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/computer/rdconsole/production{ + dir = 1 + }, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"qJb" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering{ + name = "Engine Room"; + req_access_txt = "10" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/bot{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/turf/open/floor/plasteel{ + dir = 1 + }, +/area/engineering/main) +"qJh" = ( +/obj/structure/table/wood, +/obj/item/storage/secure/briefcase{ + pixel_x = -2 + }, +/obj/item/book/manual/wiki/security_space_law, +/obj/item/cartridge/detective, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hos) +"qJk" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/wood, +/area/service/bar) +"qJF" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"qJZ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/science/circuit) +"qKo" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/cargo/storage) +"qKC" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/white, +/area/medical/treatment_center) +"qLt" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/light_switch{ + pixel_x = -28 + }, +/obj/machinery/newscaster{ + 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/command/heads_quarters/cmo) +"qMs" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/office) +"qMA" = ( +/obj/structure/table, +/obj/machinery/power/apc{ + areastring = "/area/commons/storage/art"; + dir = 8; + name = "Art Storage APC"; + pixel_x = -25 + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/item/paper_bin, +/obj/item/stack/cable_coil/random, +/obj/item/stack/cable_coil/random, +/obj/item/stack/cable_coil/random, +/obj/item/stack/cable_coil/random, +/obj/item/stack/cable_coil/random, +/turf/open/floor/plasteel, +/area/commons/storage/art) +"qNe" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow, +/turf/open/floor/plating, +/area/security/office) +"qOc" = ( +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -28 + }, +/obj/structure/chair/office/dark{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel/dark, +/area/engineering/break_room) +"qOf" = ( +/obj/structure/sign/directions/supply{ + pixel_y = -5 + }, +/turf/closed/wall, +/area/cargo/office) +"qOI" = ( +/obj/structure/closet/crate, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/item/stack/ore/glass, +/turf/open/floor/plasteel, +/area/cargo/warehouse) +"qOT" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/service/bar) +"qPs" = ( +/obj/machinery/door/airlock{ + id_tag = "AuxToilet2"; + name = "Unit 2" + }, +/turf/open/floor/plasteel, +/area/commons/toilet/auxiliary) +"qPw" = ( +/obj/machinery/vr_sleeper, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"qQe" = ( +/obj/machinery/power/apc{ + areastring = "/area/cargo/warehouse"; + dir = 4; + name = "Warehouse APC"; + pixel_x = 24 + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/effect/landmark/blobstart, +/turf/open/floor/plasteel, +/area/cargo/warehouse) +"qQR" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/service/chapel/office) +"qRa" = ( +/obj/structure/table, +/obj/item/storage/crayons, +/turf/open/floor/plasteel, +/area/commons/dorms) +"qRd" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/commons/dorms) +"qRM" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/turf/open/space, +/area/space/nearstation) +"qSc" = ( +/obj/machinery/vr_sleeper, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"qSJ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/service/kitchen) +"qSK" = ( +/obj/structure/closet/secure_closet/personal, +/obj/item/clothing/under/misc/assistantformal, +/obj/structure/sign/map/right{ + desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; + icon_state = "map-right-MS"; + pixel_y = 32 + }, +/obj/item/clothing/suit/hooded/wintercoat, +/obj/item/clothing/shoes/winterboots, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/commons/locker) +"qSW" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/effect/landmark/start/chaplain, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel/dark, +/area/service/chapel/office) +"qSY" = ( +/obj/machinery/door/poddoor/shutters{ + id = "teleshutter"; + name = "Teleporter Access Shutter" + }, +/obj/machinery/button/door{ + id = "teleshutter"; + name = "Teleporter Shutter Control"; + pixel_x = 30; + pixel_y = 5; + req_access_txt = "19" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/command/teleporter) +"qTB" = ( +/obj/item/paper_bin{ + pixel_x = -2; + pixel_y = 8 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/table/wood, +/obj/structure/noticeboard{ + 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/service/chapel/main) +"qTN" = ( +/obj/structure/chair/stool{ + pixel_y = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/commons/dorms) +"qTR" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/window{ + name = "MiniSat Walkway Access" + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/aisat/exterior) +"qTW" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/commons/toilet/restrooms) +"qUd" = ( +/obj/machinery/meter/atmos/distro_loop, +/obj/machinery/atmospherics/pipe/manifold4w/supply/visible, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/engineering/atmos) +"qUy" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/carpet, +/area/service/library) +"qUM" = ( +/obj/structure/sign/warning/nosmoking, +/turf/closed/wall/r_wall, +/area/engineering/main) +"qUY" = ( +/obj/structure/table/wood, +/obj/item/book/manual/wiki/security_space_law{ + pixel_x = -3; + pixel_y = 5 + }, +/turf/open/floor/wood, +/area/commons/vacant_room/office) +"qVi" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"qVE" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + name = "Mix to Distro" + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"qVT" = ( +/obj/machinery/holopad, +/obj/machinery/status_display/evac{ + pixel_y = 32 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"qVZ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/chair/comfy/brown{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/command/heads_quarters/captain/private) +"qWe" = ( +/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/command/bridge) +"qWh" = ( +/obj/structure/tank_dispenser/oxygen{ + pixel_x = -1; + pixel_y = 2 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_x = 29 + }, +/obj/effect/turf_decal/bot{ + dir = 1 + }, +/turf/open/floor/plasteel{ + dir = 1 + }, +/area/command/gateway) +"qWu" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/wood, +/area/service/theater) +"qWR" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/corner, +/area/engineering/atmos) +"qXd" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/dorms) +"qXX" = ( +/obj/effect/landmark/start/lawyer, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/wood, +/area/service/lawoffice) +"qYO" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics/garden) +"qZf" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -27 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"qZg" = ( +/obj/structure/sign/warning/vacuum/external, +/turf/closed/wall, +/area/cargo/miningoffice) +"qZk" = ( +/obj/machinery/power/apc/highcap/five_k{ + areastring = "/area/hallway/secondary/exit/departure_lounge"; + dir = 1; + name = "Departure Lounge APC"; + pixel_y = 23 + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"qZB" = ( +/obj/effect/spawner/structure/window/reinforced/tinted, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/service/hydroponics/garden) +"qZD" = ( +/obj/structure/closet/crate, +/obj/item/stack/cable_coil, +/obj/item/crowbar, +/obj/item/screwdriver{ + pixel_y = 16 + }, +/obj/machinery/power/apc{ + areastring = "/area/command/teleporter"; + dir = 4; + name = "Teleporter APC"; + pixel_x = 24 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable/yellow{ + 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/command/teleporter) +"qZP" = ( +/obj/structure/table, +/obj/item/hand_tele, +/obj/item/beacon, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command/teleporter) +"ram" = ( +/obj/machinery/computer/arcade{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"rbc" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/oxygen_input{ + dir = 1 + }, +/turf/open/floor/engine/o2, +/area/engineering/atmos) +"rbq" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/plasteel, +/area/cargo/storage) +"rbw" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/commons/storage/primary) +"rbE" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/firealarm{ + pixel_y = -24 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"rbG" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/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/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/office) +"rbX" = ( +/obj/structure/musician/piano, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/sign/poster/random{ + pixel_y = 32 + }, +/turf/open/floor/carpet, +/area/service/theater) +"rcc" = ( +/obj/structure/window/reinforced, +/obj/machinery/computer/cargo/request{ + dir = 8 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/hop) +"rcf" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "Teleport Access"; + req_one_access_txt = "17;19" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/command/teleporter) +"rcL" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"rcO" = ( +/obj/structure/table/wood, +/obj/item/folder/blue, +/obj/item/lighter, +/turf/open/floor/carpet, +/area/command/bridge) +"rcZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/cafeteria, +/area/command/heads_quarters/cmo) +"rdg" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 4 + }, +/obj/machinery/door/airlock/atmos/glass{ + name = "Distribution Loop"; + req_access_txt = "24" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"rdv" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/vending/wardrobe/cargo_wardrobe, +/turf/open/floor/plasteel, +/area/cargo/storage) +"rdE" = ( +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = 21 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/dark, +/area/service/chapel/main) +"rdG" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/machinery/door/poddoor/preopen{ + id = "hosprivacy"; + name = "privacy shutters" + }, +/turf/open/floor/plating, +/area/command/heads_quarters/hos) +"rdR" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"rdV" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"reC" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/service/kitchen) +"reM" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"rfm" = ( +/obj/machinery/holopad, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/carpet, +/area/service/theater) +"rfr" = ( +/obj/structure/table/wood, +/obj/item/storage/photo_album, +/turf/open/floor/engine/cult, +/area/service/library) +"rfC" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/construction/storage_wing) +"rgc" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/closed/wall/r_wall, +/area/ai_monitored/aisat/exterior) +"rgr" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"rgM" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"rhx" = ( +/obj/machinery/light, +/obj/machinery/computer/security/telescreen/minisat{ + dir = 1; + pixel_y = -29 + }, +/obj/structure/bed/dogbed/renault, +/mob/living/simple_animal/pet/fox/Renault, +/turf/open/floor/carpet, +/area/command/heads_quarters/captain/private) +"rhS" = ( +/obj/machinery/power/apc{ + areastring = "/area/medical/cryo"; + dir = 1; + name = "Cryogenics APC"; + pixel_y = 23 + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/obj/item/reagent_containers/glass/beaker/cryoxadone{ + pixel_x = -2; + pixel_y = 9 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/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/item/reagent_containers/dropper, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/cryo) +"rhU" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 4; + name = "Cooling Loop Bypass" + }, +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/engine, +/area/engineering/main) +"rid" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/layer_manifold, +/turf/open/floor/plating, +/area/engineering/atmos) +"rii" = ( +/obj/machinery/vending/tool, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/storage/primary) +"rik" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "Council Chamber"; + req_access_txt = "19" + }, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"rio" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "Captain's Quarters"; + req_access_txt = "20" + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/captain/private) +"rjg" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/command/heads_quarters/rd) +"rjF" = ( +/obj/structure/table, +/obj/item/storage/dice, +/turf/open/floor/plasteel, +/area/commons/locker) +"rkx" = ( +/turf/closed/wall/r_wall, +/area/engineering/supermatter) +"rky" = ( +/obj/structure/closet/crate, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/item/stack/ore/glass, +/obj/item/stack/ore/iron, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/cargo/storage) +"rkT" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/commons/locker) +"rlw" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/table/wood/poker, +/obj/item/toy/cards/deck{ + pixel_y = 4 + }, +/turf/open/floor/wood, +/area/service/bar) +"rlA" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/obj/machinery/status_display/supply{ + pixel_y = 32 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/office) +"rlJ" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + name = "Air to Pure" + }, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"rlO" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/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/treatment_center) +"rms" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"rmu" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"rns" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/effect/landmark/start/security_officer, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/office) +"roa" = ( +/obj/structure/chair/stool, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"rom" = ( +/obj/structure/bed/roller, +/obj/machinery/vending/wallmed{ + pixel_x = -28 + }, +/obj/machinery/camera{ + c_tag = "Gateway - Atrium"; + dir = 4 + }, +/obj/effect/turf_decal/bot{ + dir = 1 + }, +/turf/open/floor/plasteel{ + dir = 1 + }, +/area/command/gateway) +"ros" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command/glass{ + name = "Bridge"; + req_access_txt = "19" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"rov" = ( +/obj/effect/spawner/structure/window, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/medical/treatment_center) +"row" = ( +/turf/closed/wall, +/area/commons/fitness/pool) +"roz" = ( +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"rqx" = ( +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/turf/open/floor/plating, +/area/commons/toilet/auxiliary) +"rqG" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/green/visible, +/turf/open/floor/engine, +/area/engineering/main) +"rrD" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/wood, +/area/commons/vacant_room/office) +"rrX" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/machinery/door/poddoor/preopen{ + id = "rdprivacy"; + name = "privacy shutter" + }, +/turf/open/floor/plating, +/area/command/heads_quarters/rd) +"rsm" = ( +/obj/machinery/light, +/obj/machinery/vending/cola/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/commons/fitness/recreation) +"rta" = ( +/obj/machinery/door/airlock/external{ + dir = 2; + name = "Public Mining Dock" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"rtU" = ( +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"rtZ" = ( +/obj/item/phone{ + desc = "Supposedly a direct line to Nanotrasen Central Command. It's not even plugged in."; + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/cigbutt/cigarbutt{ + pixel_x = 5; + pixel_y = -1 + }, +/obj/structure/table/wood, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/carpet, +/area/command/heads_quarters/hos) +"ruc" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"ruy" = ( +/obj/machinery/computer/prisoner/management, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hos) +"ruI" = ( +/obj/machinery/door/poddoor/shutters{ + id = "qm_mine_warehouse"; + name = "Warehouse Shutters" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/cargo/miningoffice) +"ruP" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible, +/obj/machinery/power/rad_collector/anchored, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/structure/window/plasma/reinforced{ + dir = 1 + }, +/turf/open/floor/engine, +/area/engineering/supermatter) +"rvd" = ( +/obj/structure/rack, +/obj/item/flashlight, +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/light/small, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"rvr" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/command/gateway) +"rvU" = ( +/obj/machinery/power/apc/highcap/ten_k{ + areastring = "/area/engineering/main"; + dir = 8; + name = "Engine Room APC"; + pixel_x = -25 + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"rwk" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ + dir = 8 + }, +/turf/open/floor/engine, +/area/engineering/main) +"rwx" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "MiniSat Exterior - Fore Starboard"; + dir = 4; + network = list("minisat") + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/aisat/exterior) +"rxl" = ( +/obj/machinery/camera{ + c_tag = "Atmospherics Tank - CO2"; + dir = 8 + }, +/turf/open/floor/engine/co2, +/area/engineering/atmos) +"rxt" = ( +/obj/structure/table, +/obj/item/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = -1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/storage/primary) +"rxy" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/landmark/secequipment, +/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/security/office) +"rxK" = ( +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/green/visible, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"rxM" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/engine, +/area/engineering/supermatter) +"rye" = ( +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/nuclearbomb/beer{ + pixel_x = 2; + pixel_y = 6 + }, +/obj/structure/table/wood, +/turf/open/floor/carpet, +/area/command/corporate_showroom) +"ryl" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"ryM" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 27 + }, +/obj/machinery/camera{ + c_tag = "Engineering - Foyer - Starboard"; + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"ryN" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white/corner, +/area/cargo/sorting) +"rze" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"rzp" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/chapel, +/area/service/chapel/main) +"rzt" = ( +/obj/machinery/holopad, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/storage/tcomms) +"rzz" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/commons/dorms) +"rzS" = ( +/obj/machinery/power/apc{ + areastring = "/area/medical/medbay/aft"; + dir = 4; + name = "Medbay Aft APC"; + pixel_x = 24 + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/structure/disposalpipe/junction, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/aft) +"rzT" = ( +/obj/machinery/door/window/southleft{ + name = "Bar Delivery"; + req_access_txt = "25" + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/service/bar) +"rzX" = ( +/obj/structure/chair/office/light{ + dir = 1; + pixel_y = 3 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/lab) +"rAS" = ( +/obj/machinery/camera{ + c_tag = "Atmospherics Tank - Air"; + dir = 8 + }, +/turf/open/floor/engine/air, +/area/engineering/atmos) +"rCg" = ( +/obj/item/stack/ore/silver, +/obj/item/stack/ore/silver, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/cargo/miningoffice) +"rCx" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/wood, +/area/service/lawoffice) +"rCH" = ( +/obj/machinery/door/airlock{ + name = "Kitchen Cold Room"; + req_access_txt = "28" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/service/kitchen) +"rCK" = ( +/obj/item/stack/sheet/plasteel{ + amount = 10; + pixel_x = -2; + pixel_y = 2 + }, +/obj/structure/table, +/obj/item/stack/sheet/rglass{ + amount = 30; + pixel_x = 2; + pixel_y = -2 + }, +/obj/effect/turf_decal/bot{ + dir = 1 + }, +/turf/open/floor/plasteel{ + dir = 1 + }, +/area/engineering/main) +"rDr" = ( +/obj/structure/table, +/obj/item/reagent_containers/food/drinks/sillycup{ + pixel_x = -5; + pixel_y = 3 + }, +/obj/item/reagent_containers/food/drinks/sillycup, +/obj/item/reagent_containers/food/drinks/sillycup{ + pixel_x = 5; + pixel_y = 3 + }, +/obj/item/reagent_containers/food/drinks/sillycup{ + pixel_x = 5; + pixel_y = 3 + }, +/obj/item/reagent_containers/food/drinks/sillycup{ + pixel_x = 5; + 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 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/dark, +/area/commons/fitness/recreation) +"rEX" = ( +/obj/structure/filingcabinet/employment, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/turf/open/floor/wood, +/area/service/lawoffice) +"rGv" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/item/clothing/head/cone{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/clothing/head/cone{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/clothing/head/cone{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/clothing/head/cone{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/clothing/head/cone{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"rGC" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/poddoor/preopen{ + id = "hosprivacy"; + name = "privacy shutters" + }, +/turf/open/floor/plating, +/area/command/heads_quarters/hos) +"rGV" = ( +/obj/machinery/camera{ + c_tag = "Supermatter Chamber"; + dir = 4; + network = list("engine") + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/engine, +/area/engineering/supermatter) +"rHS" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/decal/cleanable/cobweb, +/obj/machinery/button/door{ + id = "Cabin4"; + name = "Cabin Bolt Control"; + normaldoorcontrol = 1; + pixel_x = -25; + specialfunctions = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/obj/structure/bed, +/obj/effect/spawner/lootdrop/bedsheet, +/turf/open/floor/carpet, +/area/commons/dorms) +"rIb" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/commons/locker) +"rIw" = ( +/obj/machinery/hydroponics/constructable, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"rJc" = ( +/turf/closed/wall, +/area/command/teleporter) +"rJL" = ( +/obj/machinery/camera{ + c_tag = "Chapel - Port"; + dir = 4 + }, +/obj/structure/chair/comfy/black{ + dir = 4 + }, +/turf/open/floor/plasteel/chapel{ + dir = 8 + }, +/area/service/chapel/main) +"rJO" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/wood, +/area/commons/dorms) +"rJT" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/light, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/newscaster{ + pixel_y = -32 + }, +/turf/open/floor/plasteel, +/area/commons/locker) +"rJX" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel/freezer, +/area/commons/toilet/restrooms) +"rKe" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters{ + id = "evashutter"; + name = "E.V.A. Storage Shutter" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/ai_monitored/command/storage/eva) +"rKs" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"rKB" = ( +/obj/machinery/computer/bank_machine, +/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/ai_monitored/command/nuke_storage) +"rLB" = ( +/obj/effect/turf_decal/tile/neutral{ + 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/light, +/obj/machinery/gear_painter, +/turf/open/floor/plasteel/dark, +/area/commons/locker) +"rLH" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -24 + }, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/wood, +/area/service/library) +"rLS" = ( +/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/command/gateway) +"rLU" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/commons/locker) +"rLV" = ( +/obj/structure/table, +/obj/item/folder, +/obj/item/paper/guides/jobs/hydroponics, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/item/pen, +/obj/item/storage/crayons, +/turf/open/floor/plasteel, +/area/security/prison) +"rMx" = ( +/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/commons/fitness/recreation) +"rMA" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + name = "Distro to Waste" + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/engineering/atmos) +"rMU" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/cargo/office) +"rNc" = ( +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=8"; + dir = 8; + freq = 1400; + location = "Security" + }, +/obj/structure/plasticflaps/opaque, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/security/office) +"rNi" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/storage/satellite) +"rNT" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "Corporate Showroom"; + req_access_txt = "19" + }, +/turf/open/floor/wood, +/area/command/corporate_showroom) +"rNX" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/sign/poster/official/random{ + pixel_y = -32 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"rOP" = ( +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = 29 + }, +/obj/machinery/modular_computer/console/preset/engineering, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"rPB" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/commons/storage/primary) +"rQj" = ( +/obj/effect/landmark/start/cook, +/obj/machinery/holopad, +/turf/open/floor/plasteel/cafeteria, +/area/service/kitchen) +"rQv" = ( +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"rQy" = ( +/obj/effect/landmark/start/cargo_technician, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/cargo/storage) +"rQO" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/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/command/teleporter) +"rRz" = ( +/obj/item/storage/box/beakers{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/storage/box/syringes, +/obj/machinery/power/apc/highcap/five_k{ + areastring = "/area/medical/virology"; + dir = 1; + name = "Virology APC"; + pixel_y = 23 + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/structure/table/glass, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/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) +"rRZ" = ( +/obj/item/folder, +/obj/item/folder, +/obj/machinery/camera/autoname{ + dir = 1 + }, +/obj/structure/table/wood, +/obj/item/taperecorder, +/obj/item/tape, +/turf/open/floor/wood, +/area/service/library) +"rSx" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/engine, +/area/engineering/supermatter) +"rSB" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/construction/storage_wing) +"rSI" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"rSL" = ( +/obj/machinery/vending/snack/random, +/turf/open/floor/plasteel, +/area/science/mixing) +"rSO" = ( +/obj/structure/table/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/window/westright{ + dir = 4; + name = "Hydroponics Desk"; + req_one_access_txt = "30;35" + }, +/obj/item/folder/white{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/item/folder/white{ + pixel_x = 4; + pixel_y = -3 + }, +/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, +/area/service/hydroponics) +"rTj" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "Council Chamber"; + req_access_txt = "19" + }, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"rTl" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/space, +/area/solars/starboard/fore) +"rTu" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/commons/dorms) +"rTM" = ( +/obj/machinery/door/window/southright{ + dir = 4; + name = "Engineering Deliveries"; + req_access_txt = "10" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/engineering/main) +"rTV" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock{ + name = "Kitchen"; + req_access_txt = "28" + }, +/turf/open/floor/plasteel/cafeteria, +/area/service/kitchen) +"rUl" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/office) +"rUE" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + name = "bridge blast door" + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/turf/open/floor/plating, +/area/command/bridge) +"rUL" = ( +/obj/machinery/cryopod, +/turf/open/floor/plasteel/dark, +/area/commons/cryopod) +"rVu" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/commons/toilet/restrooms) +"rVx" = ( +/obj/structure/chair/comfy/black{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Chapel - Starboard"; + dir = 8 + }, +/turf/open/floor/plasteel/chapel{ + dir = 4 + }, +/area/service/chapel/main) +"rVI" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/dark/visible, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"rWl" = ( +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_x = 29 + }, +/obj/effect/turf_decal/delivery, +/obj/structure/closet/firecloset, +/obj/item/clothing/glasses/meson/engine, +/turf/open/floor/plasteel, +/area/engineering/main) +"rWE" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/service/theater) +"rXs" = ( +/obj/machinery/door/airlock{ + name = "Unit B" + }, +/turf/open/floor/plasteel/freezer, +/area/commons/toilet/restrooms) +"rYf" = ( +/obj/machinery/door/window{ + name = "MiniSat Walkway Access" + }, +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/aisat/exterior) +"rYE" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"rYI" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/item/toy/cards/deck{ + pixel_y = 4 + }, +/obj/structure/table/wood/poker, +/turf/open/floor/wood, +/area/service/bar) +"rYK" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall, +/area/command/bridge) +"rZb" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/storage/primary) +"saf" = ( +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/pen, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -27 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/commons/locker) +"sah" = ( +/obj/structure/chair/stool{ + pixel_y = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"saP" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/ai_monitored/aisat/exterior) +"saR" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/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/service/hydroponics/garden) +"saT" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"sbs" = ( +/obj/structure/closet/secure_closet/personal/cabinet, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/item/clothing/under/misc/assistantformal, +/turf/open/floor/wood, +/area/commons/dorms) +"sbt" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/effect/turf_decal/bot_white/right, +/obj/structure/closet/crate/goldcrate, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/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/command/nuke_storage) +"sbD" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/item/radio/intercom{ + dir = 4; + name = "Station Intercom (General)"; + pixel_x = -27 + }, +/turf/open/floor/plasteel/dark, +/area/service/chapel/office) +"sbM" = ( +/obj/machinery/status_display/evac{ + pixel_x = 32; + pixel_y = 32 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hos) +"sbQ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/green/visible, +/turf/open/floor/engine, +/area/engineering/main) +"sbU" = ( +/obj/structure/table, +/obj/item/cultivator, +/obj/item/hatchet, +/obj/structure/extinguisher_cabinet{ + pixel_x = -27 + }, +/obj/item/paper/guides/jobs/hydroponics, +/obj/item/coin/silver, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics/garden) +"sbY" = ( +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 2 + }, +/obj/machinery/suit_storage_unit/captain, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private) +"sbZ" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/security/office) +"scx" = ( +/obj/structure/plasticflaps, +/obj/machinery/conveyor{ + dir = 8; + id = "QMLoad" + }, +/turf/open/floor/plating, +/area/cargo/storage) +"scD" = ( +/obj/structure/sign/warning/securearea{ + pixel_y = 32 + }, +/obj/structure/closet/radiation, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/delivery, +/obj/item/clothing/glasses/meson/engine, +/turf/open/floor/plasteel, +/area/engineering/main) +"sdi" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/science/circuit) +"sdw" = ( +/obj/structure/window/reinforced, +/turf/open/space, +/area/space) +"sdQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/spawner/structure/window/plasma/reinforced, +/turf/open/floor/plating, +/area/engineering/main) +"sdX" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/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/ai_monitored/command/nuke_storage) +"seC" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/oil, +/turf/open/floor/wood, +/area/command/corporate_showroom) +"seD" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/service/bar) +"seS" = ( +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/pen, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/table/glass, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"sfb" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/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/service/hydroponics) +"sfl" = ( +/obj/machinery/status_display/evac{ + pixel_y = 32 + }, +/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/command/gateway) +"sfr" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/construction/storage_wing) +"sfM" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/obj/item/beacon, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"sfV" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/dark/visible{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engineering/atmos) +"sgy" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -22 + }, +/turf/open/floor/plasteel/dark, +/area/service/chapel/office) +"sgH" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/commons/locker) +"shf" = ( +/obj/item/hand_labeler, +/obj/item/stack/packageWrap, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/table/wood, +/turf/open/floor/wood, +/area/command/heads_quarters/hop) +"shE" = ( +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/aisat/exterior) +"shK" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/closed/wall, +/area/engineering/atmos) +"siC" = ( +/obj/structure/plasticflaps/opaque, +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=4"; + dir = 4; + freq = 1400; + location = "Tool Storage" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/commons/storage/primary) +"siD" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/power/apc{ + areastring = "/area/hallway/secondary/entry"; + dir = 4; + name = "Arrivals APC"; + pixel_x = 24 + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/turf/open/floor/plasteel/white/corner, +/area/hallway/secondary/entry) +"siF" = ( +/obj/structure/grille, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"siT" = ( +/obj/structure/table, +/obj/machinery/recharger, +/obj/effect/turf_decal/bot{ + dir = 1 + }, +/turf/open/floor/plasteel{ + dir = 1 + }, +/area/command/gateway) +"siX" = ( +/obj/structure/closet/secure_closet/personal/cabinet, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/item/clothing/under/suit/burgundy, +/turf/open/floor/carpet, +/area/commons/dorms) +"sjK" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/command/bridge) +"sjN" = ( +/obj/machinery/light/small, +/obj/machinery/button/door{ + id = "chapel_shutters_space"; + name = "chapel shutters control"; + pixel_x = -6; + pixel_y = -25 + }, +/obj/machinery/light_switch{ + pixel_x = 6; + pixel_y = -25 + }, +/turf/open/floor/plasteel/chapel{ + dir = 1 + }, +/area/service/chapel/main) +"skb" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/eastleft{ + dir = 1; + name = "Kitchen Window"; + req_access_txt = "28" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/item/paper, +/obj/machinery/door/window/eastleft{ + dir = 2; + name = "Hydroponics Window"; + req_one_access_txt = "30;35" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"skf" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/obj/effect/landmark/start/security_officer, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/office) +"skn" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 24 + }, +/obj/item/storage/fancy/donut_box, +/obj/structure/table/glass, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"skz" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/bot{ + dir = 1 + }, +/turf/open/floor/plasteel{ + dir = 1 + }, +/area/engineering/main) +"skB" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/plasteel, +/area/commons/storage/tools) +"skV" = ( +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/turf/open/floor/plating, +/area/engineering/main) +"skX" = ( +/turf/open/floor/plasteel, +/area/commons/storage/primary) +"slh" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/ai_monitored/aisat/exterior) +"sln" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/closed/wall, +/area/command/bridge) +"slA" = ( +/obj/structure/table/wood, +/obj/item/stamp/hos, +/turf/open/floor/carpet, +/area/command/heads_quarters/hos) +"smm" = ( +/obj/machinery/shower{ + dir = 4 + }, +/obj/machinery/button/door{ + id = "AuxShower"; + name = "Lock Control"; + normaldoorcontrol = 1; + pixel_y = 25; + specialfunctions = 4 + }, +/obj/item/soap/nanotrasen, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/commons/toilet/auxiliary) +"smu" = ( +/obj/machinery/computer/teleporter{ + dir = 4 + }, +/turf/open/floor/plating, +/area/command/teleporter) +"smA" = ( +/obj/machinery/vending/wardrobe/bar_wardrobe, +/turf/open/floor/wood, +/area/service/bar) +"smH" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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/cafeteria, +/area/command/heads_quarters/cmo) +"smU" = ( +/turf/closed/wall, +/area/engineering/storage/tech) +"snq" = ( +/obj/machinery/door/window/northleft{ + dir = 8; + name = "Inner Pipe Access"; + req_access_txt = "24" + }, +/obj/machinery/atmospherics/pipe/simple/yellow/visible, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"snC" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/circuit/green{ + luminosity = 2 + }, +/area/ai_monitored/command/nuke_storage) +"snM" = ( +/obj/machinery/button/door{ + id = "transittube"; + name = "Transit Tube Lockdown"; + pixel_x = -24; + pixel_y = -5; + req_access_txt = "24" + }, +/obj/machinery/button/door{ + desc = "A remote control-switch for secure storage."; + id = "Secure Storage"; + name = "Engineering Secure Storage"; + pixel_x = -24; + pixel_y = 5; + req_access_txt = "11" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/ce) +"snU" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/wood, +/area/command/corporate_showroom) +"snY" = ( +/obj/structure/closet/wardrobe/pjs, +/obj/machinery/airalarm{ + pixel_y = 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/medical/treatment_center) +"sos" = ( +/obj/structure/mirror, +/turf/closed/wall, +/area/medical/surgery) +"spx" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/cargo/miningoffice) +"spA" = ( +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solars/port/fore) +"spG" = ( +/obj/structure/closet/crate/rcd{ + pixel_y = 4 + }, +/obj/machinery/door/window/northleft{ + dir = 4; + name = "RCD Storage"; + pixel_x = 1; + req_access_txt = "19" + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 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/ai_monitored/command/storage/eva) +"spZ" = ( +/obj/structure/chair/stool, +/turf/open/floor/plasteel/chapel, +/area/service/chapel/main) +"sqe" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/turf/open/space/basic, +/area/space/nearstation) +"sqh" = ( +/turf/closed/wall/r_wall, +/area/ai_monitored/command/storage/eva) +"sqM" = ( +/obj/structure/closet/toolcloset, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = 28 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/storage/tools) +"sra" = ( +/obj/structure/table, +/obj/item/paicard, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/locker) +"ssp" = ( +/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/command/nuke_storage) +"stk" = ( +/obj/machinery/camera{ + c_tag = "Captain's Office"; + dir = 8 + }, +/turf/open/floor/carpet, +/area/command/heads_quarters/captain/private) +"stG" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"stT" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/aisat/exterior) +"suE" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall/r_wall, +/area/engineering/storage/tcomms) +"suL" = ( +/obj/effect/landmark/start/cargo_technician, +/obj/structure/chair/office/dark{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/office) +"suQ" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/construction/storage_wing) +"swu" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/commons/dorms) +"swz" = ( +/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/structure/cable/yellow{ + icon_state = "1-2" + }, +/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/command/heads_quarters/hop) +"swK" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"swT" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command/glass{ + name = "Bridge"; + req_access_txt = "19" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"syi" = ( +/obj/machinery/door/airlock/external{ + name = "Escape Pod Three" + }, +/turf/open/floor/plating, +/area/commons/fitness/recreation) +"syk" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"syK" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/structure/disposalpipe/junction/flip{ + dir = 4 + }, +/turf/open/floor/wood, +/area/service/bar) +"szz" = ( +/obj/structure/sign/warning/securearea, +/turf/closed/wall/r_wall, +/area/command/corporate_showroom) +"szK" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -24 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"szP" = ( +/obj/effect/spawner/structure/window/plasma/reinforced, +/turf/open/floor/plating, +/area/engineering/supermatter) +"sAy" = ( +/obj/structure/table, +/obj/item/storage/toolbox/emergency, +/obj/machinery/light_switch{ + pixel_x = -26 + }, +/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/commons/storage/tools) +"sAH" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"sBc" = ( +/obj/structure/table/wood, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/pen/invisible, +/turf/open/floor/engine/cult, +/area/service/library) +"sBz" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/aisat/exterior) +"sBC" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/medical/paramedic) +"sCy" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/structure/window/reinforced, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/aisat/exterior) +"sCD" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/status_display/ai{ + pixel_y = 32 + }, +/obj/structure/transit_tube/curved{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/break_room) +"sCL" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"sCN" = ( +/obj/item/clothing/suit/ianshirt, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"sCT" = ( +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/machinery/vending/games, +/turf/open/floor/wood, +/area/service/library) +"sDM" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/command/heads_quarters/rd) +"sEp" = ( +/obj/machinery/computer/communications{ + dir = 8 + }, +/obj/item/radio/intercom{ + dir = 8; + freerange = 1; + name = "Station Intercom (Captain)"; + pixel_x = 28 + }, +/obj/machinery/status_display/ai{ + pixel_y = 32 + }, +/obj/machinery/keycard_auth{ + pixel_x = 24; + pixel_y = 24 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private) +"sEG" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/filingcabinet{ + pixel_x = 4 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private) +"sEK" = ( +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/cargo/storage) +"sFb" = ( +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + areastring = "/area/service/chapel/main"; + dir = 8; + name = "Chapel APC"; + pixel_x = -25 + }, +/turf/open/floor/carpet, +/area/service/chapel/main) +"sFd" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/dark, +/area/service/chapel/main) +"sFv" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "47" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"sFR" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solars/port/fore) +"sGh" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/external{ + name = "Solar Maintenance"; + req_access_txt = "10; 13" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/fore) +"sGo" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/purple/visible, +/turf/open/floor/plating, +/area/engineering/atmos) +"sGF" = ( +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/cafeteria, +/area/command/heads_quarters/cmo) +"sGN" = ( +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/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/command/gateway) +"sHf" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Dormitories - Fore"; + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/commons/dorms) +"sHC" = ( +/obj/machinery/computer/security/wooden_tv{ + pixel_x = 1; + pixel_y = 6 + }, +/obj/structure/table/glass, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"sHG" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/plasteel, +/area/cargo/storage) +"sHU" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/locker) +"sIA" = ( +/obj/machinery/door/airlock/external{ + name = "Transport Airlock" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"sIL" = ( +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"sIP" = ( +/obj/structure/chair/stool{ + pixel_y = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/locker) +"sJr" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/obj/machinery/camera{ + c_tag = "Atmospherics - Port-Aft"; + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/engineering/atmos) +"sJT" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/treatment_center) +"sKe" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"sKl" = ( +/turf/closed/wall/r_wall, +/area/command/heads_quarters/captain/private) +"sKp" = ( +/obj/structure/chair/comfy/black{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/commons/vacant_room/office) +"sKv" = ( +/turf/closed/wall, +/area/engineering/atmos) +"sKz" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/closed/wall/r_wall, +/area/engineering/main) +"sKT" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"sKV" = ( +/turf/open/space/basic, +/area/command/heads_quarters/captain) +"sLs" = ( +/obj/effect/decal/cleanable/cobweb, +/obj/machinery/field/generator, +/turf/open/floor/plating, +/area/engineering/main) +"sLW" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"sMk" = ( +/obj/machinery/power/apc{ + areastring = "/area/service/janitor"; + dir = 8; + name = "Custodial Closet APC"; + pixel_x = -25 + }, +/obj/structure/table, +/obj/item/clothing/gloves/color/orange, +/obj/item/storage/box/mousetraps, +/obj/item/storage/box/mousetraps, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/turf/open/floor/plasteel, +/area/service/janitor) +"sMN" = ( +/turf/closed/wall/r_wall, +/area/commons/storage/primary) +"sNj" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/obj/structure/chair/stool{ + pixel_y = 8 + }, +/turf/open/floor/wood, +/area/service/bar) +"sOy" = ( +/obj/structure/rack, +/obj/item/lighter, +/obj/item/clothing/glasses/meson, +/obj/machinery/button/door{ + id = "ceprivacy"; + name = "Privacy Shutters Control"; + pixel_y = -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/command/heads_quarters/ce) +"sOM" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/carpet, +/area/command/heads_quarters/hos) +"sOT" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/engineering/main) +"sPs" = ( +/obj/structure/table, +/obj/item/clothing/under/suit/sl{ + desc = "Whoever wears this makes the rules."; + name = "referee suit" + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"sPC" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/wood, +/area/service/lawoffice) +"sPH" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solars/port/aft) +"sPP" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/commons/storage/primary) +"sPW" = ( +/obj/effect/landmark/start/cook, +/turf/open/floor/plasteel/cafeteria, +/area/service/kitchen) +"sQx" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 8; + sortType = 10 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/cafeteria, +/area/command/heads_quarters/cmo) +"sQY" = ( +/obj/structure/rack, +/obj/machinery/status_display/ai{ + pixel_y = 31 + }, +/obj/effect/spawner/lootdrop/techstorage/medical, +/turf/open/floor/plasteel/dark, +/area/engineering/storage/tech) +"sRw" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/space, +/area/solars/port/aft) +"sRz" = ( +/obj/structure/table, +/obj/item/folder/red, +/obj/item/storage/secure/briefcase, +/turf/open/floor/plasteel, +/area/security/office) +"sRX" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"sSo" = ( +/obj/machinery/button/door{ + desc = "A remote control-switch for the engineering security doors."; + id = "Engineering"; + name = "Engineering Lockdown"; + pixel_x = -24; + pixel_y = -5; + req_access_txt = "10" + }, +/obj/machinery/button/door{ + id = "atmos"; + name = "Atmospherics Lockdown"; + pixel_x = -24; + pixel_y = 5; + req_access_txt = "24" + }, +/obj/machinery/light{ + 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/command/heads_quarters/ce) +"sTr" = ( +/obj/machinery/atmospherics/components/trinary/filter/atmos/co2{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"sTt" = ( +/obj/structure/sign/poster/random, +/turf/closed/wall, +/area/service/bar) +"sTB" = ( +/obj/machinery/portable_atmospherics/canister/nitrogen, +/obj/machinery/atmospherics/miner/nitrogen, +/turf/open/floor/engine/n2, +/area/engineering/atmos) +"sTV" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/structure/cable/yellow, +/turf/open/floor/plating, +/area/construction/storage_wing) +"sUa" = ( +/obj/structure/chair/stool{ + pixel_y = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/dorms) +"sUI" = ( +/obj/structure/table, +/obj/machinery/chem_dispenser/drinks/beer, +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/service/bar) +"sUM" = ( +/obj/structure/sign/warning/vacuum/external{ + pixel_x = -32 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"sVv" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/commons/fitness/recreation) +"sVK" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/effect/landmark/secequipment, +/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/security/office) +"sVS" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/landmark/start/security_officer, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/office) +"sVW" = ( +/obj/machinery/icecream_vat, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/service/kitchen) +"sWZ" = ( +/obj/machinery/atmospherics/pipe/manifold4w/cyan/visible, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"sXr" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hos) +"sXS" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/green/visible{ + dir = 1 + }, +/turf/open/floor/engine, +/area/engineering/main) +"sYh" = ( +/obj/structure/chair/office/dark{ + dir = 4 + }, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/wood, +/area/service/library) +"sYL" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"sZf" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"sZg" = ( +/obj/machinery/air_sensor/atmos/mix_tank, +/turf/open/floor/engine/vacuum, +/area/engineering/atmos) +"sZz" = ( +/obj/structure/table, +/obj/item/paper/fluff/holodeck/disclaimer, +/obj/item/storage/firstaid/regular{ + pixel_x = 3; + pixel_y = -3 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"sZJ" = ( +/obj/structure/table/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/service/bar) +"sZM" = ( +/obj/machinery/power/apc{ + areastring = "/area/commons/storage/tools"; + dir = 1; + name = "Auxiliary Tool Storage APC"; + pixel_y = 23 + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/storage/tools) +"sZN" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plating, +/area/maintenance/port) +"sZQ" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solars/port/fore) +"sZV" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/engine, +/area/engineering/main) +"tac" = ( +/obj/machinery/atmospherics/pipe/manifold4w/general/visible, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"taj" = ( +/obj/structure/chair/office/dark{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -28 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/qm) +"taH" = ( +/obj/machinery/firealarm{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"taX" = ( +/obj/structure/noticeboard{ + desc = "A memorial wall for pinning up momentos"; + name = "memorial board"; + pixel_y = 32 + }, +/obj/item/storage/book/bible, +/obj/structure/table/wood, +/turf/open/floor/carpet, +/area/service/chapel/main) +"taZ" = ( +/obj/structure/table/wood, +/turf/open/floor/wood, +/area/commons/vacant_room/office) +"tbc" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solars/port/fore) +"tbN" = ( +/obj/machinery/status_display/ai{ + pixel_y = 32 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/vending/wardrobe/cap_wardrobe, +/turf/open/floor/carpet, +/area/command/heads_quarters/captain/private) +"tcb" = ( +/obj/machinery/power/smes{ + charge = 5e+006 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/engineering/gravity_generator) +"tde" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/locker) +"tdH" = ( +/obj/machinery/atmospherics/components/binary/pump{ + name = "Mix to Gas" + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/engine, +/area/engineering/main) +"tdK" = ( +/obj/structure/closet/secure_closet/freezer/kitchen, +/turf/open/floor/plasteel/showroomfloor, +/area/service/kitchen) +"tdP" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/computer/bounty{ + dir = 4 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/hop) +"tdQ" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/recharger, +/obj/item/restraints/handcuffs, +/obj/structure/table/glass, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"tdS" = ( +/obj/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/aisat/exterior) +"tdX" = ( +/obj/structure/chair/stool, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/cargo/sorting) +"tej" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/structure/table/wood/poker, +/obj/item/storage/dice, +/turf/open/floor/wood, +/area/service/bar) +"teH" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/effect/turf_decal/loading_area{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"teJ" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -27 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"teM" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plating, +/area/commons/fitness/pool) +"teR" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"teZ" = ( +/turf/closed/wall, +/area/commons/storage/art) +"tfk" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"tfs" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/components/binary/valve{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"tfL" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/storage/tools) +"tfM" = ( +/obj/structure/table/wood, +/obj/item/camera_film{ + pixel_x = -3; + pixel_y = 5 + }, +/obj/item/camera_film{ + pixel_y = 9 + }, +/obj/item/radio/intercom{ + dir = 4; + name = "Station Intercom (General)"; + pixel_x = 27 + }, +/turf/open/floor/wood, +/area/service/library) +"tfR" = ( +/obj/structure/chair/comfy/black, +/turf/open/floor/carpet, +/area/command/bridge) +"tfS" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"tfX" = ( +/obj/structure/chair/wood/wings{ + dir = 8 + }, +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/turf/open/floor/carpet, +/area/service/theater) +"tgn" = ( +/obj/structure/table, +/obj/item/stock_parts/subspace/transmitter, +/obj/item/stock_parts/subspace/transmitter, +/obj/item/stock_parts/subspace/amplifier, +/obj/item/stock_parts/subspace/amplifier, +/obj/item/stock_parts/subspace/amplifier, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/power/apc{ + areastring = "/area/engineering/storage/tcomms"; + dir = 8; + name = "Telecomms Storage APC"; + pixel_x = -25 + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/turf/open/floor/plasteel/dark, +/area/engineering/storage/tcomms) +"tgT" = ( +/obj/machinery/door/poddoor{ + id = "chapelgun"; + name = "Chapel Launcher Door" + }, +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/service/chapel/main) +"thc" = ( +/obj/structure/window/reinforced, +/turf/open/floor/grass, +/area/service/hydroponics/garden) +"thi" = ( +/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/engineering/atmos) +"thm" = ( +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"thq" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"tie" = ( +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 1; + name = "Nitrogen Outlet" + }, +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"tij" = ( +/obj/machinery/computer/station_alert, +/obj/structure/sign/map/right{ + desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; + icon_state = "map-right-MS"; + 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/engineering/main) +"til" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "kitchen"; + name = "Serving Hatch" + }, +/obj/item/reagent_containers/food/condiment/saltshaker{ + pixel_x = -3 + }, +/obj/item/reagent_containers/food/condiment/peppermill{ + pixel_x = 3 + }, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/service/kitchen) +"tim" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/command/gateway) +"tiE" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible, +/obj/machinery/camera{ + c_tag = "Atmospherics - Aft"; + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"tiH" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/light_switch{ + pixel_x = 25 + }, +/turf/open/floor/plasteel/dark, +/area/service/chapel/office) +"tiN" = ( +/obj/structure/chair/comfy/brown, +/obj/effect/landmark/blobstart, +/turf/open/floor/engine/cult, +/area/service/library) +"tiT" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"tjd" = ( +/obj/structure/table, +/obj/item/aicard, +/obj/item/circuitboard/aicore{ + pixel_x = -2; + pixel_y = 4 + }, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/command/heads_quarters/rd) +"tjr" = ( +/obj/machinery/door/window{ + dir = 4; + name = "Mass Driver"; + req_access_txt = "22" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/service/chapel/main) +"tjG" = ( +/obj/machinery/shieldgen, +/turf/open/floor/plating, +/area/engineering/main) +"tjW" = ( +/turf/closed/wall, +/area/cargo/qm) +"tkr" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics/garden) +"tkC" = ( +/obj/machinery/atmospherics/components/binary/pump{ + name = "Mix to Ports" + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"tkS" = ( +/obj/machinery/atmospherics/pipe/manifold4w/general/visible, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"tkT" = ( +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/command/heads_quarters/rd) +"tlc" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/command/storage/eva) +"tlp" = ( +/obj/item/candle, +/obj/machinery/light_switch{ + pixel_x = -27 + }, +/obj/effect/decal/cleanable/cobweb, +/obj/structure/table/wood, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/service/chapel/main) +"tlF" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/grunge{ + name = "Club" + }, +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/service/bar) +"tmg" = ( +/turf/closed/wall, +/area/command/bridge) +"tmr" = ( +/obj/structure/table, +/obj/item/cartridge/quartermaster{ + pixel_x = -4; + pixel_y = 7 + }, +/obj/item/cartridge/quartermaster{ + pixel_x = 6; + pixel_y = 5 + }, +/obj/item/cartridge/quartermaster, +/obj/item/gps{ + gpstag = "QM0" + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/machinery/keycard_auth{ + pixel_y = 23 + }, +/obj/item/clipboard, +/turf/open/floor/plasteel, +/area/cargo/qm) +"tmB" = ( +/obj/structure/cable/yellow{ + 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/service/chapel/main) +"tnh" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"tnA" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/commons/locker) +"tnE" = ( +/obj/machinery/smartfridge, +/turf/closed/wall, +/area/service/hydroponics) +"toC" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/command/storage/eva) +"toN" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/engineering/glass{ + name = "Power Monitoring"; + req_access_txt = "32" + }, +/obj/effect/turf_decal/bot{ + dir = 1 + }, +/turf/open/floor/plasteel{ + dir = 1 + }, +/area/engineering/main) +"tpe" = ( +/obj/structure/table, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/service/kitchen) +"tpE" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/engine, +/area/science/xenobiology) +"tpO" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"tqm" = ( +/obj/machinery/photocopier{ + pixel_y = 3 + }, +/turf/open/floor/plasteel, +/area/security/office) +"tqG" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/carpet, +/area/command/heads_quarters/captain/private) +"tqV" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + name = "CO2 Outlet Pump" + }, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"tre" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/port) +"trj" = ( +/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/engineering/gravity_generator) +"trn" = ( +/obj/machinery/door/poddoor/preopen{ + id = "atmos"; + name = "Atmospherics Blast Door" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"tsn" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/commons/storage/primary) +"tsx" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"tsF" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/commons/storage/primary) +"tsH" = ( +/turf/closed/wall/r_wall, +/area/command/heads_quarters/hos) +"ttx" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/command/teleporter) +"ttF" = ( +/obj/machinery/door/morgue{ + name = "Chapel Garden" + }, +/turf/open/floor/plasteel/cult, +/area/service/chapel/main) +"ttQ" = ( +/obj/machinery/camera{ + c_tag = "Auxiliary Tool Storage"; + dir = 8 + }, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/storage/tools) +"ttU" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/machinery/portable_atmospherics/scrubber, +/obj/machinery/status_display/evac{ + pixel_y = 30 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/commons/locker) +"tuB" = ( +/obj/machinery/door/airlock{ + name = "Theatre Backstage"; + req_access_txt = "46" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/wood, +/area/service/theater) +"txb" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/corner, +/area/engineering/break_room) +"txh" = ( +/obj/machinery/door/airlock/hatch{ + name = "Telecomms Control Room"; + req_one_access_txt = "19; 61" + }, +/turf/open/floor/plasteel/dark, +/area/tcommsat/computer) +"txj" = ( +/obj/structure/chair/office/light{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"txq" = ( +/obj/structure/table/wood/fancy/blue, +/obj/structure/table/wood/fancy/royalblue, +/obj/structure/sign/painting/library_secure{ + pixel_x = 32 + }, +/obj/machinery/door/window{ + dir = 8; + name = "Secure Art Exhibition"; + req_access_txt = "37" + }, +/obj/structure/window/reinforced/spawner, +/turf/open/floor/wood, +/area/service/library) +"txP" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/commons/locker) +"tyt" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/aisat/exterior) +"tyC" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"tyM" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"tyY" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/service/theater) +"tzk" = ( +/obj/effect/turf_decal/tile/neutral{ + 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/commons/fitness/recreation) +"tzl" = ( +/obj/structure/table/wood, +/obj/item/staff/broom, +/obj/item/wrench, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/obj/structure/sign/poster/random{ + pixel_y = 32 + }, +/turf/open/floor/wood, +/area/service/theater) +"tzp" = ( +/obj/effect/landmark/xeno_spawn, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solars/starboard/fore) +"tAp" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics/garden) +"tBW" = ( +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/cargo/sorting) +"tCA" = ( +/obj/machinery/disposal/bin{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/light_switch{ + pixel_y = -28 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"tCH" = ( +/obj/structure/filingcabinet/filingcabinet, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/office) +"tDG" = ( +/obj/machinery/power/terminal, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/engineering/main) +"tDJ" = ( +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/aisat/exterior) +"tDZ" = ( +/obj/machinery/computer/cryopod{ + dir = 4; + pixel_x = -26 + }, +/turf/open/floor/plasteel/dark, +/area/commons/cryopod) +"tEo" = ( +/obj/structure/table/wood, +/obj/item/paper_bin{ + pixel_x = 1; + pixel_y = 9 + }, +/obj/item/pen, +/obj/structure/window/reinforced, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private) +"tFp" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/airlock{ + name = "Dormitories" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/commons/dorms) +"tFA" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 0; + name = "External to Filter" + }, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/engineering/atmos) +"tFH" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"tFJ" = ( +/obj/structure/bodycontainer/morgue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"tGc" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/obj/structure/cable/yellow{ + 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/security/office) +"tGD" = ( +/obj/structure/closet/crate, +/obj/structure/extinguisher_cabinet{ + pixel_x = 27 + }, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 3; + name = "3maintenance loot spawner" + }, +/turf/open/floor/plasteel, +/area/cargo/warehouse) +"tHe" = ( +/obj/structure/closet/wardrobe/pjs, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/medical/treatment_center) +"tHs" = ( +/obj/machinery/hydroponics/constructable, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"tHz" = ( +/obj/effect/landmark/start/cargo_technician, +/turf/open/floor/plasteel, +/area/cargo/storage) +"tHP" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"tHZ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/wood, +/area/service/library) +"tIh" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/white, +/area/medical/treatment_center) +"tIB" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/window/westleft{ + dir = 4; + name = "Hydroponics Desk"; + req_one_access_txt = "30;35" + }, +/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, +/area/service/hydroponics) +"tID" = ( +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 4; + name = "Space Loop Out" + }, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"tIF" = ( +/obj/item/storage/belt/utility, +/obj/item/radio/off, +/obj/item/radio/off, +/obj/item/radio/off, +/obj/structure/rack, +/obj/machinery/button/door{ + id = "gateshutter"; + name = "Gateway Shutter Control"; + pixel_y = -26; + req_access_txt = "19" + }, +/obj/effect/turf_decal/bot{ + dir = 1 + }, +/turf/open/floor/plasteel{ + dir = 1 + }, +/area/command/gateway) +"tJe" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp/green{ + pixel_x = 1; + pixel_y = 5 + }, +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 2 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/item/bikehorn/rubberducky, +/obj/machinery/light_switch{ + pixel_x = -28 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private) +"tJj" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/engineering/main) +"tJG" = ( +/obj/structure/cable/yellow, +/obj/machinery/power/apc{ + areastring = "/area/maintenance/department/science/xenobiology"; + dir = 4; + name = "Test Chamber Maintenance APC"; + pixel_x = 24 + }, +/turf/open/floor/plating, +/area/maintenance/department/science/xenobiology) +"tJQ" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/command/heads_quarters/captain/private) +"tJR" = ( +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = 21 + }, +/obj/machinery/camera{ + c_tag = "Engineering - Fore" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"tKr" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable/yellow{ + 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/construction/storage_wing) +"tKM" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/service/kitchen) +"tLi" = ( +/turf/closed/wall, +/area/commons/storage/primary) +"tLk" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/commons/locker) +"tLu" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp, +/turf/open/floor/wood, +/area/commons/vacant_room/office) +"tLZ" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/conveyor{ + dir = 1; + id = "QMLoad2" + }, +/turf/open/floor/plating, +/area/cargo/storage) +"tMe" = ( +/obj/structure/sign/plaques/kiddie/perfect_drone{ + pixel_y = 32 + }, +/obj/structure/table/wood, +/obj/item/storage/backpack/duffelbag/drone, +/obj/structure/window/reinforced, +/turf/open/floor/carpet, +/area/command/corporate_showroom) +"tMo" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/commons/fitness/recreation) +"tMD" = ( +/turf/closed/wall/r_wall, +/area/engineering/storage/tech) +"tMJ" = ( +/obj/structure/chair/office/dark{ + dir = 8 + }, +/turf/open/floor/wood, +/area/service/library) +"tMN" = ( +/turf/open/floor/plasteel, +/area/engineering/break_room) +"tMO" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/commons/locker) +"tNq" = ( +/obj/structure/table, +/obj/item/folder/white{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/item/clothing/neck/stethoscope, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/power/apc{ + areastring = "/area/medical/patients_rooms/room_a"; + dir = 8; + name = "Patient Room A APC"; + pixel_x = -25 + }, +/obj/structure/cable/yellow{ + icon_state = "0-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/patients_rooms/room_a) +"tNF" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"tNG" = ( +/obj/structure/table/reinforced, +/obj/item/paper, +/turf/open/floor/plasteel, +/area/security/office) +"tNR" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"tNX" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -24 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"tNY" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/holopad/secure, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/aisat/exterior) +"tOg" = ( +/obj/structure/table, +/obj/item/storage/fancy/donut_box, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/effect/turf_decal/bot{ + dir = 1 + }, +/turf/open/floor/plasteel{ + dir = 1 + }, +/area/command/gateway) +"tOA" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/start/cargo_technician, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/cargo/office) +"tOX" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/button/door{ + id = "qm_warehouse"; + name = "Warehouse Door Control"; + pixel_y = -24; + req_access_txt = "50" + }, +/turf/open/floor/plasteel, +/area/cargo/warehouse) +"tPJ" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/engineering/gravity_generator) +"tPT" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/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/commons/fitness/recreation) +"tQs" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/landmark/start/atmospheric_technician, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/engineering/atmos) +"tQK" = ( +/obj/structure/table, +/obj/item/stack/sheet/metal/fifty, +/obj/item/stack/sheet/glass/fifty, +/obj/machinery/power/apc{ + areastring = "/area/ai_monitored/command/storage/satellite"; + name = "MiniSat Maint APC"; + pixel_y = -26 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow, +/obj/item/stack/sheet/mineral/plasma{ + amount = 35 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/storage/satellite) +"tQS" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/office) +"tRh" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock{ + name = "Unisex Restrooms" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/freezer, +/area/commons/toilet/restrooms) +"tRj" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/obj/machinery/camera{ + c_tag = "Chapel - Funeral Parlour"; + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/service/chapel/main) +"tRn" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/wood, +/area/service/bar) +"tSa" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"tTX" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/structure/chair/stool{ + pixel_y = 8 + }, +/turf/open/floor/wood, +/area/service/bar) +"tUa" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/canister/air, +/turf/open/floor/plating, +/area/maintenance/port) +"tUr" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/engine/co2, +/area/engineering/atmos) +"tUN" = ( +/obj/machinery/conveyor_switch/oneway{ + id = "packageSort2"; + pixel_x = -8; + pixel_y = -2 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/cargo/storage) +"tUP" = ( +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=8"; + dir = 8; + freq = 1400; + location = "QM #4" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/door/window/southleft, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/cargo/storage) +"tUY" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/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/service/hydroponics) +"tVt" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/construction/storage_wing) +"tVM" = ( +/obj/structure/cable/yellow{ + 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/engineering/storage/tech) +"tVY" = ( +/obj/structure/closet/crate, +/obj/item/target/alien, +/obj/item/target/alien, +/obj/item/target/clown, +/obj/item/target/clown, +/obj/item/target/syndicate, +/obj/item/target/syndicate, +/obj/item/gun/energy/laser/practice, +/obj/item/gun/energy/laser/practice, +/turf/open/floor/plasteel, +/area/science/circuit) +"tWo" = ( +/obj/effect/landmark/xeno_spawn, +/obj/item/soap/deluxe, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/shower{ + pixel_y = 12 + }, +/obj/structure/curtain, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/captain/private) +"tWp" = ( +/obj/structure/closet{ + name = "spare parts locker" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/obj/item/rack_parts, +/obj/item/rack_parts, +/obj/item/wrench, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/service/kitchen) +"tXp" = ( +/obj/machinery/status_display/evac{ + pixel_y = 32 + }, +/obj/structure/table/glass, +/obj/item/paper_bin{ + pixel_x = -2; + pixel_y = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/cafeteria, +/area/command/heads_quarters/cmo) +"tXH" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/machinery/atmospherics/components/trinary/filter/flipped/critical, +/turf/open/floor/engine, +/area/engineering/main) +"tXK" = ( +/obj/machinery/air_sensor/atmos/toxins_mixing_tank, +/turf/open/floor/engine/vacuum, +/area/science/mixing) +"tXO" = ( +/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 = 8 + }, +/turf/open/floor/engine, +/area/engineering/supermatter) +"tXR" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/aisat/exterior) +"tXZ" = ( +/obj/machinery/food_cart, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/service/kitchen) +"tYa" = ( +/obj/machinery/button/crematorium{ + id = "crematoriumChapel"; + pixel_x = -26; + req_access_txt = "27" + }, +/turf/open/floor/plasteel/dark, +/area/service/chapel/office) +"tYf" = ( +/obj/structure/chair{ + pixel_y = -2 + }, +/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/service/chapel/main) +"tYn" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/reagent_dispensers/peppertank{ + pixel_x = -32 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/office) +"tZe" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"tZi" = ( +/obj/effect/spawner/structure/window/plasma/reinforced, +/turf/open/floor/plating, +/area/engineering/main) +"tZV" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"uar" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/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/commons/fitness/recreation) +"uaH" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Library Maintenance"; + req_one_access_txt = "12;37" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/port) +"ubJ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/toilet/auxiliary) +"ubO" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 5 + }, +/turf/closed/wall/r_wall, +/area/engineering/supermatter) +"uch" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/open/floor/wood, +/area/service/library) +"uck" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/commons/locker) +"ucp" = ( +/obj/structure/table, +/obj/item/clipboard, +/obj/item/folder/yellow, +/obj/item/folder/yellow, +/obj/item/multitool, +/obj/item/pen/red, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/office) +"ucy" = ( +/obj/machinery/door/airlock/command{ + name = "Command Desk"; + req_access_txt = "19" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"ucP" = ( +/obj/machinery/button/door{ + id = "engsm"; + name = "Radiation Shutters Control"; + pixel_x = 24; + req_access_txt = "10" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ + dir = 8 + }, +/turf/open/floor/engine, +/area/engineering/main) +"ucR" = ( +/obj/structure/bed/roller, +/obj/item/radio/intercom{ + broadcasting = 1; + frequency = 1485; + listening = 0; + name = "Station Intercom (Medbay)"; + pixel_x = -30 + }, +/obj/machinery/camera{ + c_tag = "Medbay Sleepers"; + dir = 4; + network = list("ss13","medbay") + }, +/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/white, +/area/medical/treatment_center) +"ucX" = ( +/obj/machinery/recharger, +/obj/item/storage/secure/safe{ + pixel_x = 34 + }, +/obj/structure/table/wood, +/turf/open/floor/wood, +/area/command/heads_quarters/hop) +"uds" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/carpet, +/area/service/theater) +"uew" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + 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/commons/locker) +"ufk" = ( +/obj/item/storage/secure/safe{ + pixel_x = 6; + pixel_y = 30 + }, +/obj/machinery/camera{ + c_tag = "Chief Engineer's Office" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/ce) +"ufW" = ( +/obj/machinery/power/apc{ + areastring = "/area/command/heads_quarters/cmo"; + dir = 4; + name = "CMO's Office APC"; + pixel_x = 24 + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/machinery/camera{ + c_tag = "CMO's Office"; + dir = 8; + network = list("ss13","medbay") + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/cafeteria, +/area/command/heads_quarters/cmo) +"ugm" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/rack, +/obj/item/clothing/suit/hazardvest, +/obj/item/clothing/suit/hazardvest, +/obj/item/clothing/suit/hazardvest, +/obj/item/clothing/gloves/color/black, +/obj/item/clothing/gloves/color/black, +/obj/item/clothing/gloves/color/black, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/turf/open/floor/plasteel/cafeteria, +/area/engineering/atmos) +"uhi" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/engineering/storage/tech) +"uhB" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/engineering/atmos) +"uia" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/engine, +/area/engineering/main) +"uih" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/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/engineering/storage/tech) +"uim" = ( +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/space/nearstation) +"uit" = ( +/obj/structure/closet/wardrobe/pjs, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/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/commons/dorms) +"uiF" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/command/bridge) +"uiQ" = ( +/obj/machinery/light_switch{ + pixel_x = 28 + }, +/turf/open/floor/wood, +/area/service/library) +"uiZ" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"ujb" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel, +/area/engineering/gravity_generator) +"ujE" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/commons/locker) +"ukJ" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/commons/dorms) +"ulG" = ( +/obj/effect/turf_decal/stripes/line, +/obj/structure/table, +/obj/item/flashlight, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"umv" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"umz" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 24 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/rnd/production/techfab/department/cargo, +/turf/open/floor/plasteel, +/area/cargo/storage) +"umO" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/dorms) +"unm" = ( +/obj/structure/table, +/obj/item/stock_parts/subspace/filter, +/obj/item/stock_parts/subspace/filter, +/obj/item/stock_parts/subspace/filter, +/obj/item/stock_parts/subspace/filter, +/obj/item/stock_parts/subspace/filter, +/turf/open/floor/plasteel/dark, +/area/engineering/storage/tcomms) +"unn" = ( +/obj/machinery/requests_console{ + department = "Kitchen"; + departmentType = 2; + pixel_x = 30 + }, +/obj/machinery/processor, +/turf/open/floor/plasteel/cafeteria, +/area/service/kitchen) +"unK" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/service/kitchen) +"unQ" = ( +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_x = -30 + }, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/computer/atmos_alert, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/engineering/atmos) +"uot" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/power/port_gen/pacman, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/engineering/gravity_generator) +"uoM" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "atmos"; + name = "Atmospherics Blast Door" + }, +/obj/structure/cable/yellow, +/turf/open/floor/plating, +/area/engineering/atmos) +"upd" = ( +/obj/structure/cable, +/obj/machinery/power/solar{ + id = "forestarboard"; + name = "Fore-Starboard Solar Array" + }, +/turf/open/floor/plasteel/airless/solarpanel, +/area/solars/starboard/fore) +"upN" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/science/circuit) +"upO" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/service/bar) +"uqh" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/construction/storage_wing) +"uqB" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/light_switch{ + pixel_x = -26 + }, +/turf/open/floor/wood, +/area/service/theater) +"url" = ( +/obj/structure/closet/wardrobe/mixed, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/commons/locker) +"urs" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"urv" = ( +/turf/closed/wall/mineral/plastitanium, +/area/security/prison) +"urB" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/chair/stool, +/turf/open/floor/plasteel/chapel{ + dir = 1 + }, +/area/service/chapel/main) +"urI" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/space, +/area/solars/starboard/aft) +"usb" = ( +/obj/machinery/light/built{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/pool) +"usd" = ( +/obj/machinery/computer/security/telescreen/entertainment, +/turf/closed/wall, +/area/service/kitchen) +"usf" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/open/floor/plating, +/area/maintenance/port) +"usx" = ( +/obj/machinery/status_display/supply, +/turf/closed/wall, +/area/security/checkpoint/supply) +"usB" = ( +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/obj/machinery/power/emitter/anchored{ + dir = 1; + state = 2 + }, +/turf/open/floor/plating, +/area/engineering/main) +"usC" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 9 + }, +/turf/closed/wall/r_wall, +/area/engineering/atmos) +"usL" = ( +/obj/machinery/door/firedoor, +/obj/machinery/mineral/ore_redemption, +/turf/open/floor/plasteel/dark, +/area/cargo/office) +"usM" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"utH" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/cargo/storage) +"utI" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/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/treatment_center) +"utQ" = ( +/obj/structure/chair/stool{ + pixel_y = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/commons/dorms) +"uuf" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/engineering/glass{ + name = "Supermatter Engine"; + req_access_txt = "10" + }, +/turf/open/floor/plating, +/area/engineering/main) +"uun" = ( +/obj/machinery/vending/assist, +/turf/open/floor/plasteel, +/area/science/mixing) +"uuu" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"uuU" = ( +/obj/effect/spawner/structure/window/reinforced/tinted, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/commons/dorms) +"uvm" = ( +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/wood, +/area/service/library) +"uvH" = ( +/obj/structure/window/reinforced, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/aisat/exterior) +"uvZ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/effect/landmark/start/janitor, +/turf/open/floor/plasteel, +/area/service/janitor) +"uwx" = ( +/obj/structure/table, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -26 + }, +/obj/machinery/chem_dispenser/drinks, +/obj/structure/sign/barsign{ + pixel_y = 32 + }, +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/service/bar) +"uwH" = ( +/obj/machinery/atmospherics/pipe/simple/dark/visible{ + dir = 10 + }, +/turf/closed/wall/r_wall, +/area/engineering/atmos) +"uxs" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/structure/cable/yellow, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/construction/storage_wing) +"uxT" = ( +/obj/machinery/door/window/eastright{ + base_state = "left"; + dir = 8; + icon_state = "left"; + name = "Security Delivery"; + req_access_txt = "1" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/security/office) +"uyl" = ( +/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/engineering/storage/tech) +"uyq" = ( +/obj/structure/table/wood, +/obj/structure/mirror{ + pixel_x = -28 + }, +/obj/item/lipstick/black, +/obj/item/lipstick/jade{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/lipstick/purple{ + pixel_x = -2; + pixel_y = -2 + }, +/turf/open/floor/wood, +/area/service/theater) +"uyH" = ( +/obj/machinery/atmospherics/pipe/simple/orange/visible, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/engineering/main) +"uzi" = ( +/obj/structure/chair, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"uzX" = ( +/obj/structure/displaycase/captain{ + pixel_y = 5 + }, +/obj/machinery/status_display/evac{ + pixel_y = 32 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private) +"uzY" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood, +/area/service/bar) +"uBW" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"uCe" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/carpet, +/area/command/heads_quarters/captain/private) +"uCj" = ( +/obj/structure/rack, +/obj/item/storage/briefcase, +/obj/item/storage/briefcase{ + pixel_x = 4; + pixel_y = -2 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/commons/locker) +"uCo" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/office) +"uDl" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"uDy" = ( +/obj/structure/lattice/catwalk, +/turf/closed/wall/r_wall, +/area/engineering/atmos) +"uDX" = ( +/obj/structure/table/wood, +/obj/item/paper_bin{ + pixel_x = -2; + pixel_y = 4 + }, +/obj/item/stamp/hop{ + pixel_x = -4; + pixel_y = 4 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/hop) +"uEe" = ( +/obj/structure/bookcase, +/turf/open/floor/wood, +/area/command/corporate_showroom) +"uEu" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"uEC" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/open/floor/wood, +/area/commons/vacant_room/office) +"uED" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ + dir = 1 + }, +/turf/open/floor/plating, +/area/engineering/atmos) +"uFM" = ( +/obj/machinery/power/emitter, +/obj/machinery/light/small, +/turf/open/floor/plating, +/area/engineering/main) +"uGe" = ( +/turf/open/floor/plating, +/area/commons/fitness/recreation) +"uGl" = ( +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/obj/machinery/power/emitter/anchored{ + dir = 1; + state = 2 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engineering/main) +"uGn" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/open/floor/carpet, +/area/command/heads_quarters/hop) +"uGy" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"uGB" = ( +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=14.8-Dorms-Lockers"; + location = "14.5-Recreation" + }, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"uGW" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"uHc" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"uHd" = ( +/obj/structure/chair/comfy/black, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hos) +"uHq" = ( +/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/spawner/lootdrop/maintenance, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/cargo/sorting) +"uIA" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"uIN" = ( +/obj/structure/table/wood, +/obj/item/folder/white{ + pixel_x = 4; + pixel_y = -3 + }, +/turf/open/floor/wood, +/area/commons/vacant_room/office) +"uIY" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics/garden) +"uJq" = ( +/obj/effect/turf_decal/tile/neutral{ + 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/holopad/secure, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"uJM" = ( +/obj/structure/rack, +/obj/item/electronics/apc, +/obj/item/electronics/airlock, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/storage/tools) +"uJR" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/machinery/light_switch{ + pixel_x = -22 + }, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"uJU" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/starboard) +"uKL" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/engineering/atmos) +"uLh" = ( +/turf/open/floor/engine/air, +/area/engineering/atmos) +"uLo" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/engineering/break_room) +"uLv" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 10 + }, +/turf/open/floor/engine, +/area/engineering/main) +"uLG" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/service/kitchen) +"uMQ" = ( +/obj/machinery/camera{ + c_tag = "Bar" + }, +/obj/machinery/requests_console{ + department = "Bar"; + departmentType = 2; + pixel_y = 30; + receive_ore_updates = 1 + }, +/obj/structure/table, +/obj/item/book/manual/wiki/barman_recipes{ + pixel_y = 5 + }, +/obj/item/reagent_containers/food/drinks/shaker, +/obj/item/reagent_containers/rag{ + pixel_y = 5 + }, +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/service/bar) +"uOc" = ( +/obj/effect/landmark/start/captain, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/chair/comfy/brown{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/command/heads_quarters/captain/private) +"uOg" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"uOv" = ( +/obj/structure/sign/directions/evac, +/obj/structure/sign/directions/medical{ + pixel_y = 8 + }, +/obj/structure/sign/directions/science{ + pixel_y = -8 + }, +/turf/closed/wall, +/area/service/library) +"uPN" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/gravity_generator) +"uPZ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/commons/locker) +"uQP" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solars/port/aft) +"uQY" = ( +/obj/machinery/door/airlock{ + id_tag = "Toilet3"; + name = "Unit 3" + }, +/turf/open/floor/plasteel/freezer, +/area/commons/toilet/restrooms) +"uRL" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/aisat/exterior) +"uRM" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"uSn" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hos) +"uSt" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/sign/warning/vacuum/external, +/turf/open/floor/plating, +/area/cargo/storage) +"uTa" = ( +/obj/structure/chair, +/obj/effect/landmark/start/chaplain, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/grimy, +/area/service/chapel/office) +"uTg" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/closed/wall, +/area/engineering/atmos) +"uTn" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/engineering/gravity_generator) +"uTS" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/item/kirbyplants{ + icon_state = "plant-10" + }, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"uUx" = ( +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_x = -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/command/heads_quarters/ce) +"uVj" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=14.5-Recreation"; + location = "14.3-Lockers-Dorms" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/locker) +"uVk" = ( +/obj/structure/table, +/obj/item/folder/red, +/obj/item/book/manual/wiki/security_space_law{ + pixel_x = -3; + pixel_y = 5 + }, +/obj/item/clothing/mask/gas/sechailer, +/turf/open/floor/plasteel, +/area/security/office) +"uVl" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics/garden) +"uVQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/closed/wall, +/area/cargo/sorting) +"uWi" = ( +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=8"; + dir = 8; + freq = 1400; + location = "QM #1" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/door/window/northleft, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/mob/living/simple_animal/bot/mulebot{ + beacon_freq = 1400; + home_destination = "QM #1"; + suffix = "#1" + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"uWj" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/button/door{ + id = "bridge blast"; + name = "Bridge Access Blast Door Control"; + pixel_x = -24; + pixel_y = -24; + req_access_txt = "19" + }, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"uWO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/wood, +/area/command/corporate_showroom) +"uXM" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/machinery/door/poddoor/preopen{ + id = "hosspace"; + name = "space shutters" + }, +/turf/open/floor/plating, +/area/command/heads_quarters/hos) +"uXT" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"uYc" = ( +/obj/structure/table, +/obj/item/stock_parts/subspace/analyzer, +/obj/item/stock_parts/subspace/analyzer, +/obj/item/stock_parts/subspace/analyzer, +/obj/machinery/light_switch{ + pixel_y = 26 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/storage/tcomms) +"uYg" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/turf/open/floor/plating, +/area/engineering/main) +"uYk" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"uYl" = ( +/obj/machinery/light_switch{ + pixel_y = -28 + }, +/obj/machinery/vending/wardrobe/law_wardrobe, +/turf/open/floor/wood, +/area/service/lawoffice) +"uZi" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/computer/security/telescreen{ + desc = "Used for monitoring the engine."; + dir = 8; + name = "Engine Monitor"; + network = list("engine"); + 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/command/heads_quarters/ce) +"uZF" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/aisat/exterior) +"uZH" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"uZM" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/turf/open/floor/engine, +/area/engineering/main) +"vaA" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/engineering/supermatter) +"vbx" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel/chapel{ + dir = 8 + }, +/area/service/chapel/main) +"vbz" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/command/gateway) +"vbR" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"vbZ" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/commons/dorms) +"vcj" = ( +/obj/structure/sign/warning/vacuum/external{ + pixel_y = -32 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/engineering/atmos) +"vck" = ( +/obj/structure/table, +/obj/machinery/microwave{ + pixel_x = -3; + pixel_y = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/turf/open/floor/plasteel, +/area/cargo/warehouse) +"vda" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 9 + }, +/turf/open/space, +/area/space/nearstation) +"vdd" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/engineering/main) +"vdw" = ( +/obj/machinery/power/apc{ + areastring = "/area/maintenance/solars/port/aft"; + dir = 8; + name = "Port Quarter Solar APC"; + pixel_x = -25; + pixel_y = 3 + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/solars/port/aft) +"vdx" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/loading_area{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/cargo/warehouse) +"vdB" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/reagent_dispensers/peppertank{ + pixel_x = 30 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 27; + pixel_y = 29 + }, +/obj/machinery/suit_storage_unit/hos, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hos) +"veq" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = -2; + pixel_y = 8 + }, +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 9 + }, +/turf/open/floor/plasteel/dark/corner, +/area/engineering/atmos) +"ver" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/service/chapel/main) +"veI" = ( +/obj/structure/bookcase/random/adult, +/turf/open/floor/wood, +/area/service/library) +"veT" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"vfd" = ( +/obj/machinery/shieldwallgen, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command/teleporter) +"vfj" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/security/office) +"vfr" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/carpet, +/area/service/library) +"vfw" = ( +/obj/structure/closet/crate, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/item/radio/intercom{ + dir = 4; + name = "Station Intercom (General)"; + pixel_x = 27 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/cargo/miningoffice) +"vfz" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/hop) +"vfK" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/commons/locker) +"vfZ" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/shower{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -27 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"vgD" = ( +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/transit_tube/curved/flipped, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/aisat/exterior) +"vgI" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/engineering/main) +"vgW" = ( +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/miningoffice) +"vhg" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood, +/area/service/bar) +"vhj" = ( +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + areastring = "/area/maintenance/port/fore"; + dir = 4; + name = "Port Bow Maintenance APC"; + pixel_x = 24 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg2" + }, +/area/maintenance/port/fore) +"vhq" = ( +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solars/starboard/fore) +"vhG" = ( +/obj/structure/table/glass, +/obj/machinery/camera/autoname{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/misc_lab) +"vhM" = ( +/obj/machinery/teleport/hub, +/turf/open/floor/plating, +/area/command/teleporter) +"vic" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 27 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel/freezer, +/area/commons/toilet/restrooms) +"viK" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow, +/obj/machinery/door/poddoor/preopen{ + id = "hop"; + name = "privacy shutters" + }, +/turf/open/floor/plating, +/area/command/heads_quarters/hop) +"viO" = ( +/obj/structure/closet/emcloset, +/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/cargo/miningoffice) +"vjq" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/obj/effect/landmark/xmastree, +/turf/open/floor/carpet, +/area/service/chapel/main) +"vjC" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solars/port/fore) +"vjL" = ( +/obj/item/paper_bin{ + pixel_y = 7 + }, +/obj/structure/table, +/obj/machinery/newscaster{ + pixel_y = -30 + }, +/obj/item/stamp/rd{ + pixel_x = 3; + pixel_y = -2 + }, +/obj/item/folder/white{ + pixel_x = 9; + pixel_y = -1 + }, +/obj/item/pen, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/command/heads_quarters/rd) +"vkg" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/cargo/office) +"vkn" = ( +/obj/item/storage/crayons, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/table/wood, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/turf/open/floor/plasteel/grimy, +/area/service/chapel/office) +"vkY" = ( +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Bridge"; + departmentType = 5; + name = "Bridge RC"; + pixel_x = 32 + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/computer/cargo/request, +/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/command/bridge) +"vla" = ( +/obj/machinery/power/apc{ + areastring = "/area/security/execution/education"; + dir = 1; + name = "Prisoner Education Chamber APC"; + pixel_y = 23 + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/structure/closet/secure_closet/injection{ + name = "educational injections"; + pixel_x = 2 + }, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/security/execution/education) +"vls" = ( +/obj/machinery/door/airlock{ + id_tag = "AuxToilet3"; + name = "Unit 3" + }, +/turf/open/floor/plating, +/area/commons/toilet/auxiliary) +"vmb" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"vmm" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"vms" = ( +/obj/machinery/atmospherics/pipe/simple/purple/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"vmE" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/aisat/exterior) +"vnr" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/cargo/warehouse) +"vnL" = ( +/obj/effect/spawner/structure/window/reinforced/tinted, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/commons/dorms) +"vnS" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/cargo/storage) +"voc" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/commons/storage/tools) +"vos" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"voB" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/machinery/portable_atmospherics/pump, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/firealarm{ + pixel_y = 27 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/commons/locker) +"voK" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/mining{ + name = "Cargo Bay"; + req_one_access_txt = "48;50" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/construction/storage_wing) +"voY" = ( +/obj/structure/closet/crate/coffin, +/turf/open/floor/plating, +/area/service/chapel/main) +"vpQ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/sign/warning/securearea{ + pixel_x = 32 + }, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"vqd" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/service/theater) +"vqv" = ( +/obj/structure/table/wood, +/obj/machinery/newscaster{ + pixel_x = 29; + pixel_y = 1 + }, +/obj/item/paper, +/turf/open/floor/wood, +/area/commons/dorms) +"vqN" = ( +/obj/machinery/gateway/centerstation{ + dir = 0 + }, +/turf/open/floor/plasteel/dark, +/area/command/gateway) +"vre" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/light_switch{ + pixel_y = -26 + }, +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/service/kitchen) +"vrr" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"vsk" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp/green{ + pixel_x = 1; + pixel_y = 5 + }, +/obj/machinery/requests_console{ + department = "Law office"; + pixel_y = 32 + }, +/obj/machinery/newscaster{ + pixel_x = -31 + }, +/turf/open/floor/wood, +/area/service/lawoffice) +"vss" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/holopad, +/turf/open/floor/carpet, +/area/command/corporate_showroom) +"vsz" = ( +/obj/structure/sign/warning/securearea, +/turf/closed/wall/r_wall, +/area/command/bridge) +"vsD" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/office) +"vsF" = ( +/obj/item/folder/yellow, +/obj/item/folder/yellow, +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/sign/warning/securearea{ + pixel_y = 32 + }, +/obj/structure/table/glass, +/obj/item/storage/firstaid/fire{ + pixel_y = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"vsJ" = ( +/obj/machinery/door/airlock{ + id_tag = "Toilet2"; + name = "Unit 2" + }, +/turf/open/floor/plasteel/freezer, +/area/commons/toilet/restrooms) +"vsV" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/engineering/main) +"vtk" = ( +/obj/machinery/atmospherics/components/trinary/filter/atmos/o2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"vtZ" = ( +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/machinery/computer/security/mining, +/obj/machinery/keycard_auth{ + pixel_y = 24 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"vvt" = ( +/obj/structure/disposalpipe/segment{ + 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/office) +"vvA" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Primary Tool Storage" + }, +/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/commons/storage/primary) +"vvU" = ( +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = 21 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"vwK" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/mining{ + name = "Cargo Bay"; + req_one_access_txt = "48;50" + }, +/obj/effect/turf_decal/delivery, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/construction/storage_wing) +"vwZ" = ( +/obj/machinery/atmospherics/pipe/manifold4w/general{ + color = "#0000ff" + }, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/medical/surgery) +"vxg" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ + dir = 8 + }, +/turf/open/floor/plating, +/area/engineering/atmos) +"vxN" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -26 + }, +/obj/machinery/camera{ + c_tag = "Locker Room Port"; + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/commons/locker) +"vyp" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/table/wood, +/obj/item/folder{ + pixel_y = 2 + }, +/turf/open/floor/plasteel/grimy, +/area/service/chapel/office) +"vyx" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"vyB" = ( +/obj/effect/turf_decal/loading_area{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/sorting) +"vyC" = ( +/obj/structure/rack, +/obj/item/circuitboard/machine/telecomms/bus, +/obj/item/circuitboard/machine/telecomms/broadcaster, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Telecomms - Storage"; + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/storage/tcomms) +"vyZ" = ( +/obj/machinery/newscaster{ + pixel_x = -32 + }, +/turf/open/floor/wood, +/area/service/library) +"vzb" = ( +/obj/structure/chair/office/dark{ + dir = 4 + }, +/obj/effect/landmark/start/atmospheric_technician, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"vzs" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/mob/living/simple_animal/slime, +/turf/open/floor/engine, +/area/science/xenobiology) +"vzO" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/machinery/computer/gateway_control{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/command/gateway) +"vAp" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/commons/locker) +"vAr" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/sorting/mail{ + sortType = 4 + }, +/obj/effect/landmark/start/station_engineer, +/turf/open/floor/plasteel, +/area/engineering/main) +"vBd" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"vBv" = ( +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/service/bar) +"vBW" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/engineering/atmos) +"vCd" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel/freezer, +/area/commons/toilet/restrooms) +"vCf" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/power/apc{ + areastring = "/area/engineering/break_room"; + name = "Engineering Foyer APC"; + pixel_x = -1; + pixel_y = -26 + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/machinery/light, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"vCg" = ( +/obj/machinery/door/airlock/command{ + name = "Captain's Quarters"; + req_access_txt = "20" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/carpet, +/area/command/heads_quarters/captain/private) +"vCi" = ( +/obj/effect/landmark/start/botanist, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"vCw" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "corporate_privacy"; + name = "showroom shutters" + }, +/turf/open/floor/plating, +/area/command/corporate_showroom) +"vCM" = ( +/obj/structure/table/wood, +/obj/item/taperecorder{ + pixel_x = -4 + }, +/obj/item/radio/off{ + pixel_y = 3 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hos) +"vDn" = ( +/obj/machinery/newscaster/security_unit{ + pixel_x = 32 + }, +/obj/machinery/computer/security/mining{ + dir = 8 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/hop) +"vDo" = ( +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/carpet, +/area/command/heads_quarters/hop) +"vDJ" = ( +/obj/machinery/light_switch{ + pixel_x = 28 + }, +/obj/structure/dresser, +/obj/item/storage/secure/safe{ + pixel_x = 6; + pixel_y = 28 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private) +"vDS" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/obj/effect/turf_decal/loading_area{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"vEl" = ( +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=1"; + dir = 8; + freq = 1400; + location = "Bar" + }, +/obj/structure/plasticflaps/opaque, +/obj/effect/turf_decal/bot{ + dir = 1 + }, +/turf/open/floor/plasteel{ + dir = 1 + }, +/area/service/bar) +"vFz" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/storage/primary) +"vGa" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/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 Officer's 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/command/heads_quarters/cmo) +"vGe" = ( +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -28 + }, +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/service/bar) +"vGk" = ( +/obj/machinery/power/terminal, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"vGw" = ( +/obj/machinery/status_display/evac{ + pixel_y = 32 + }, +/obj/effect/landmark/xmastree/rdrod, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/rd) +"vGM" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/wood, +/area/service/lawoffice) +"vGP" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"vHq" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/air_input{ + dir = 1 + }, +/turf/open/floor/engine/air, +/area/engineering/atmos) +"vHG" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/drinks/shaker, +/turf/open/floor/carpet, +/area/command/heads_quarters/captain/private) +"vIz" = ( +/obj/structure/table/wood, +/obj/item/folder, +/obj/item/folder, +/obj/item/pen, +/turf/open/floor/wood, +/area/service/library) +"vIC" = ( +/obj/structure/reflector/single/anchored{ + dir = 9 + }, +/turf/open/floor/plating, +/area/engineering/main) +"vJf" = ( +/obj/machinery/door/airlock{ + id_tag = "Cabin7"; + name = "Cabin 1" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/wood, +/area/commons/dorms) +"vJE" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/chem_master/condimaster{ + desc = "Used to separate out liquids - useful for purifying botanical extracts. Also dispenses condiments."; + name = "BrewMaster 2199"; + pixel_x = -4 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"vKw" = ( +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/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/cafeteria, +/area/command/heads_quarters/cmo) +"vKy" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/service/chapel/main) +"vLD" = ( +/obj/structure/lattice, +/turf/open/space/basic, +/area/space) +"vLV" = ( +/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/white, +/area/medical/treatment_center) +"vMm" = ( +/obj/machinery/conveyor_switch/oneway{ + id = "packageSort2"; + pixel_x = -2; + pixel_y = 12 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/cargo/sorting) +"vMu" = ( +/obj/structure/table/wood, +/obj/item/folder, +/turf/open/floor/wood, +/area/commons/vacant_room/office) +"vMG" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/item/kirbyplants{ + icon_state = "plant-05" + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"vNg" = ( +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/machinery/deepfryer, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/service/kitchen) +"vNi" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/carpet, +/area/command/heads_quarters/captain/private) +"vNm" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/storage/tech) +"vNv" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/science/xenobiology) +"vNx" = ( +/obj/machinery/computer/security, +/obj/machinery/computer/security/telescreen{ + desc = "Used for watching Prison Wing holding areas."; + name = "Prison Monitor"; + network = list("prison"); + 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/security/office) +"vNy" = ( +/obj/machinery/computer/station_alert{ + dir = 1 + }, +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/machinery/computer/security/telescreen/minisat{ + dir = 1; + pixel_y = -29 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/storage/satellite) +"vNU" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/cargo/storage) +"vOr" = ( +/obj/machinery/meter, +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/purple/visible{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/engineering/atmos) +"vOz" = ( +/obj/machinery/atmospherics/pipe/manifold/green/visible{ + dir = 1 + }, +/obj/machinery/meter, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"vOQ" = ( +/obj/structure/girder/reinforced, +/turf/open/floor/plating/airless, +/area/engineering/atmos) +"vPE" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"vPR" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/effect/turf_decal/loading_area{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"vQX" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/commons/vacant_room/office) +"vRu" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"vSm" = ( +/obj/machinery/power/emitter, +/turf/open/floor/plating, +/area/engineering/main) +"vSp" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/storage/primary) +"vSv" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"vSE" = ( +/obj/structure/chair/stool{ + pixel_y = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/commons/dorms) +"vSG" = ( +/obj/structure/table, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/item/storage/box/donkpockets, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/service/kitchen) +"vTo" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/carpet, +/area/service/theater) +"vTw" = ( +/obj/machinery/button/door{ + id = "bridge blast"; + name = "Bridge Access Blast Door Control"; + pixel_x = -1; + pixel_y = -24; + req_access_txt = "19" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/obj/machinery/button/door{ + id = "council blast"; + name = "Council Chamber Blast Door Control"; + pixel_x = -1; + pixel_y = -34; + req_access_txt = "19" + }, +/obj/machinery/camera{ + c_tag = "Bridge - Command Chair"; + dir = 1 + }, +/turf/open/floor/carpet, +/area/command/bridge) +"vTM" = ( +/obj/machinery/door/poddoor{ + id = "QMLoaddoor2"; + name = "Supply Dock Loading Door" + }, +/obj/machinery/conveyor{ + dir = 4; + id = "QMLoad2" + }, +/turf/open/floor/plating, +/area/cargo/storage) +"vTY" = ( +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + areastring = "/area/service/lawoffice"; + dir = 1; + name = "Law Office APC"; + pixel_y = 23 + }, +/obj/item/kirbyplants{ + icon_state = "plant-21" + }, +/turf/open/floor/wood, +/area/service/lawoffice) +"vUh" = ( +/obj/machinery/shower{ + dir = 4 + }, +/obj/machinery/door/window/eastright{ + base_state = "left"; + dir = 2; + icon_state = "left"; + name = "shower" + }, +/turf/open/floor/plasteel/freezer, +/area/commons/fitness/recreation) +"vWf" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"vWi" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/service/kitchen) +"vWm" = ( +/obj/machinery/camera{ + c_tag = "Research Division - Server Room"; + network = list("ss13","rd"); + pixel_x = 22 + }, +/obj/machinery/power/apc{ + areastring = "/area/science/server"; + dir = 1; + name = "Research Division Server Room APC"; + pixel_y = 23 + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/turf/open/floor/plasteel/dark, +/area/science/server) +"vWI" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/wood, +/area/service/library) +"vWO" = ( +/turf/closed/wall, +/area/service/kitchen) +"vXa" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/machinery/door/poddoor/preopen{ + id = "rdprivacy"; + name = "privacy shutter" + }, +/turf/open/floor/plating, +/area/command/heads_quarters/rd) +"vXk" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/cafeteria, +/area/command/heads_quarters/cmo) +"vXp" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/carpet, +/area/service/library) +"vYs" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/turf/open/space, +/area/space/nearstation) +"vYJ" = ( +/obj/structure/table, +/obj/machinery/microwave{ + pixel_x = -3; + pixel_y = 6 + }, +/obj/machinery/button/door{ + id = "kitchen"; + name = "Kitchen Shutters Control"; + pixel_x = -4; + pixel_y = 26; + req_access_txt = "28" + }, +/obj/machinery/light_switch{ + pixel_x = 6; + pixel_y = 26 + }, +/turf/open/floor/plasteel/cafeteria, +/area/service/kitchen) +"vZd" = ( +/obj/machinery/power/apc{ + areastring = "/area/security/checkpoint/customs"; + dir = 1; + name = "Customs APC"; + pixel_y = 23 + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/customs) +"vZm" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/engineering/main) +"vZo" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"vZw" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/junction/flip{ + dir = 2 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"vZL" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/ai_monitored/command/storage/eva) +"wad" = ( +/obj/structure/bed, +/obj/machinery/button/door{ + id = "Cabin2"; + name = "Cabin Bolt Control"; + normaldoorcontrol = 1; + pixel_x = 25; + specialfunctions = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/spawner/lootdrop/bedsheet, +/turf/open/floor/carpet, +/area/commons/dorms) +"waL" = ( +/obj/structure/table, +/obj/item/clothing/head/hardhat/cakehat, +/obj/machinery/newscaster{ + pixel_x = -30 + }, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/service/bar) +"waU" = ( +/obj/machinery/power/apc{ + areastring = "/area/ai_monitored/turret_protected/aisat_interior"; + dir = 4; + name = "MiniSat Antechamber APC"; + pixel_x = 24 + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"wbh" = ( +/obj/structure/window/reinforced, +/obj/structure/showcase/mecha/ripley, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/carpet, +/area/command/corporate_showroom) +"wbv" = ( +/obj/structure/chair/stool{ + pixel_y = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"wbK" = ( +/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, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/obj/item/grenade/chem_grenade/antiweed, +/obj/structure/table/glass, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"wbZ" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/service/bar) +"wcl" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/landmark/start/head_of_security, +/obj/machinery/holopad/secure, +/turf/open/floor/carpet, +/area/command/heads_quarters/hos) +"wcY" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/bot{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel{ + dir = 1 + }, +/area/engineering/main) +"wda" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/dark/visible{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"wdd" = ( +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solars/port/aft) +"wdu" = ( +/obj/structure/grille, +/obj/structure/lattice, +/turf/open/floor/plating, +/area/space/nearstation) +"wdy" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/command/teleporter) +"wdP" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/power/apc{ + areastring = "/area/command/heads_quarters/ce"; + dir = 4; + name = "CE Office APC"; + pixel_x = 24 + }, +/obj/structure/cable/yellow, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/light_switch{ + pixel_x = 26; + pixel_y = 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/command/heads_quarters/ce) +"wdQ" = ( +/obj/machinery/door/airlock{ + id_tag = "Cabin6"; + name = "Cabin 2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/wood, +/area/commons/dorms) +"wep" = ( +/turf/closed/wall, +/area/service/bar) +"weB" = ( +/turf/closed/wall, +/area/commons/fitness/recreation) +"weG" = ( +/obj/machinery/shower{ + dir = 8 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/freezer, +/area/commons/toilet/restrooms) +"weN" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/door/window/brigdoor{ + name = "Command Desk"; + req_access_txt = "19" + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"wfx" = ( +/turf/closed/wall, +/area/commons/dorms) +"wfE" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/commons/storage/primary) +"wfT" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/carpet, +/area/service/chapel/main) +"wfY" = ( +/obj/structure/toilet/secret/low_loot{ + pixel_y = 8 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/button/door{ + id = "AuxToilet1"; + name = "Lock Control"; + normaldoorcontrol = 1; + pixel_x = 25; + specialfunctions = 4 + }, +/obj/machinery/newscaster{ + pixel_y = -32 + }, +/turf/open/floor/plasteel, +/area/commons/toilet/auxiliary) +"wgw" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/maintenance/disposal/incinerator) +"wgD" = ( +/obj/machinery/vending/snack/random, +/obj/machinery/newscaster{ + pixel_y = -29 + }, +/turf/open/floor/carpet, +/area/service/bar) +"wgN" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/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/engineering/atmos) +"whB" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/engineering/storage/tech) +"whD" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/aisat/exterior) +"whE" = ( +/obj/structure/table/wood, +/obj/machinery/recharger{ + pixel_y = 4 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private) +"wim" = ( +/obj/structure/table, +/obj/item/stock_parts/micro_laser, +/obj/item/stock_parts/manipulator, +/obj/item/stock_parts/manipulator, +/obj/item/stock_parts/manipulator, +/obj/item/stock_parts/manipulator, +/obj/item/stock_parts/capacitor, +/obj/item/stock_parts/micro_laser/high, +/obj/item/stock_parts/micro_laser/high, +/obj/item/stock_parts/micro_laser/high, +/obj/item/stock_parts/micro_laser/high, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/storage/tcomms) +"wiv" = ( +/obj/machinery/vending/assist, +/turf/open/floor/plasteel/dark, +/area/engineering/storage/tech) +"wiZ" = ( +/obj/machinery/door/airlock/external{ + name = "Security External Airlock"; + req_access_txt = "1" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plating, +/area/security/prison) +"wjD" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/table/wood, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/obj/item/lighter, +/turf/open/floor/wood, +/area/commons/dorms) +"wjH" = ( +/obj/structure/mirror{ + pixel_x = 28 + }, +/obj/machinery/shower{ + dir = 8 + }, +/turf/open/floor/plasteel/freezer, +/area/commons/toilet/restrooms) +"wjR" = ( +/turf/open/floor/plasteel, +/area/commons/dorms) +"wki" = ( +/obj/effect/spawner/structure/window, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/commons/storage/primary) +"wku" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/green/visible, +/obj/machinery/atmospherics/pipe/simple/dark/visible{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engineering/atmos) +"wkC" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/cargo/sorting) +"wlC" = ( +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"wlF" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/service/kitchen) +"wlH" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/radio/intercom{ + pixel_y = -28 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"wlK" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/machinery/door/poddoor/preopen{ + id = "hosprivacy"; + name = "privacy shutters" + }, +/turf/open/floor/plating, +/area/command/heads_quarters/hos) +"wmt" = ( +/obj/effect/decal/cleanable/flour, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"wmB" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/machinery/power/apc/highcap/five_k{ + areastring = "/area/science/storage"; + dir = 1; + name = "Toxins Storage APC"; + pixel_y = 23 + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/storage) +"wmK" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/command/corporate_showroom) +"wmO" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/photocopier{ + pixel_y = 3 + }, +/turf/open/floor/wood, +/area/service/library) +"wmX" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 27 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/commons/dorms) +"wnb" = ( +/obj/structure/table, +/obj/item/folder/white{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/item/folder/white{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/item/pen, +/obj/machinery/power/apc{ + areastring = "/area/medical/treatment_center"; + dir = 1; + name = "Sleeper Room APC"; + pixel_y = 23 + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/item/clothing/neck/stethoscope, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/medical/treatment_center) +"wni" = ( +/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 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/service/kitchen) +"wnk" = ( +/obj/structure/table, +/obj/item/storage/box/lights/mixed, +/obj/item/storage/box/lights/mixed, +/obj/item/grenade/chem_grenade/cleaner, +/obj/item/grenade/chem_grenade/cleaner, +/obj/item/grenade/chem_grenade/cleaner, +/turf/open/floor/plasteel, +/area/service/janitor) +"wnJ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/command/teleporter) +"wox" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"woJ" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "council blast"; + name = "Council Blast Doors" + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/command/bridge) +"woN" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"woQ" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/space, +/area/solars/starboard/aft) +"wpo" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/engineering/storage/tcomms) +"wpz" = ( +/obj/effect/turf_decal/bot{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"wpD" = ( +/obj/structure/bed, +/obj/machinery/button/door{ + id = "Cabin6"; + name = "Dorm Bolt Control"; + normaldoorcontrol = 1; + pixel_x = -25; + specialfunctions = 4 + }, +/obj/effect/decal/cleanable/cobweb, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/effect/spawner/lootdrop/bedsheet, +/turf/open/floor/carpet, +/area/commons/dorms) +"wpE" = ( +/obj/machinery/smartfridge/drinks{ + icon_state = "boozeomat" + }, +/turf/closed/wall, +/area/service/bar) +"wqi" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/green/visible, +/turf/open/floor/plating, +/area/engineering/atmos) +"wqj" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"wqs" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engineering/atmos) +"wqG" = ( +/obj/machinery/portable_atmospherics/canister, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"wqL" = ( +/obj/structure/table, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -28 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/computer/monitor{ + dir = 1 + }, +/obj/structure/cable/yellow, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/storage/satellite) +"wqU" = ( +/obj/effect/landmark/xeno_spawn, +/obj/structure/cable, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solars/port/aft) +"wrq" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 9 + }, +/obj/machinery/meter, +/turf/closed/wall/r_wall, +/area/engineering/supermatter) +"wrH" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command/glass{ + name = "Bridge"; + req_access_txt = "19" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"wrY" = ( +/obj/structure/table/wood, +/obj/item/folder/yellow, +/obj/machinery/firealarm{ + pixel_y = 28 + }, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"wsX" = ( +/obj/structure/closet/wardrobe/grey, +/obj/effect/turf_decal/tile/neutral{ + 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/poster/official/fashion{ + pixel_y = -32 + }, +/obj/structure/sign/poster/official/fashion{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/dark, +/area/commons/locker) +"wts" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/office) +"wtx" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"wtF" = ( +/obj/item/radio/intercom{ + dir = 4; + name = "Station Intercom (General)" + }, +/turf/closed/wall, +/area/service/library) +"wtG" = ( +/obj/structure/sign/plaques/atmos{ + pixel_y = 32 + }, +/obj/machinery/light_switch{ + pixel_x = 26 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/computer/atmos_control, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/checker, +/area/engineering/atmos) +"wtK" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering/glass{ + name = "Supermatter Engine"; + req_access_txt = "10" + }, +/turf/open/floor/plating, +/area/engineering/main) +"wtU" = ( +/obj/structure/chair/wood/wings{ + dir = 8 + }, +/turf/open/floor/wood, +/area/service/theater) +"wud" = ( +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/obj/machinery/camera{ + c_tag = "Gateway - Access"; + dir = 8 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/command/gateway) +"wul" = ( +/obj/structure/table/wood, +/obj/item/paper, +/obj/structure/sign/poster/official/random{ + pixel_y = -32 + }, +/turf/open/floor/wood, +/area/commons/vacant_room/office) +"wuo" = ( +/obj/effect/spawner/structure/window, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plating, +/area/medical/treatment_center) +"wuz" = ( +/obj/structure/table, +/obj/item/destTagger{ + pixel_x = 4; + pixel_y = 3 + }, +/obj/machinery/light_switch{ + pixel_x = 27 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white/corner, +/area/cargo/sorting) +"wuN" = ( +/obj/structure/chair, +/obj/effect/landmark/start/assistant, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"wuS" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel/dark, +/area/engineering/storage/tcomms) +"wvO" = ( +/obj/machinery/power/apc{ + areastring = "/area/medical/genetics"; + dir = 1; + name = "Genetics Lab APC"; + pixel_y = 23 + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/item/folder/white{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/folder/white{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/storage/pill_bottle/mutadone, +/obj/item/storage/pill_bottle/mannitol{ + pixel_x = 5 + }, +/obj/structure/table/glass, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/medical/genetics) +"wvY" = ( +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/power/apc{ + areastring = "/area/commons/dorms"; + dir = 1; + name = "Dormitories APC"; + pixel_y = 23 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/commons/dorms) +"wwD" = ( +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solars/port/fore) +"wxd" = ( +/obj/machinery/suit_storage_unit/standard_unit, +/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/ai_monitored/command/storage/eva) +"wxA" = ( +/obj/machinery/hydroponics/constructable, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"wxF" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Vacant Office Maintenance"; + req_access_txt = "32" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/port) +"wxP" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/dark/visible{ + dir = 5 + }, +/turf/closed/wall/r_wall, +/area/engineering/atmos) +"wxW" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/service/chapel/main) +"wyt" = ( +/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/commons/dorms) +"wyJ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/components/trinary/filter/flipped/critical, +/turf/open/floor/engine, +/area/engineering/main) +"wzm" = ( +/obj/machinery/holopad, +/turf/open/floor/plasteel, +/area/cargo/storage) +"wzo" = ( +/obj/structure/showcase/perfect_employee, +/obj/structure/sign/plaques/kiddie/perfect_man{ + pixel_y = 32 + }, +/obj/structure/window/reinforced, +/turf/open/floor/carpet, +/area/command/corporate_showroom) +"wzp" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/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/command/gateway) +"wzY" = ( +/obj/machinery/vending/cigarette, +/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/commons/fitness/recreation) +"wAs" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"wAX" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/engineering/main) +"wBE" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/obj/machinery/camera{ + c_tag = "Engineering - Transit Tube Access"; + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/plasteel/dark, +/area/engineering/break_room) +"wBK" = ( +/obj/machinery/holopad, +/turf/open/floor/plasteel, +/area/commons/storage/primary) +"wBL" = ( +/obj/machinery/vending/hydronutrients, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"wBP" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/command/gateway) +"wCb" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/item/radio/intercom{ + dir = 4; + name = "Station Intercom (General)"; + pixel_x = 27 + }, +/obj/structure/table, +/obj/item/folder/yellow, +/obj/item/folder/yellow, +/obj/item/paper, +/obj/item/paper, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"wCr" = ( +/obj/structure/mirror{ + pixel_x = -28 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/shower{ + dir = 4 + }, +/turf/open/floor/plasteel/freezer, +/area/commons/toilet/restrooms) +"wCs" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/service/kitchen) +"wCQ" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel/freezer, +/area/commons/toilet/restrooms) +"wCV" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = 26 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/office) +"wDJ" = ( +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_x = 29 + }, +/turf/open/floor/plasteel/chapel, +/area/service/chapel/main) +"wDZ" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/machinery/button/door{ + id = "evashutter"; + name = "E.V.A. Storage Shutter Control"; + pixel_y = -24; + req_access_txt = "19" + }, +/obj/machinery/button/door{ + id = "gateshutter"; + name = "Gateway Shutter Control"; + pixel_y = -34; + req_access_txt = "19" + }, +/turf/open/floor/carpet, +/area/command/bridge) +"wEG" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/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/effect/landmark/xeno_spawn, +/turf/open/floor/plating, +/area/commons/toilet/auxiliary) +"wEJ" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -29 + }, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/command/heads_quarters/rd) +"wER" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"wFc" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/machinery/camera{ + c_tag = "Engineering Supermatter Starboard"; + dir = 4; + network = list("ss13","engine") + }, +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/turf/open/floor/engine, +/area/engineering/main) +"wFu" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"wFB" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel/chapel{ + dir = 4 + }, +/area/service/chapel/main) +"wFE" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/freezer, +/area/commons/toilet/restrooms) +"wFH" = ( +/obj/machinery/power/apc/highcap/five_k{ + areastring = "/area/maintenance/aft"; + name = "Aft Maintenance APC"; + pixel_y = -24 + }, +/obj/structure/cable/yellow, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"wFX" = ( +/obj/machinery/portable_atmospherics/canister/air, +/turf/open/floor/engine/air, +/area/engineering/atmos) +"wGp" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/engine, +/area/engineering/main) +"wGq" = ( +/obj/machinery/computer/slot_machine{ + pixel_y = 2 + }, +/turf/open/floor/carpet, +/area/service/bar) +"wGv" = ( +/obj/machinery/computer/atmos_control/tank/toxin_tank{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/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 + }, +/obj/machinery/atmospherics/pipe/simple/yellow/visible, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"wGw" = ( +/obj/machinery/holopad, +/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/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/office) +"wGD" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/command/storage/eva) +"wGU" = ( +/obj/structure/sign/warning/securearea, +/turf/closed/wall/r_wall, +/area/ai_monitored/command/nuke_storage) +"wIf" = ( +/obj/effect/landmark/blobstart, +/obj/machinery/power/apc{ + areastring = "/area/maintenance/central"; + dir = 4; + name = "Central Maintenance APC"; + pixel_x = 24 + }, +/obj/structure/cable/yellow, +/turf/open/floor/plating, +/area/maintenance/central) +"wIw" = ( +/turf/open/floor/carpet, +/area/command/heads_quarters/captain/private) +"wIB" = ( +/obj/machinery/keycard_auth{ + pixel_x = -25; + pixel_y = 25 + }, +/obj/machinery/status_display/evac{ + pixel_y = 32 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -27 + }, +/obj/machinery/computer/apc_control, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/ce) +"wIS" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/commons/locker) +"wJb" = ( +/obj/machinery/atmospherics/pipe/simple, +/obj/machinery/meter{ + name = "Mixed Air Tank In" + }, +/obj/structure/grille, +/turf/closed/wall/r_wall, +/area/engineering/atmos) +"wJv" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/landmark/start/shaft_miner, +/turf/open/floor/plasteel, +/area/cargo/miningoffice) +"wKg" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/closed/wall, +/area/engineering/atmos) +"wKo" = ( +/obj/effect/turf_decal/stripes/line, +/turf/closed/wall, +/area/science/circuit) +"wKu" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plasteel/grimy, +/area/security/office) +"wKY" = ( +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/cargo/sorting) +"wLu" = ( +/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/command/nuke_storage) +"wMe" = ( +/obj/item/taperecorder, +/obj/item/camera, +/obj/structure/table/wood, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -29 + }, +/turf/open/floor/engine/cult, +/area/service/library) +"wMJ" = ( +/obj/machinery/atmospherics/components/binary/pump{ + name = "Air to Mix" + }, +/obj/machinery/atmospherics/pipe/simple/purple/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"wNF" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/office) +"wNI" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"wNL" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/cargo/office) +"wNQ" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 10 + }, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"wOW" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/table/glass, +/obj/item/phone{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/cigbutt/cigarbutt{ + pixel_x = 5; + pixel_y = -1 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/break_room) +"wOY" = ( +/obj/structure/fans/tiny/invisible, +/turf/open/space/basic, +/area/space) +"wPd" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/carpet, +/area/service/library) +"wPk" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"wPl" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/mining{ + name = "Mining Office"; + req_access_txt = "48" + }, +/turf/open/floor/plasteel, +/area/cargo/miningoffice) +"wQo" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/engineering/glass{ + name = "Laser Room"; + req_access_txt = "10" + }, +/turf/open/floor/plating, +/area/engineering/main) +"wQw" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "corporate_privacy"; + name = "showroom shutters" + }, +/turf/open/floor/plating, +/area/command/corporate_showroom) +"wQF" = ( +/obj/item/stack/sheet/metal/fifty, +/obj/item/stack/sheet/metal/fifty, +/obj/structure/table, +/obj/item/stack/sheet/plasteel{ + amount = 10 + }, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -22 + }, +/obj/item/stack/sheet/glass/fifty, +/obj/item/stack/sheet/glass/fifty, +/obj/item/crowbar, +/obj/item/wrench, +/obj/item/storage/toolbox/electrical{ + pixel_x = 1; + pixel_y = -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/ai_monitored/command/storage/eva) +"wQJ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/cargo/office) +"wQM" = ( +/obj/effect/turf_decal/stripes/line, +/obj/structure/reagent_dispensers/watertank/high, +/obj/item/reagent_containers/glass/bucket, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"wQW" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/obj/structure/grille, +/turf/closed/wall/r_wall, +/area/engineering/atmos) +"wRy" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/science/misc_lab) +"wRz" = ( +/obj/effect/landmark/xeno_spawn, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/light/small, +/turf/open/floor/wood, +/area/commons/dorms) +"wRE" = ( +/obj/machinery/light/small, +/obj/structure/sign/poster/official/random{ + pixel_y = -32 + }, +/turf/open/floor/plating, +/area/commons/toilet/auxiliary) +"wRK" = ( +/obj/effect/landmark/start/bartender, +/turf/open/floor/wood, +/area/service/bar) +"wSs" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/commons/dorms) +"wSt" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/chapel{ + dir = 8 + }, +/area/service/chapel/main) +"wSx" = ( +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"wSJ" = ( +/obj/structure/table, +/obj/item/stack/cable_coil{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/stack/cable_coil, +/obj/item/stock_parts/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 27 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/storage/tech) +"wST" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/command/heads_quarters/rd) +"wTi" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/command/storage/eva) +"wTk" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/aisat/exterior) +"wTI" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/office) +"wUF" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/camera{ + c_tag = "Crew Quarters Entrance" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/commons/locker) +"wUI" = ( +/obj/effect/landmark/event_spawn, +/obj/effect/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/service/hydroponics/garden) +"wUL" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/cargo/sorting) +"wVf" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"wVN" = ( +/obj/machinery/light_switch{ + pixel_x = 11; + pixel_y = 23 + }, +/obj/effect/turf_decal/tile/neutral{ + 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/vehicle/ridden/wheelchair, +/turf/open/floor/plasteel/dark, +/area/medical/treatment_center) +"wVV" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/carpet, +/area/commons/dorms) +"wWO" = ( +/obj/structure/cable/yellow{ + 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/security/office) +"wWR" = ( +/obj/machinery/light/small{ + 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/engineering/storage/tech) +"wXi" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + name = "bridge blast door" + }, +/turf/open/floor/plating, +/area/command/bridge) +"wXC" = ( +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/turf/open/floor/circuit/green{ + luminosity = 2 + }, +/area/ai_monitored/command/nuke_storage) +"wYa" = ( +/obj/structure/table, +/obj/item/stack/cable_coil{ + pixel_x = 3; + pixel_y = -7 + }, +/obj/item/stack/cable_coil, +/obj/item/electronics/airlock, +/obj/item/electronics/airlock, +/obj/item/clothing/ears/earmuffs{ + pixel_x = -3; + pixel_y = -2 + }, +/obj/item/clothing/ears/earmuffs{ + pixel_x = -5; + pixel_y = 6 + }, +/obj/effect/turf_decal/bot{ + dir = 1 + }, +/obj/item/rcl/pre_loaded, +/obj/item/rcl/pre_loaded, +/turf/open/floor/plasteel{ + dir = 1 + }, +/area/engineering/main) +"wYd" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/commons/storage/art) +"wYi" = ( +/obj/machinery/power/apc{ + areastring = "/area/service/hydroponics/garden"; + dir = 4; + name = "Garden APC"; + pixel_x = 24; + pixel_y = 2 + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/machinery/disposal/bin, +/obj/machinery/camera{ + c_tag = "Garden"; + dir = 8 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics/garden) +"wYu" = ( +/obj/structure/table, +/obj/item/analyzer, +/obj/machinery/power/apc{ + areastring = "/area/commons/storage/primary"; + name = "Tool Storage APC"; + pixel_y = -27 + }, +/obj/structure/cable/yellow, +/obj/item/wrench, +/obj/structure/sign/poster/official/random{ + pixel_x = -32 + }, +/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/commons/storage/primary) +"wYA" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/locker) +"wZn" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/closet/secure_closet/engineering_electrical, +/turf/open/floor/plasteel, +/area/engineering/main) +"wZw" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/storage/satellite) +"wZB" = ( +/obj/effect/turf_decal/loading_area{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"wZC" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solars/port/fore) +"wZK" = ( +/obj/structure/table, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/syndicatebomb/training, +/turf/open/floor/plasteel, +/area/security/office) +"wZL" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/commons/storage/primary) +"wZM" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/commons/locker) +"wZX" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/table/reinforced, +/obj/item/stamp/denied{ + pixel_x = 4; + pixel_y = -2 + }, +/obj/item/stamp{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/pen/red, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/office) +"wZY" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Library" + }, +/turf/open/floor/wood, +/area/service/library) +"xaj" = ( +/obj/machinery/teleport/station, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -24 + }, +/turf/open/floor/plating, +/area/command/teleporter) +"xar" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/carpet, +/area/service/chapel/main) +"xaR" = ( +/obj/machinery/atmospherics/pipe/manifold/yellow/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"xaV" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/locker) +"xaX" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/office) +"xbd" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"xbz" = ( +/obj/machinery/atmospherics/pipe/simple/dark/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/turf/closed/wall/r_wall, +/area/engineering/atmos) +"xbB" = ( +/mob/living/simple_animal/hostile/retaliate/goat{ + name = "Pete" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/service/kitchen) +"xbM" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/item/storage/box/donkpockets, +/turf/open/floor/plasteel, +/area/cargo/warehouse) +"xbR" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 10 + }, +/turf/closed/wall/r_wall, +/area/engineering/atmos) +"xbT" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/engineering/main) +"xca" = ( +/obj/machinery/door/poddoor/preopen{ + id = "atmos"; + name = "Atmospherics Blast Door" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"xcA" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/cargo/sorting) +"xcR" = ( +/obj/machinery/pool/filter{ + pixel_y = 16 + }, +/turf/open/pool, +/area/commons/fitness/pool) +"xdX" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/table/glass, +/obj/item/folder/blue{ + pixel_y = 3 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/item/pen, +/obj/machinery/computer/security/telescreen/minisat{ + dir = 1; + pixel_y = -28 + }, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel/dark, +/area/engineering/break_room) +"xel" = ( +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"xet" = ( +/obj/structure/table, +/obj/item/camera_film, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 28 + }, +/turf/open/floor/plasteel, +/area/commons/storage/art) +"xeF" = ( +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/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/command/bridge) +"xfI" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"xgw" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics/garden) +"xgL" = ( +/obj/structure/table/wood, +/obj/item/toy/plush/carpplushie{ + color = "red"; + name = "Nanotrasen wildlife department space carp plushie" + }, +/turf/open/floor/carpet, +/area/command/corporate_showroom) +"xgN" = ( +/obj/structure/cable, +/obj/machinery/power/tracker, +/turf/open/floor/plating/airless, +/area/solars/port/aft) +"xhk" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/cargo/office) +"xhF" = ( +/obj/structure/sign/directions/command{ + dir = 1; + pixel_y = -8 + }, +/turf/closed/wall/r_wall, +/area/command/heads_quarters/captain/private) +"xhM" = ( +/obj/machinery/door/airlock{ + id_tag = "Cabin2"; + name = "Cabin 4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/wood, +/area/commons/dorms) +"xiO" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/break_room) +"xjs" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/commons/toilet/auxiliary) +"xjK" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"xjY" = ( +/obj/machinery/holopad, +/turf/open/floor/wood, +/area/service/library) +"xkG" = ( +/obj/item/integrated_electronics/wirer, +/obj/structure/table/reinforced, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"xlc" = ( +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_y = -29 + }, +/obj/machinery/suit_storage_unit/ce, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/ce) +"xlv" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel, +/area/cargo/sorting) +"xlH" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 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, +/area/service/hydroponics) +"xlU" = ( +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/wood{ + icon_state = "wood-broken" + }, +/area/service/library) +"xlW" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/commons/locker) +"xmb" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/sign/map/left{ + desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; + icon_state = "map-left-MS"; + pixel_y = -32 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"xmc" = ( +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/pen, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"xmv" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/wood, +/area/service/library) +"xnc" = ( +/obj/machinery/light_switch{ + pixel_y = 25 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/table/wood, +/obj/item/clothing/shoes/laceup, +/obj/item/clothing/under/suit/black_really, +/obj/item/clothing/glasses/sunglasses, +/obj/machinery/camera{ + c_tag = "Corporate Showroom" + }, +/turf/open/floor/wood, +/area/command/corporate_showroom) +"xnd" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/command/storage/eva) +"xns" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/camera{ + c_tag = "Security - Office - Port"; + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/office) +"xnt" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"xnG" = ( +/obj/structure/bookcase/random/reference, +/turf/open/floor/wood, +/area/service/library) +"xoe" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/rnd/production/protolathe/department/engineering, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"xof" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "council blast"; + name = "Council Blast Doors" + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/command/bridge) +"xos" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/mining{ + name = "Cargo Bay"; + req_one_access_txt = "48;50" + }, +/obj/effect/turf_decal/delivery, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/construction/storage_wing) +"xou" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/commons/locker) +"xov" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"xpy" = ( +/obj/effect/landmark/xeno_spawn, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/commons/dorms) +"xpD" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/commons/cryopod) +"xpY" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/mob/living/simple_animal/hostile/retaliate/bat{ + desc = "A fierce companion for any person of power, this spider has been carefully trained by Nanotrasen specialists. Its beady, staring eyes send shivers down your spine."; + emote_hear = list("chitters"); + faction = list("spiders"); + harm_intent_damage = 3; + health = 200; + icon_dead = "guard_dead"; + icon_gib = "guard_dead"; + icon_living = "guard"; + icon_state = "guard"; + maxHealth = 250; + max_co2 = 5; + max_tox = 2; + melee_damage_lower = 15; + melee_damage_upper = 20; + min_oxy = 5; + movement_type = 1; + name = "Sergeant Araneus"; + real_name = "Sergeant Araneus"; + response_help_continuous = "pets"; + response_help_simple = "pet"; + turns_per_move = 10 + }, +/turf/open/floor/carpet, +/area/command/heads_quarters/hos) +"xqi" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/engineering/atmos) +"xqv" = ( +/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/solars/starboard/aft) +"xqM" = ( +/obj/item/storage/bag/plants/portaseeder, +/obj/structure/table, +/obj/machinery/light, +/obj/item/plant_analyzer, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics/garden) +"xqW" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/turf/open/floor/plating, +/area/engineering/atmos) +"xrc" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/wood, +/area/service/library) +"xrw" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/turf/open/floor/engine, +/area/engineering/main) +"xrJ" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private) +"xsc" = ( +/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/office) +"xse" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/aft) +"xsj" = ( +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solars/starboard/fore) +"xsO" = ( +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/cargo/storage) +"xsT" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/command/teleporter) +"xti" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"xtl" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/item/stock_parts/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/engineering/main) +"xtF" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/engine, +/area/engineering/main) +"xtS" = ( +/obj/effect/landmark/carpspawn, +/turf/open/space, +/area/space/station_ruins) +"xuF" = ( +/obj/structure/chair/comfy/black, +/obj/effect/landmark/start/assistant, +/turf/open/floor/wood, +/area/service/library) +"xuP" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + name = "N2 to Pure" + }, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"xvf" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/techstorage/security, +/turf/open/floor/plasteel/dark, +/area/engineering/storage/tech) +"xvg" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/engineering/gravity_generator) +"xwg" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering{ + name = "Tech Storage"; + req_one_access_txt = "23;30" + }, +/obj/structure/cable/yellow{ + 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/engineering/storage/tech) +"xww" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/cargo/qm) +"xwN" = ( +/obj/structure/rack, +/obj/item/electronics/apc, +/obj/item/stock_parts/cell{ + maxcharge = 2000 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 24 + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plasteel, +/area/cargo/warehouse) +"xxf" = ( +/obj/machinery/atmospherics/pipe/manifold/yellow/visible{ + dir = 1 + }, +/obj/machinery/meter, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"xxq" = ( +/obj/structure/table/wood, +/obj/item/book/manual/wiki/security_space_law, +/obj/item/book/manual/wiki/security_space_law, +/obj/item/pen/red, +/obj/machinery/computer/security/telescreen{ + desc = "Used for watching Prison Wing holding areas."; + name = "Prison Monitor"; + network = list("prison"); + pixel_y = 30 + }, +/turf/open/floor/wood, +/area/service/lawoffice) +"xyp" = ( +/obj/docking_port/stationary{ + dheight = 1; + dir = 8; + dwidth = 12; + height = 17; + id = "syndicate_nw"; + name = "northwest of station"; + width = 23 + }, +/turf/open/space/basic, +/area/space/nearstation) +"xze" = ( +/turf/closed/wall, +/area/service/theater) +"xzr" = ( +/obj/machinery/photocopier, +/obj/machinery/power/apc{ + areastring = "/area/command/heads_quarters/hos"; + dir = 4; + name = "Head of Security's Office APC"; + pixel_x = 24 + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/machinery/button/door{ + id = "hosprivacy"; + name = "Privacy Shutters Control"; + pixel_x = 26; + pixel_y = -26 + }, +/obj/machinery/computer/security/telescreen/entertainment{ + 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/command/heads_quarters/hos) +"xzD" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/components/trinary/filter/flipped/critical{ + filter_type = "n2" + }, +/turf/open/floor/engine, +/area/engineering/main) +"xzM" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/wood, +/area/service/library) +"xAp" = ( +/obj/structure/chair/comfy, +/turf/open/floor/plasteel, +/area/science/misc_lab) +"xAs" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/grunge{ + name = "Quiet Room" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/wood, +/area/service/library) +"xAR" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel/white, +/area/medical/treatment_center) +"xAW" = ( +/obj/machinery/photocopier, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/office) +"xBK" = ( +/obj/effect/landmark/start/station_engineer, +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/sign/warning/electricshock{ + pixel_x = -31 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"xCf" = ( +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/turf/open/floor/plating, +/area/engineering/main) +"xCx" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/carpet, +/area/service/theater) +"xCC" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/command/corporate_showroom) +"xCI" = ( +/obj/structure/girder, +/turf/open/floor/plating/airless, +/area/engineering/atmos) +"xCP" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solars/port/aft) +"xDn" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/open/floor/plating, +/area/maintenance/port) +"xDD" = ( +/obj/machinery/door/airlock{ + id_tag = "AuxShower"; + name = "Shower" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/commons/toilet/auxiliary) +"xDL" = ( +/obj/machinery/hydroponics/constructable, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -29 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"xDS" = ( +/obj/structure/rack, +/obj/item/tank/internals/oxygen, +/obj/item/tank/internals/oxygen, +/obj/item/radio/off, +/obj/item/radio/off, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + 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/command/teleporter) +"xDT" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/obj/item/radio/intercom{ + dir = 4; + name = "Station Intercom (General)"; + pixel_x = 27 + }, +/turf/open/floor/wood, +/area/service/library) +"xDY" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/ai_monitored/aisat/exterior) +"xDZ" = ( +/obj/effect/landmark/start/librarian, +/obj/structure/chair/office/dark{ + dir = 1 + }, +/turf/open/floor/wood, +/area/service/library) +"xEf" = ( +/obj/structure/table, +/obj/item/flashlight/lamp{ + on = 0 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"xEu" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/open/floor/wood, +/area/service/lawoffice) +"xEM" = ( +/turf/open/floor/plating, +/area/commons/toilet/auxiliary) +"xFb" = ( +/obj/machinery/computer/security/mining{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/miningoffice) +"xFk" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/effect/landmark/start/station_engineer, +/turf/open/floor/plasteel, +/area/engineering/main) +"xFE" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/storage/primary) +"xFW" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"xGi" = ( +/obj/machinery/cell_charger, +/obj/item/stock_parts/cell/crap, +/obj/structure/table/wood, +/turf/open/floor/carpet, +/area/command/corporate_showroom) +"xGp" = ( +/obj/structure/rack, +/obj/item/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = -1 + }, +/obj/item/storage/toolbox/mechanical{ + pixel_x = 4; + pixel_y = -4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/commons/locker) +"xGw" = ( +/obj/machinery/light/small, +/turf/open/floor/wood, +/area/service/library) +"xGy" = ( +/obj/structure/bed, +/obj/machinery/button/door{ + id = "Cabin3"; + name = "Cabin Bolt Control"; + normaldoorcontrol = 1; + pixel_x = 25; + specialfunctions = 4 + }, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/spawner/lootdrop/bedsheet, +/turf/open/floor/wood, +/area/commons/dorms) +"xGF" = ( +/obj/structure/chair/office/dark{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/commons/vacant_room/office) +"xGK" = ( +/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/dark, +/area/command/bridge) +"xGN" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/engineering/atmos) +"xGQ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"xGS" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/mob/living/simple_animal/chicken{ + name = "Kentucky"; + real_name = "Kentucky" + }, +/turf/open/floor/grass, +/area/service/hydroponics/garden) +"xHd" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/commons/dorms) +"xHm" = ( +/obj/machinery/holopad, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"xHA" = ( +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 8; + name = "Space Loop In" + }, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"xHQ" = ( +/obj/machinery/disposal/bin, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -24 + }, +/obj/machinery/light_switch{ + pixel_x = -24; + pixel_y = -20 + }, +/obj/structure/disposalpipe/trunk{ + 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/command/heads_quarters/hos) +"xIi" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel, +/area/security/prison) +"xIv" = ( +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -26 + }, +/turf/open/floor/carpet, +/area/command/heads_quarters/captain/private) +"xIJ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"xIL" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/engine, +/area/science/xenobiology) +"xJf" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/lattice, +/turf/open/space, +/area/ai_monitored/aisat/exterior) +"xJi" = ( +/obj/structure/chair/office/dark{ + dir = 1 + }, +/obj/effect/landmark/start/librarian, +/turf/open/floor/wood, +/area/service/library) +"xJj" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/warehouse) +"xKw" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/service/bar) +"xKG" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering/glass{ + name = "Engineering Storage"; + req_access_txt = "32" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/bot{ + dir = 1 + }, +/turf/open/floor/plasteel{ + dir = 1 + }, +/area/engineering/main) +"xKQ" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"xLe" = ( +/obj/machinery/chem_master/condimaster{ + desc = "Looks like a knock-off chem-master. Perhaps useful for separating liquids when mixing drinks precisely. Also dispenses condiments."; + name = "HoochMaster Deluxe"; + pixel_x = -4 + }, +/turf/open/floor/wood, +/area/service/bar) +"xLg" = ( +/obj/structure/table, +/obj/item/folder/red, +/obj/item/storage/fancy/cigarettes, +/obj/item/clothing/mask/gas/sechailer, +/turf/open/floor/plasteel, +/area/security/office) +"xLn" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/commons/locker) +"xLL" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/structure/sign/map/right{ + desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; + icon_state = "map-right-MS"; + pixel_y = -32 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"xLR" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"xMe" = ( +/obj/machinery/light, +/turf/open/floor/plasteel/dark, +/area/commons/cryopod) +"xMh" = ( +/obj/machinery/newscaster{ + pixel_x = -1; + pixel_y = -29 + }, +/turf/open/floor/wood, +/area/service/library) +"xMk" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall/r_wall, +/area/ai_monitored/aisat/exterior) +"xMl" = ( +/obj/machinery/computer/atmos_control/tank/mix_tank{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"xMA" = ( +/obj/machinery/camera{ + c_tag = "Atmospherics Tank - O2"; + dir = 8 + }, +/turf/open/floor/engine/o2, +/area/engineering/atmos) +"xML" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -22 + }, +/obj/effect/turf_decal/bot{ + dir = 1 + }, +/turf/open/floor/plasteel{ + dir = 1 + }, +/area/engineering/main) +"xMW" = ( +/obj/machinery/light/small, +/obj/machinery/power/apc{ + areastring = "/area/service/library"; + dir = 8; + name = "Library APC"; + pixel_x = -25 + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/wood, +/area/service/library) +"xNe" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"xNj" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/carpet, +/area/service/theater) +"xNr" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/closed/wall/r_wall, +/area/engineering/atmos) +"xNC" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/landmark/start/shaft_miner, +/turf/open/floor/plasteel, +/area/cargo/miningoffice) +"xNY" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/landmark/xeno_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/engineering/storage/tech) +"xOe" = ( +/obj/structure/kitchenspike, +/turf/open/floor/plasteel/showroomfloor, +/area/service/kitchen) +"xOk" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/window/westleft{ + name = "Cargo Desk"; + req_access_txt = "50" + }, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/pen, +/turf/open/floor/plasteel, +/area/cargo/office) +"xOn" = ( +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/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/office) +"xOF" = ( +/obj/structure/closet/emcloset, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plating, +/area/commons/fitness/recreation) +"xPf" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/plasteel, +/area/cargo/sorting) +"xPm" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/commons/dorms) +"xPz" = ( +/obj/machinery/door/poddoor/preopen{ + id = "Engineering"; + name = "Engineering Security Doors" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"xPG" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/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/commons/fitness/recreation) +"xPQ" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Dormitories - Aft"; + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/commons/dorms) +"xQv" = ( +/obj/structure/table/wood, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hos) +"xQC" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/hatch{ + name = "MiniSat Access"; + req_one_access_txt = "32;19" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/engineering/break_room) +"xQP" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/item/storage/fancy/candle_box{ + pixel_y = 5 + }, +/obj/structure/table/wood, +/turf/open/floor/plasteel/grimy, +/area/service/chapel/office) +"xQZ" = ( +/turf/open/floor/plasteel/dark, +/area/commons/fitness/recreation) +"xRM" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/aisat/exterior) +"xRR" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/commons/storage/primary) +"xSp" = ( +/obj/structure/table/wood, +/obj/item/folder/red, +/obj/item/folder/red, +/obj/item/folder/red, +/obj/item/clothing/glasses/sunglasses/big, +/turf/open/floor/wood, +/area/service/lawoffice) +"xSr" = ( +/obj/machinery/shower{ + dir = 8 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel/freezer, +/area/commons/toilet/restrooms) +"xSU" = ( +/obj/machinery/vending/coffee, +/turf/open/floor/carpet, +/area/service/bar) +"xTt" = ( +/obj/structure/table, +/obj/item/stack/sheet/metal/fifty, +/obj/item/stack/sheet/metal/fifty, +/obj/item/stack/sheet/metal/fifty, +/obj/item/stack/sheet/glass/fifty, +/obj/item/stack/sheet/glass/fifty, +/obj/item/stack/sheet/glass/fifty, +/obj/item/crowbar, +/obj/item/grenade/chem_grenade/smart_metal_foam, +/obj/item/grenade/chem_grenade/smart_metal_foam, +/obj/effect/turf_decal/bot{ + dir = 1 + }, +/turf/open/floor/plasteel{ + dir = 1 + }, +/area/engineering/main) +"xTE" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/commons/locker) +"xTO" = ( +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/machinery/conveyor{ + dir = 4; + id = "packageSort2" + }, +/obj/structure/disposaloutlet{ + dir = 4 + }, +/turf/open/floor/plating, +/area/cargo/sorting) +"xTU" = ( +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -22 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/break_room) +"xUs" = ( +/obj/machinery/conveyor_switch/oneway{ + dir = 8; + id = "packageExternal"; + pixel_y = 18 + }, +/obj/effect/turf_decal/loading_area{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/sorting) +"xUO" = ( +/turf/open/space, +/area/space/nearstation) +"xVh" = ( +/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/ai_monitored/aisat/exterior) +"xVl" = ( +/turf/closed/wall, +/area/hallway/secondary/service) +"xVy" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/landmark/start/paramedic, +/turf/open/floor/plasteel/white, +/area/medical/treatment_center) +"xVP" = ( +/obj/machinery/light, +/obj/structure/sign/poster/official/random{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"xVW" = ( +/turf/closed/wall/r_wall, +/area/ai_monitored/aisat/exterior) +"xWg" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/open/floor/carpet, +/area/service/library) +"xWZ" = ( +/obj/machinery/light, +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_y = -32 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/office) +"xXd" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/mix_output{ + dir = 8 + }, +/turf/open/floor/engine/vacuum, +/area/engineering/atmos) +"xXs" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/engineering/gravity_generator) +"xXI" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"xXR" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/light_switch{ + pixel_x = -26 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"xXU" = ( +/obj/structure/table/wood, +/obj/item/phone{ + desc = "Supposedly a direct line to Nanotrasen Central Command. It's not even plugged in."; + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/cigbutt/cigarbutt{ + pixel_x = 5; + pixel_y = -1 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = 21 + }, +/turf/open/floor/wood, +/area/command/corporate_showroom) +"xYn" = ( +/obj/machinery/light/small, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/commons/dorms) +"xYE" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/sink/kitchen{ + pixel_y = 28 + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/service/kitchen) +"xYH" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/computer/monitor{ + name = "Bridge Power Monitoring Console" + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"xYV" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/turf/open/floor/carpet, +/area/service/theater) +"xZj" = ( +/obj/machinery/camera{ + c_tag = "Theatre - Backstage"; + dir = 1 + }, +/obj/structure/sign/poster/contraband/random{ + pixel_y = -32 + }, +/obj/structure/closet/crate/wooden/toy, +/turf/open/floor/wood, +/area/service/theater) +"xZy" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/storage/primary) +"yah" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -26 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/commons/dorms) +"yar" = ( +/obj/effect/landmark/start/security_officer, +/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/office) +"yaS" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/storage/primary) +"yaU" = ( +/obj/machinery/camera{ + c_tag = "Engineering - Storage" + }, +/obj/machinery/suit_storage_unit/engine, +/obj/effect/turf_decal/bot{ + dir = 1 + }, +/turf/open/floor/plasteel{ + dir = 1 + }, +/area/engineering/main) +"ycy" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"ycU" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"ycX" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/obj/machinery/modular_computer/console/preset/command, +/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/command/bridge) +"ydn" = ( +/obj/structure/table, +/obj/item/reagent_containers/food/condiment/saltshaker{ + pixel_x = -3 + }, +/obj/item/reagent_containers/food/condiment/peppermill{ + pixel_x = 3 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"ydB" = ( +/obj/structure/showcase/machinery/microwave{ + dir = 1; + pixel_y = 2 + }, +/obj/structure/table/wood, +/turf/open/floor/carpet, +/area/command/corporate_showroom) +"ydE" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/commons/fitness/pool) +"ydK" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/grimy, +/area/service/chapel/office) +"yei" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/snacks/grown/poppy{ + pixel_y = 2 + }, +/obj/item/reagent_containers/food/snacks/grown/poppy{ + pixel_y = 2 + }, +/obj/item/reagent_containers/food/snacks/grown/poppy{ + pixel_y = 2 + }, +/obj/item/reagent_containers/food/snacks/grown/poppy{ + pixel_y = 2 + }, +/obj/item/reagent_containers/food/snacks/grown/poppy{ + pixel_y = 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/service/chapel/main) +"yet" = ( +/obj/structure/table, +/obj/item/clothing/gloves/color/fyellow, +/obj/item/gps{ + gpstag = "AUX0" + }, +/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/commons/storage/primary) +"yeJ" = ( +/obj/structure/table, +/obj/item/hatchet, +/obj/item/cultivator, +/obj/item/crowbar, +/obj/item/reagent_containers/glass/bucket, +/obj/item/plant_analyzer, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics/garden) +"yeW" = ( +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = 21 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"yeX" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/cargo/storage) +"yfg" = ( +/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/dark, +/area/commons/fitness/recreation) +"yfh" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/storage/tools) +"yfk" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 6 + }, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"yfq" = ( +/obj/structure/rack, +/obj/item/book/manual/chef_recipes{ + pixel_x = 2; + pixel_y = 6 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/item/stack/packageWrap, +/obj/item/storage/box/donkpockets, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/service/kitchen) +"yfu" = ( +/obj/structure/chair/comfy/black{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/commons/vacant_room/office) +"yfL" = ( +/obj/machinery/door/airlock/silver{ + name = "Bathroom" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/captain/private) +"yfO" = ( +/obj/structure/chair/comfy/black, +/obj/effect/landmark/start/head_of_security, +/turf/open/floor/plasteel, +/area/security/office) +"yfW" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/external{ + name = "Solar Maintenance"; + req_access_txt = "10; 13" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/solars/port/aft) +"ygd" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/engineering/main) +"ygg" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/oxygen_output{ + dir = 1 + }, +/turf/open/floor/engine/o2, +/area/engineering/atmos) +"ygk" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/circuit) +"yhn" = ( +/obj/machinery/power/apc/highcap/five_k{ + areastring = "/area/tcommsat/computer"; + dir = 4; + name = "Telecomms Control Room APC"; + pixel_x = 24 + }, +/obj/machinery/computer/telecomms/server{ + dir = 8; + network = "tcommsat" + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/turf/open/floor/plasteel/grimy, +/area/tcommsat/computer) +"yho" = ( +/obj/structure/chair/comfy/black{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/command/bridge) +"yhD" = ( +/obj/structure/table/wood, +/obj/machinery/newscaster{ + pixel_x = -32 + }, +/turf/open/floor/wood, +/area/service/library) +"yhY" = ( +/turf/open/floor/carpet, +/area/service/library) +"yib" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/obj/machinery/rnd/production/circuit_imprinter, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"yiZ" = ( +/obj/machinery/camera{ + c_tag = "Chapel Office - Backroom"; + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/service/chapel/office) +"yjZ" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/button/door{ + id = "qm_mine_warehouse"; + name = "Warehouse Door Control"; + pixel_x = -24; + pixel_y = 28; + req_access_txt = "48" + }, +/obj/effect/turf_decal/loading_area{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/warehouse) +"yko" = ( +/obj/structure/table/wood, +/obj/item/paicard, +/turf/open/floor/wood, +/area/service/library) +"ykx" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solars/port/fore) +"ykE" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 10 + }, +/turf/open/space, +/area/space/nearstation) +"ykH" = ( +/obj/structure/chair/stool{ + pixel_y = 8 + }, +/turf/open/floor/plasteel, +/area/commons/locker) +"ykI" = ( +/obj/machinery/hydroponics/constructable, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"ylb" = ( +/obj/structure/sign/warning/electricshock, +/turf/closed/wall/r_wall, +/area/engineering/supermatter) +"ylE" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/obj/item/clothing/suit/hooded/wintercoat/engineering, +/obj/effect/turf_decal/delivery, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/main) + +(1,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(2,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(3,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(4,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(5,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(6,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(7,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(8,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(9,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(10,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(11,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(12,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(13,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(14,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(15,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(16,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(17,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(18,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(19,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(20,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(21,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(22,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +xtS +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(23,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(24,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(25,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(26,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(27,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(28,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(29,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(30,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(31,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +anT +aaa +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(32,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +anT +aaa +aaa +aaa +aaf +aaa +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(33,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aqB +anS +aaf +aaf +aaa +anS +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaa +aaa +aaf +aaa +aaa +aaa +aaa +aaa +pBY +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(34,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaa +aaa +anT +aaa +aaa +anS +aaf +anS +aaf +aaf +aaf +anS +aaf +aaa +aaa +aaa +aaf +aaa +aaa +aaa +aaa +aaf +aaf +aaf +aaf +aaf +aVs +rta +aVs +aaf +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaf +aaf +aaf +aaf +aaa +aaa +aaa +aaa +aaa +aaf +aaf +aaf +aaf +aaf +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(35,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaa +aaa +aqB +anS +anS +anS +anS +anS +aaf +anS +anS +anS +aaf +aaf +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aaf +aVs +pAD +aVs +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaf +aaa +aaa +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aaa +aaf +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(36,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaa +anS +aaf +aaf +anS +anS +apq +anS +aaf +anS +anS +anS +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +qBq +aRA +aRA +aRA +aRA +aVs +lcv +aVs +aVs +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aVs +aVs +aVs +aVs +aVs +aaa +aaa +aaa +aaa +aaa +aVs +aVs +aVs +aVs +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(37,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaa +anS +anS +anS +anS +anS +anS +anS +aaf +anS +anS +anS +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +wOY +aSH +aUb +aVt +mdt +vMG +aVs +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaf +aVs +bvB +aWT +aVs +aaa +aaa +aaa +aaa +aaa +aVs +bKS +aWT +aVs +aVs +aVs +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(38,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaa +aaf +aaf +aaf +anS +anS +anS +anS +anS +anS +anS +aaf +aaf +aaf +aaa +aaa +aaa +aaa +aaa +cSP +aaa +aaa +aaa +abu +bsk +aUc +aVu +bvF +lvm +aVs +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aYC +aVu +aWU +aRA +aaa +aaa +aaa +aaa +aaa +aRA +btS +aWU +bOd +bPA +dYu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(39,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaa +aaf +aqB +anS +anS +anS +anS +anS +anS +apq +anS +aaf +aaf +aaf +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +wOY +aSI +aRA +aVv +bvF +ulG +aVs +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaf +aVs +aVw +aWU +aVs +aaa +aaa +aaa +aaa +aaa +aVs +aVw +aWU +bOd +aZZ +dYu +oRL +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(40,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaa +anS +aaf +anS +aaf +anS +anS +anS +anS +anS +anS +aaf +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +qBq +aRA +aRA +aRA +aRA +cZf +aWV +kHw +aVs +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aRA +bvC +bxt +aYC +aaa +aaa +aaa +aaa +aaa +aYC +bKT +aWU +aVs +aVs +aVs +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(41,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaa +anS +anS +anS +anS +anS +avI +anS +anS +anS +anS +anS +aaf +anS +aaa +aaf +aaa +aaa +aaf +aaf +aaf +aaf +aaa +aaf +aaf +aRA +aVx +aWU +aVs +aVs +aVs +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aVs +aVs +aVs +bvD +aWU +aVs +aaa +aaa +aaa +aaa +aaa +aVs +aVw +aWU +aVs +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ctm +anT +aai +anT +aai +anT +anT +anT +aqB +anT +anT +anT +anT +aqB +anT +aaf +aaa +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(42,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +anS +anS +anS +apq +anS +anS +aaf +anS +anS +anS +aaf +anS +aDb +aDb +aDb +aDb +aDb +aDb +aDb +aDb +aDb +aDb +aDb +aDb +aDb +aDb +aVu +aWU +djz +aZZ +djC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +djz +bsk +djC +aVu +bxu +aRA +aaa +aaa +aaa +aaa +aaa +aRA +aVu +aWU +aVs +aaf +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +anT +aaa +aaa +aaf +aaf +aaa +aaa +aaf +aaf +aaa +aaa +aaf +aaf +aaa +aaa +aai +aaa +aaa +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(43,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +xyp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +anT +aaf +aaf +aaf +aaf +anS +anS +anS +anS +azg +anS +anS +aDb +aDa +aDa +aDa +aDa +aDa +aDa +aDa +aDa +aDa +cWK +aRD +aSJ +aDb +aVy +aWU +aVs +aVs +aVs +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aVs +aVs +aVs +aVu +bxv +aVs +aaa +aaa +aaa +aaa +aaa +aVs +aVu +bMu +aRA +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +anT +aaa +ehp +xCP +mSL +aaf +ehp +xCP +mSL +aaf +ehp +xCP +mSL +aaa +aaa +anT +aaf +aaf +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(44,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaa +aaa +anS +aaf +aqB +anS +anS +aaf +anS +anS +aaf +aai +aDb +aDa +aDa +aDa +aDa +aDa +aDa +aDa +aDa +aDa +cWK +aRE +aSK +cYL +aVz +aWW +aWT +baa +aVs +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aVs +bsl +btO +bvE +bxw +aVs +aaa +aaa +aaa +aaa +aaa +aVs +bKU +bMv +aVs +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaf +aaf +aaf +aaa +ehp +hci +mSL +aaa +ehp +hci +mSL +aaa +ehp +hci +mSL +aaf +aaa +anT +aaa +aaa +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(45,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaa +anS +anS +aaf +anS +auC +anS +anS +ayf +anS +aaf +aaa +aDb +aDa +aDa +aDa +aDa +aDa +aDa +aDa +aDa +aDa +cWK +aRE +aSK +cYL +aVz +bvF +aWU +baa +aVs +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aVs +bsm +aVu +bvF +bxw +aVs +aaa +aaa +aaa +aaa +aaa +aVs +aVu +bMw +aRA +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aaa +aai +aaf +ehp +hci +mSL +aaf +ehp +hci +mSL +aaf +ehp +hci +mSL +aaf +aaa +anT +aaa +aaa +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(46,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +anS +anS +anS +anS +anS +anS +anS +anS +anS +anS +anS +aaf +aDb +aDa +aDa +aDa +aDa +aDa +aDa +aDa +aDa +aDa +cWK +cXE +aIf +aDb +cZh +bvF +aWU +bab +aVs +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aVs +baa +btP +aWX +bxx +aRA +aaa +aaa +aaa +aaa +aaa +aRA +btS +bxw +aVs +aaf +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaf +aaa +aaa +anT +aaa +ehp +hci +mSL +aaf +ehp +hci +mSL +aaa +ehp +hci +mSL +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(47,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaa +apq +anS +anS +aaf +aaf +anS +anS +aaf +anS +anS +aaf +aDb +aDa +aDa +aDa +aDa +obX +aDa +aDa +aDa +lGS +cWM +cXR +cYG +cYP +aVA +aWY +aYE +bac +aVs +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aVs +bsn +btQ +bvG +bxw +aVs +aaa +aaa +cVx +aaa +aaa +aVs +aVu +bxw +aRA +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ehp +hci +mSL +aaf +ehp +hci +mSL +aaf +ehp +hci +mSL +aaa +aaa +aaa +anT +anT +anT +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(48,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +anS +anS +anS +aaf +aaf +dne +cfA +dne +aaf +aaf +aaf +aaf +aDb +aDa +aDa +aDa +aDa +aDa +aDa +aDa +aDa +aDa +cWK +cYE +cYK +cYQ +aVB +aWZ +aVs +aVs +aVs +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aVs +aVs +aVs +bvH +bxy +aRA +aaf +bCG +bEl +aVs +aaf +aRA +bKV +bMx +aRA +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aai +aaa +aaf +hKV +aaa +aaa +aaf +hKV +aaa +aaa +aaf +hKV +aaa +aaa +aaa +aaa +aaf +aaa +anT +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(49,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaa +anS +aaa +aaa +aaf +dne +avL +dne +aaf +aaa +aaf +aaa +aDb +aDa +aDa +aDa +aDa +aDa +aDa +aDa +aDa +aDa +cWK +dDJ +aSL +aDb +cZq +aWZ +djz +aZZ +djC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +djz +bsk +djC +bvH +bMw +aRA +aVs +aVs +bEm +aVs +aVs +aRA +btS +bMy +alK +alK +alK +alK +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaf +aaf +aaf +aaf +anT +aaf +aaf +wdd +wdd +dLs +wdd +wdd +fXZ +sPH +wqU +wdd +fXZ +sPH +sPH +sPH +xgN +aaf +anT +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(50,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +xtS +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaf +dne +avK +dne +aaf +aaf +dne +dne +aDb +aDa +aDa +aDa +aDa +aDa +aDa +aDa +aDa +aDa +cWK +dDK +aSM +aDb +cZq +aWZ +aVs +aVs +aVs +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aVs +aVs +aVs +bBl +bxz +aRA +bBc +aVs +sIA +aVs +bHH +aRA +aVu +bMz +bOe +bPC +bRc +alK +aaf +aaf +aaf +aaf +aai +anT +aai +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaa +aaa +aaa +aaa +anT +aaa +aaf +prg +aaa +aaa +aaf +prg +aaf +aaa +aaf +prg +aaa +aaf +aaa +aaa +aaf +aaa +anT +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(51,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaf +aaf +aaa +aaf +dne +dne +pzj +dne +dne +aip +dne +dnk +aDb +aDa +aDa +aDa +aDa +aDa +aDa +aDa +aDa +aDa +cWK +aRF +aSN +aDb +aVC +aXa +aYF +aVs +aaa +aaa +aaa +aaa +djM +aaa +aaa +aaa +aaa +aVs +btR +bvI +bxA +bCN +bbI +bbI +bbI +bbI +bbI +nWb +btT +bMA +alK +bPD +asa +alK +aaa +aaa +aaf +aaa +aaa +aaa +aaf +aaa +aaf +aaa +aaa +aaf +aaa +aaa +aaf +aaa +aaa +aaa +aaa +aaf +aaa +ehp +kDI +mSL +aaf +ehp +kDI +mSL +aaf +ehp +kDI +mSL +aaa +aaa +aaa +anT +anT +anT +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(52,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaf +dne +dne +aip +dne +auD +avL +awM +ako +dqe +doA +dnk +aDb +aDb +aDb +aDb +aDb +aDb +aDb +aDb +aDb +aDb +aDb +aDb +aDb +aDb +aVD +aXb +aYG +aRA +aRA +aRA +aVs +aVs +aVs +aVs +aVs +aRA +aRA +aRA +bxL +bvJ +bxB +bCQ +bCH +bCH +bEn +dic +bHI +bJo +bKW +bMB +alK +dio +asa +alK +bTn +bTn +bTn +bTn +bTn +aaa +aaf +aaa +aaf +aai +anT +anT +aai +anT +aai +anT +aai +anT +anT +aaf +aaf +ehp +kDI +mSL +aaa +ehp +kDI +mSL +aaa +ehp +kDI +mSL +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(53,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaf +dne +aqC +arW +ato +auE +avM +avT +avT +avT +avT +aJi +avT +dss +avM +avT +avT +avT +avT +avT +avT +avT +avT +avT +dtl +aUd +aVE +aXc +aYH +bad +bbI +bbI +bbI +bbI +biu +bjV +bjV +bnK +bqb +bbI +bJr +bvK +bxC +alK +alK +alK +alK +alK +alK +dQg +alK +alK +alK +bPF +asa +bPL +bTn +vdw +bVQ +bXt +bYC +bYC +bYC +bYC +aaa +aaf +aaa +aaa +aaa +aaa +aaf +aaa +aaa +aaa +aaa +aaf +aaa +ehp +kDI +mSL +aaf +ehp +kDI +mSL +aaf +ehp +kDI +mSL +aaf +aaa +anT +aaa +aaa +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(54,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aip +aqD +arX +dne +dne +dne +aRG +aoc +drQ +dne +aip +dne +dst +aDc +dhE +aRG +aRG +cWA +auG +dnd +dhK +dnk +aRG +aSP +dne +dhM +aXd +aYI +bae +bbJ +bcV +bbJ +bgv +biv +bjW +blT +bso +bqc +bso +bso +bvL +bxD +bzw +tre +bCI +bEo +bJj +bbL +bJq +bbL +bbL +bbL +bPG +usf +bSn +bTo +bUO +bVR +bXu +bYD +bZN +jyQ +yfW +kKl +sRw +sPH +fFY +wdd +wdd +wdd +sRw +sPH +kKl +wdd +wdd +sRw +sPH +kDI +mSL +aaa +ehp +kDI +mSL +aaf +ehp +kDI +mSL +aaf +aaf +anT +aaf +aaf +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(55,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +dne +dne +arY +dne +aaf +dne +dne +aip +dne +dne +aaa +dne +dne +dne +dne +aip +dne +dne +dne +dne +dne +dne +aip +dne +dne +aRA +aRA +dne +baf +bbK +bcW +beK +bbK +biw +bjX +blU +aiT +siD +bHJ +lFR +iSt +mcS +alK +auF +bCJ +tUa +alK +apz +aob +alC +aqK +aqO +alC +aGN +bSo +bTp +bUP +bVS +bXv +bTn +bTn +bTn +bTn +row +ydE +ydE +row +row +aaf +aaf +aaa +aaf +aaa +aaa +aaf +aaa +ehp +uQP +mSL +aaf +ehp +uQP +mSL +aaf +ehp +uQP +mSL +aaa +aaa +anT +aaa +aaf +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +xtS +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(56,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aqE +arZ +atp +aaf +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaf +aaa +aaa +aaa +aaf +aaf +aaa +aaa +dne +arZ +bbK +bcX +beL +bgw +bix +bjY +bqd +baE +baE +baE +baE +bqd +nhy +alK +djW +bNd +sZN +alK +amZ +aob +aob +oWR +aob +bPH +aob +bSo +bTn +bTn +bTn +bTn +bTn +oIi +jGg +nBx +usb +jGg +nBx +pXC +row +aaa +lMJ +aaa +aaa +aaa +aaa +aaf +aaa +aaa +aaf +aaa +aaa +aaf +aaf +aaa +aaf +aaf +aaf +aaa +aaa +aaa +aqB +aaa +aaf +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(57,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aqF +doJ +atq +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +dne +doJ +bbK +vZd +beM +bgx +biy +bjZ +blW +ajk +afZ +bHM +ajs +jBe +pHS +kYv +kYv +kYv +kYv +kYv +kYv +kYv +kYv +kYv +kYv +kYv +alC +mEe +alK +dix +aob +amB +jLE +oMe +flY +flY +flY +flY +flY +kTS +ydE +aaa +lMJ +aaa +aaa +aaa +aaf +aaf +aaf +anT +aaf +anT +anT +anT +aqB +anT +aqB +anT +anT +aqB +anT +aqB +anT +aaf +aaf +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(58,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aaa +aaa +aaa +aaf +aaa +aaa +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aqF +doJ +atq +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +dne +bag +bbK +bcZ +beN +bgy +biz +bka +blX +bnR +ahT +ahT +bKX +jPu +rbE +vQX +jUo +uEC +lVL +vMu +qUY +igf +qde +tLu +gCM +kYv +amZ +bSq +bTr +bUQ +bVT +aob +row +jGg +xcR +flY +fVD +flY +flY +jGg +ydE +aaa +lMJ +aaa +aaa +aaa +aaf +aaa +aaa +aaa +aaf +aaa +aaa +aaa +aaf +aaa +aaa +aaa +aaa +aaf +aaa +aaa +aaf +aaa +aaa +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(59,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaj +aag +aag +aag +aai +aag +aag +aag +aaj +aag +aag +aai +aag +aag +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaf +aqF +doJ +atq +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aip +doJ +bbK +bda +beO +bgz +biA +bka +blY +aeD +agQ +ahT +aeD +kQP +rNX +kYv +lZv +lZv +lZv +lZv +kXR +mbl +fmJ +efp +wul +kYv +auF +bSo +alK +bJs +bVU +bXx +row +oao +flY +kea +flY +jjF +flY +jGg +ydE +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaa +aaa +aaa +aaf +aaa +aaa +aaa +aaf +aaf +aaa +aaa +aaf +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(60,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aac +aaa +aaa +aai +aaa +aaf +aaf +aaf +aaa +aaf +aaf +aaf +aaa +aaf +aaf +aaa +aaa +aag +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aqF +doJ +atq +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aip +asi +bbK +bdb +beP +bgA +biz +bkb +blZ +bnR +ahT +ahT +bKX +aju +syk +eBu +hBP +hBP +hBP +hBP +fmJ +sKp +yfu +lZv +uIN +kYv +aoa +bSo +alK +bUR +alK +alK +row +teM +jGg +jGg +klN +gQu +klN +lCe +row +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aaa +aaf +aaa +aaa +aaa +aaf +aaa +aaa +aaa +aaf +aaa +aaa +aaa +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(61,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaa +aaa +aaa +aaj +aaa +nmO +tbc +dDj +aaa +nmO +tbc +dDj +aaa +nmO +tbc +dDj +aaf +aag +aaf +aaa +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaf +aqF +doJ +atq +aaf +aaa +aaa +aaa +aaa +aAA +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aip +doJ +bbK +bdc +beQ +bpt +bcW +bkc +bma +bBh +bEt +aiW +dig +amv +wlH +kYv +tLu +taZ +lZv +lZv +lZv +hKm +irH +rrD +rrD +wxF +bRd +ghM +alK +alK +alK +bXy +row +row +row +row +jji +egv +fTb +row +row +ckN +ckN +ckN +ckN +ckN +ckN +ckN +ckN +aaa +aaf +aaa +aaf +aai +anT +aaf +aaf +aai +anT +anT +aai +anT +anT +aaf +aaf +aaf +aai +anT +aaf +aai +anT +aai +aaa +aaa +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(62,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaa +aaa +aaa +aag +aaf +nmO +ykx +dDj +aaa +nmO +ykx +dDj +aaa +nmO +ykx +dDj +aaf +aaf +aaf +aaf +aaf +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aqG +asb +atr +aaf +aaa +aaf +fKG +fKG +kff +fKG +fKG +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +dne +daX +bbK +bbK +beR +bbK +bcW +dhP +bqd +baE +baE +baE +baE +bqd +xfI +kYv +qmB +lZE +lZv +lZv +lZv +nTV +xGF +efp +uIN +kYv +bRe +xDn +aSO +bUS +bVV +bXz +bYE +bYE +cbp +row +eHR +eSC +lRU +row +cjp +ckO +cmg +cnh +ckN +cpQ +crg +cjt +ckN +aaa +aaf +aaf +aaf +aaa +aaf +aaa +aaa +aaf +aaa +aaf +aaa +aaf +aaa +aaa +aaf +aaa +aaa +aaa +aaf +aaa +aaa +aaf +aaa +aaa +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(63,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaa +aaa +aaf +aag +aaf +nmO +ykx +dDj +aaf +nmO +ykx +dDj +aaf +nmO +ykx +dDj +aaf +aaa +aaf +aaa +aaa +aaf +aaa +aaa +aaa +aaa +aaf +aaf +aaf +aaa +aaf +aaf +aaf +aaf +aaf +dne +dne +asc +dne +aaf +aaa +aaf +fKG +mYU +qHT +rCg +fKG +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +cUZ +aaa +aaa +aaa +aaa +aaa +aaf +dne +baj +dhO +bdd +beS +bgC +biB +bkd +bmb +bEp +bGj +bJp +eiS +jBe +xmb +kYv +qxN +ePx +kSt +lZv +lZv +mmJ +edM +gCM +gdH +kYv +aqO +bSt +dux +dux +dux +dux +dux +dux +cbq +row +row +iUw +row +row +cjq +ckP +ckS +ckP +ckP +ckP +cjt +crh +ckN +aaa +aaf +aaf +lMJ +aaa +aaf +aaa +aaa +cBR +cBR +cBR +cBR +cBR +cDE +cBR +cBR +cBR +cBR +cBR +cBR +aaf +aaf +aaf +aaa +aaa +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(64,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aaa +nmO +ykx +dDj +aaa +nmO +ykx +dDj +aaa +nmO +ykx +dDj +aaf +aaa +aaf +aaa +aaa +aaf +aaf +aaf +aaa +aaa +aaf +aaa +aaf +aaa +aaf +aaa +aaa +aaf +aaa +aip +dnO +asd +dne +aaf +aaa +aaf +fKG +vfw +qHT +hIg +fKG +aaf +aaf +aaf +aaf +uSt +vTM +otk +uSt +otk +eDG +uSt +aaf +aaf +aaf +aaf +dne +asb +bbM +bde +beT +bgD +biC +bke +bmc +bnS +bqj +bsu +btY +maP +xLL +kYv +kYv +kYv +kYv +kYv +kYv +kYv +kYv +kYv +kYv +kYv +alK +bSo +dux +bUT +bVW +bXA +diy +dux +cbr +bYE +cem +avW +cbp +dux +diE +ckQ +ckP +cni +cjt +dbq +ckQ +cjt +ckN +aaf +ack +cwf +ack +aaf +aaf +aaa +aaa +cBR +cCK +cDA +cEE +cFy +cGq +cHl +cIp +cJg +cKe +cKS +cBR +aaf +aaa +aaf +aai +aag +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(65,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaj +aag +aaj +aaa +aaa +nmO +ykx +dDj +aaa +nmO +ykx +dDj +aaa +nmO +ykx +dDj +aaf +aaf +aaf +aaf +aaf +aaf +aaa +aaf +aaf +aaf +aaf +aaf +ahp +aif +ahp +ahq +ahp +ahp +ahp +ahp +aqH +ase +dne +aaf +aaf +aaf +ixL +ixL +lQC +qZg +ixL +fKG +fKG +ixL +aaf +lMK +cMn +osR +lMK +omS +scx +lMK +aaf +aaf +pcd +pcd +pcd +bak +icr +uVQ +beU +lJu +ooH +bkf +bmd +bnT +bqk +bsv +btZ +bvV +bxN +mei +nzp +xEM +mei +smm +iYz +mei +bLb +bME +bOi +bPJ +alK +mEe +dux +iLj +dvt +bXE +abk +dux +dux +dux +cen +dux +cbq +dux +cjs +ckR +cmh +cnj +cjt +ckP +cjt +diJ +dux +dux +dux +cwg +dux +dux +aaf +aaa +aaa +cBR +cCL +cDB +cEF +cFz +cGr +cHm +cIq +cJh +cKf +cKT +dBV +aaf +aaa +aaa +aaa +aai +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(66,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aag +aaa +aaf +aaa +aaa +aaf +wwD +aaf +aaf +aaf +wwD +aaf +aaa +aaf +wwD +aaf +aaa +aaf +aaa +aaa +aaa +aaf +aaa +aaa +aaa +aaa +aaf +aaa +ahp +aig +ajc +akf +alx +amO +anU +ahp +dne +asf +dne +dne +dne +dne +joY +viO +pxg +pxg +fFq +xFb +nPL +ixL +lMK +lMK +vTM +dMm +pcd +dMm +eDG +lMK +lMK +pcd +geZ +hhN +fQn +joV +icr +xTO +xcA +fCh +icr +icr +icr +bnU +bql +bsw +baE +mei +ePg +mei +nzp +xjs +xDD +iZl +nWX +mei +bLc +aod +aGN +aqK +alK +dit +dux +ydn +wmt +bXC +bYH +dux +cbs +cdb +ceo +dux +cdc +dux +diF +cjt +cjt +cjt +ckP +ckP +crh +dxv +ctn +dux +sUM +cwh +dyw +dux +aaf +aaf +aaf +dBN +dBO +cDC +cEG +cFA +dBS +cHn +cEE +cEE +cEE +cEE +cBR +cMt +cNr +aaa +aaa +aaa +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(67,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aai +aaa +lPr +wZC +wZC +bID +kQW +kQW +kQW +kfT +kQW +kQW +dSe +kQW +kQW +kQW +mLH +wZC +wZC +wZC +wZC +sZQ +aaa +aaa +aaf +aaf +aaf +aaa +ahq +ahq +ahp +blt +ahp +amP +anV +apr +aqI +asg +ats +dnu +dne +awP +ixL +kvd +jty +qHT +qHT +gqN +vgW +ixL +qjZ +tLZ +fTZ +sEK +dVV +sEK +ewZ +nKi +nKi +mex +nKi +qDg +wZB +yeX +jRj +kAz +xcA +emC +gub +hZR +nzZ +bnV +bBG +bsx +bua +mei +jKl +ubJ +htO +lrJ +mei +mei +mei +mei +bLd +aof +aob +alC +alK +bSu +dux +bUW +bXE +bXD +bYI +bZO +cbt +oZg +dux +dux +csT +dux +cxQ +ckS +pbc +cnk +ckP +cmi +dvt +csf +cto +dux +cfF +mSd +cxb +dux +aaa +aaa +aaa +cBR +cCM +cDD +cEH +cFB +cGt +cHo +cIr +cJh +cKg +cKT +dBV +cMu +aaf +aaa +aaa +aaa +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(68,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aag +aaa +aaf +aaa +aaf +aaf +spA +aaf +aaa +aaf +spA +aaf +aaa +aaf +spA +aaf +aaa +aaf +aaa +aaa +aaa +vjC +aaf +aaa +aaf +aaa +aaf +aaa +ahq +aih +ajd +akh +aly +amP +anW +aps +aqJ +ash +att +dqe +dne +dne +ixL +jBD +spx +iFO +wJv +jrn +qwP +qbf +jda +dUL +wNI +wNI +wNI +wNI +wNI +wNI +qmL +wNI +wNI +wNI +jTb +ycy +pXj +jmU +lxw +vyB +xUs +mKn +jRj +bnW +bqn +bsy +bub +hyy +wEG +nfs +hVs +jQR +hVs +rqx +wRE +mei +bLe +bMF +apz +aob +alK +bSr +dux +bUX +bUU +gqA +xEf +dux +mWg +cdd +dux +cfC +cdc +dux +cjv +diG +dux +cnl +cox +dux +diI +diK +dux +dux +dux +cwi +dux +dux +dux +dux +aaa +cBR +cCK +cDA +cEE +cFC +cGu +cHp +dBT +cJi +cKh +cKS +cBR +cMv +cNs +aaf +aaa +aaf +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(69,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aai +aaj +aaj +aaa +aaf +nmO +grC +dDj +aaa +nmO +grC +dDj +aaa +nmO +grC +dDj +aaa +aaf +aaa +aaa +aaa +vjC +aaa +aaa +aaa +aaa +aaf +aaa +ahq +aii +ajg +aki +alz +amP +anX +apt +dnk +doJ +atu +aRG +dnZ +awQ +ayk +dKP +xNC +fVa +phk +eHv +jGw +wPl +xIJ +hqy +ifM +mIE +tHz +mIE +mIE +mIE +ifM +mIE +nwc +wzm +hZC +tUN +jRj +kAz +tdX +xPf +emH +nAD +uHq +bnX +bqo +bsz +buc +mei +dkr +mei +nry +mei +qPs +mei +vls +mei +bLf +bJs +aLd +bPK +bRf +bSv +dux +dux +hIt +dux +dux +dux +dux +cde +dux +dux +cdc +dux +dux +dux +dux +bXF +bXF +dux +dux +csh +dux +cuf +cvk +cwh +bXE +bXE +dvq +dux +aaa +cBR +cBR +cDE +cEE +cFD +cGv +cHq +cIs +cJj +cJj +cKU +cLN +cMw +cBR +aaf +aaa +aai +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +xtS +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(70,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +nmO +grC +dDj +aaf +nmO +grC +dDj +aaa +nmO +grC +dDj +aaa +aaf +aaa +aaa +aaa +vjC +aaf +aaf +aaf +aaf +aaf +aaa +ahq +aij +ajf +akj +alA +amQ +anY +ahp +dhu +doJ +atu +dnk +dnk +doJ +ixL +mcu +kEQ +pSm +glp +htx +kTx +ixL +kuG +hqy +jPn +mIE +xsO +mIE +rQy +mIE +jPn +ofI +mIE +mIE +hZC +oUJ +icr +jmU +vMm +wUL +iuZ +ryN +iyy +bnY +bql +bsA +baE +mei +mei +mei +wfY +mei +qgb +mei +etM +mei +bLg +bLf +amU +bPL +alK +bOf +bOv +alC +qhe +dux +bYK +bZP +cbv +cdf +cep +dux +cgI +chZ +chZ +chZ +cBr +chZ +chZ +cpS +chZ +csi +chZ +chZ +cvl +cbx +cfD +ceu +dux +mqC +aaa +aaa +cBR +rRz +cEI +cFE +cGw +cHr +cIt +cEE +cKi +cKV +cLO +cMx +cBR +aaf +aaf +aag +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(71,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaa +aaa +aaa +aag +aaf +nmO +grC +dDj +aaa +nmO +grC +dDj +aaf +nmO +grC +dDj +aaf +aaf +aaf +aaf +aaf +vjC +aaa +aaa +aaa +aaf +aaf +aaf +ahq +aik +anZ +akk +alB +amR +aoO +ahp +aqL +asi +atu +auG +avN +doJ +ixL +ixL +ruI +ixL +ixL +ixL +ixL +ixL +oqK +lvr +rky +mKW +qKo +mKW +dRx +mKW +nUn +mKW +mXL +ieA +fbn +nSP +icr +kPl +icr +tBW +wkC +odb +icr +bnZ +bql +bsB +alK +aoe +bxS +mei +mei +mei +mei +mei +mei +mei +alK +alK +alK +alK +alK +alC +bSs +bzC +bWb +dux +bYL +bZQ +cbw +cdg +ceq +dux +dwb +cia +cia +cia +cia +cia +cia +cDP +cia +cia +cia +ceu +dyg +dvt +bXE +bXE +dvE +dux +aaf +aaf +dBN +cDG +cEJ +cFF +cGx +cHs +cIu +cEE +cKj +cKW +cLP +cMy +cBR +aaa +aaa +aai +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(72,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaa +aaa +aaa +aai +aaf +nmO +grC +dDj +aaf +nmO +grC +dDj +aaa +nmO +grC +dDj +aaa +aaf +aaa +aaa +aaa +vjC +aaa +aaf +aaf +aaf +aee +bbo +bbo +bbo +bbo +akl +ahp +ahp +ahp +ahp +dne +doJ +atD +dnk +dnk +doJ +gyh +vck +yjZ +xbM +vnr +vdx +dRF +uBW +mlf +hSe +jfl +mIE +hpe +mIE +iKS +mIE +lEn +mIE +iKS +utH +mIE +rdv +icr +jmU +ejy +xlv +lFQ +jRc +icr +bnW +bqp +bsC +bud +bvY +bxT +bzC +bzC +dCW +bOv +alC +bSw +bzC +bzC +bzC +bzC +bPM +bzC +bzC +bSp +alC +bSr +dux +bYM +bZP +cbx +cdh +bUV +dux +dwc +cia +cjw +ckU +cmk +cnt +coy +cUH +crj +csj +cia +cug +dyg +bXE +dDw +bXE +rvd +dux +aaa +aaa +cBR +cDH +cEK +cFG +cGy +cHt +cIv +cJk +cKk +cKX +cLQ +cMz +cBR +aaa +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(73,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaa +aaa +aaa +aaj +aaa +nmO +sFR +dDj +aaa +nmO +sFR +dDj +aaa +nmO +sFR +dDj +aaa +aaf +aaa +aaa +aaa +vjC +aaa +aee +aee +aee +aee +agB +ahr +ail +bbo +akm +dnk +amS +dnF +dnk +aqM +asj +atv +auH +avO +awR +gyh +oXj +hhA +xJj +jiU +tOX +ekw +dZJ +jyX +mPQ +iWG +mPQ +pYN +mPQ +mMO +mPQ +gjz +mPQ +mPQ +qVi +sHG +nFS +ooH +fWs +icr +wKY +wuz +peX +icr +boa +bqq +bsD +alK +dhR +aoa +alC +bBq +apz +bOf +bzC +bSp +aoa +aqO +bMG +alC +bPN +apz +bTt +bTv +alC +bSr +dux +dux +dux +cby +bXE +cer +dux +dwb +cia +cjC +cla +cml +cnt +coz +cUH +crq +csk +cia +cuh +cvm +cDK +ceu +cxR +oeQ +dux +aaa +aaa +dBN +cDI +cEL +cFH +cGz +cHu +cIw +cEE +cKl +cKY +cLR +cMA +cBR +aaa +aaa +aai +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(74,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaa +aaa +aaa +aaj +aaf +aaa +aaf +aaf +aaa +aaf +aaa +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +kWh +wZC +abN +aef +aeG +afE +agC +ahs +aim +ajh +akn +alD +amT +dnG +apu +aqN +ask +dpG +auI +avP +awS +gyh +iiG +ijE +lxs +iRr +pzO +gyh +fgK +rbq +mGQ +vNU +doX +kfS +mGQ +eUh +eUh +glJ +iYX +kFi +odv +jgw +lEx +icr +icr +icr +iUm +icr +icr +icr +hiR +bqr +bsE +glc +glc +glc +glc +glc +glc +glc +bGq +glc +glc +glc +glc +glc +glc +glc +glc +glc +glc +cgH +dux +bYN +dux +cbz +bXE +bYJ +dux +dwe +cia +cjB +cpT +cic +cnr +coA +cUH +crl +csl +cia +ceu +ceu +dyg +ceu +dux +dux +dux +aaa +aaa +cBR +cDJ +cEM +cFI +cGA +cHv +cIx +cEE +cKm +cKZ +cLS +cMB +cBR +aaf +aaf +aai +aag +aag +aag +aag +aaa +aaa +aaa +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(75,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aai +aag +aai +aag +aaj +aag +aai +aaj +aaa +aaa +aaf +aaa +aaa +aaf +aaa +aaa +aaf +aaa +aee +aee +aee +aee +agD +aht +ain +aji +dnd +alE +vhj +aRG +alE +dou +dne +dne +auJ +avQ +dne +gyh +nhL +jbE +qOI +fHu +gPZ +gyh +oWn +hOX +vDS +jwx +vPR +teH +gcE +mPQ +igL +eJg +eAy +iOc +tfS +vnS +oSE +mfs +lUV +eAK +pqJ +ucp +nkq +lEx +bnW +bqs +bsx +glc +mWA +yhD +mHR +pMd +vyZ +ndd +fEX +miq +rLH +pYh +xMW +glc +lAF +ijI +nOM +dXi +glc +bSr +bXF +bYO +dux +bXE +dvt +dux +dux +dwb +cia +cjz +ckX +cmm +cnp +coB +vwZ +crm +csm +cia +dux +cwj +cNg +ceu +dux +nho +dux +aaf +aaf +cBR +cBR +cBR +cFJ +cGB +cBR +cBR +cBR +cBR +dBU +cBR +cBR +cBR +aaa +aaa +aai +aaa +aaa +aaa +aaf +aaf +aaa +aaa +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(76,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaf +aaa +aaf +aaa +aaf +aaa +aaa +aaa +aaf +aaa +aaa +aaf +aaa +aaa +aaf +aaa +aaf +aaf +aaf +aee +bbo +bbo +agA +agA +aio +alF +aio +dne +apv +dne +dne +atx +auK +avR +awT +aym +ixc +tGD +xwN +kvJ +qQe +gyh +kYD +kfM +uWi +dfw +eaW +tUP +tpO +iGB +wCb +rgr +umz +fMM +ibn +ivz +nTU +xaX +pvU +qqK +rMU +gyP +xAW +nas +bnV +dCN +apA +glc +hsi +xJi +fEX +pMd +fEX +pMd +fEX +miq +pse +veI +mLh +glc +lBi +tHZ +iMN +sYh +glc +bSu +dux +bYP +dux +cbA +cdi +dux +cdl +dwb +cia +cnm +sos +cid +cnq +coC +cpW +crn +csn +cui +dux +cxS +cNf +fpa +dux +sCN +dux +aaa +aaa +aaf +aaa +aaa +cFK +cGC +cBS +cIy +aaf +aaa +aaa +aaf +aaa +aaa +aaa +aaa +aaf +aaa +aaa +aaa +aaa +aaf +aaa +aaa +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(77,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaf +aaf +aaa +aaf +aaa +aaa +aaa +aaf +aaf +aaa +aaf +aaa +aaa +aaf +aaf +aaf +aaa +aaf +aaf +aaf +aaf +aio +ajj +akp +alG +dhq +aoc +alG +aoc +dne +aty +auL +avS +awU +gyh +gyh +gyh +gyh +gyh +gyh +gyh +xos +lgF +dne +aKZ +dne +xww +hYa +tjW +tjW +usx +aSX +aVM +aXm +aSX +lEx +rlA +lqR +wQJ +hCU +vkg +vsD +usL +bnV +bql +avH +ksO +nkn +nkn +nkn +nkn +nkn +qHV +nkn +nkn +nkn +nkn +wPd +lIt +mqZ +eaK +vIz +gqh +glc +bSr +dux +dux +dux +dux +dux +dux +cfD +dwb +cia +cib +ckZ +cjA +kgN +coB +cpX +cia +lWL +cia +cia +dyg +bXE +dyw +dux +nho +dux +aaa +aaa +aaf +aaa +aaa +cFK +cGD +cBS +aaa +aaf +aaf +aaa +aaf +aaa +aaa +aaa +aaa +fvo +ixH +ixH +ixH +fvo +ixH +fvo +aaa +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(78,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaf +aaf +aaa +aaa +aaa +aaa +aaf +aaa +aaf +aaa +aaa +aaf +aaa +aaf +aaa +aaa +aaf +aaa +aaf +aip +dho +akq +alH +amW +aRG +apw +dod +dne +atz +auM +avT +awV +ayn +ayn +dCl +ayn +ayn +ayn +aFM +qkZ +eOa +aJL +aLa +dne +qwn +eGO +dzl +qzI +aSX +aUj +aVN +aXn +aSX +qBl +jSM +ikm +xhk +tOA +xhk +nbs +wNL +boc +bqt +bsy +wZY +hZI +hZI +mUa +hZI +hZI +qUy +hks +hZI +hZI +hZI +xWg +xAs +xrc +eaK +ifU +fLm +glc +bWc +bXG +bYQ +bZR +cbB +cdj +cse +cdj +cgL +cia +cjB +cro +ckY +cnr +coD +cqa +cnt +cso +cuj +cia +dyj +ceu +ceu +dux +dux +dux +dux +dux +dux +dux +aaa +cFK +cGE +cBS +aaa +aaf +aaa +ker +ker +ker +ker +ker +ker +fvo +gED +voY +jXz +fvo +fgU +ixH +aaa +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(79,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aaa +aaa +aaZ +aaZ +aaZ +aaZ +aaZ +aaZ +aaZ +aaZ +aaZ +aaZ +aaZ +aaZ +aaa +aaf +aio +ajl +akr +alI +amX +aRG +dnZ +aqP +dne +atA +dne +dne +dne +dne +dne +dne +dne +dne +dne +dne +qcH +ojI +dne +aLb +dne +egt +jik +iiK +taj +aSX +lAt +aVO +aXo +aSX +gxW +suL +wZX +tCH +wTI +iVr +iNi +lEx +bnV +bql +awL +glc +fEX +fEX +wtF +exO +yhY +ePw +xmv +egX +fEX +xnG +itP +glc +uvm +xrc +tMJ +tMJ +glc +bWd +bXH +dux +bZS +dvw +cdk +ceu +cfE +dwi +cia +cjC +clb +cmn +cnt +coE +cpZ +hny +csp +cwn +csr +cxT +ceu +cMm +cwm +cwm +cDK +ceu +cBT +cfF +dux +dzK +cFJ +cGF +cBR +clK +bTs +bTs +ker +poW +sbD +tYa +sgy +mgo +fvo +hCX +gzP +hCX +fvo +ttF +fvo +aaa +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(80,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaf +aaa +aaa +aaf +abg +abx +abV +acm +acA +acV +adm +adJ +aeg +aeH +aaZ +aaa +aaf +aio +aio +aks +alJ +amY +aRG +aRG +aqQ +dne +atB +dne +aaa +aaa +aaf +aaa +aaa +aaf +aaa +aaa +mvN +voK +vwK +dne +aLc +dne +mRZ +hDb +hMN +lYW +aSX +aUl +aVP +aXp +aSX +qOf +xOk +nXL +nas +lzo +lEx +lEx +lJd +bod +bql +bsG +glc +qwv +dRL +glc +eRD +yhY +fEb +dqn +egX +fEX +xnG +xGw +glc +fEX +xlU +xzM +uch +glc +div +bXI +dux +dux +cbD +dux +dux +cfF +dwj +cia +cjD +clc +coG +cnt +coF +cEe +cnt +csq +cxc +cia +diM +cwm +cNf +ceu +dvq +cNm +cNU +cwm +cwm +cDK +dzK +cFL +cGG +cHw +clK +cdm +cKn +cLb +tiH +qSW +yiZ +hpt +lMY +ker +fvo +eQZ +sFd +huS +iGI +fvo +aaa +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(81,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaf +aaf +aaf +aaf +abg +aby +abW +acn +acB +acW +adn +adK +aeh +aeI +aaZ +aaf +aaf +aaf +aio +aio +aio +aio +dnM +apy +aqR +dne +akm +dne +aaf +ihw +ihw +ihw +ihw +ihw +ihw +aaf +ecl +uqh +iFq +dne +bOq +dne +tmr +mgb +mEr +gZf +aSX +aUm +aVQ +aXq +aYS +baz +bbW +bdr +bfd +bgU +biN +bks +bdw +boe +bql +bsH +glc +qwv +dRL +glc +fEX +yhY +vfr +iHr +exO +oNf +lmm +rRZ +glc +sCT +dqo +xDT +qAz +uaH +pMX +alC +dux +dvq +cbE +cdl +hcC +hcC +cgO +cia +cia +cia +cia +cia +cia +cqb +cia +cia +cia +cia +gjp +dDw +gwW +cxU +cxU +czN +cxU +cxU +cxU +cDL +dzK +cFM +cGs +cHx +clK +bZT +cKo +ker +ker +ker +ker +ozS +ker +ker +eHw +moO +oQo +moO +kYM +ixH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(82,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaa +aaf +aaf +aaf +aaa +aaa +aaa +aaf +abg +abz +abX +aco +acC +acX +ado +adL +aei +aeJ +aaZ +aaa +aaa +aaf +aaf +aaf +aaf +dne +dne +dne +dne +dne +dhx +auN +aaa +ihw +rKB +sdX +sbt +lwX +hYq +aaa +sfr +rfC +mjX +dne +aLc +dne +dne +dne +dne +dne +dne +dne +dne +dne +dne +baA +bbX +bds +dCI +bgV +biO +bkt +bmk +bof +bqu +bsz +glc +qwv +dRL +glc +xuF +yhY +yhY +fEX +yko +fEX +fEX +pxS +glc +glc +glc +glc +glc +glc +bWd +aqK +dux +bZU +cbF +dvE +hcC +tHe +iun +hqi +ucR +vLV +hcC +rhS +coH +cqc +crr +csr +duH +bXE +cvn +dvE +cxd +cxU +cyN +czO +cAS +cBU +cxU +dDB +dzK +cFN +cGH +cHy +clK +cJl +cKp +ker +fHG +pAA +vkn +hzM +jyj +ker +eai +moO +tYf +moO +oPo +ixH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(83,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaa +aai +aaa +aaf +aaa +aaa +aaa +aax +aax +aax +aax +aax +aax +acY +adp +adM +aax +aax +aax +aax +aaa +aaa +aaf +aaa +dne +dne +dnO +dnk +aqS +dne +atE +auO +aaa +ihw +wXC +qtw +ssp +bNT +qID +hlh +uxs +drM +dqy +aJM +aLe +avT +bfU +aPl +avT +dCx +aSY +avT +avT +aXr +dne +baB +bbY +bdt +bbY +bgW +biP +bku +bml +bog +bqv +bsz +glc +qwv +dRL +glc +wmO +yhY +yhY +xjY +nBX +xDZ +fEX +xMh +glc +eTx +rfr +sBc +glc +alC +bWd +bXJ +dux +bZV +cbG +cdn +hcC +snY +pPG +hZr +qKC +dBf +rov +cnv +coI +cqd +crs +css +cvp +cvp +cvp +cxU +cxU +cxU +cyO +czP +cAT +cBV +cxU +cDM +dzK +cBR +cGI +cBR +clK +diQ +cKq +ker +lcV +uTa +vyp +ydK +gMW +ker +taX +moO +tRj +moO +mWP +ixH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(84,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaa +aaj +aaf +aaf +aaa +aaa +aaf +aay +abh +abA +abY +acp +aax +vla +adq +adN +aej +aeK +afF +aax +aax +aaa +aaf +aaa +dne +dnu +dnP +dod +dnZ +dne +atP +auO +aaa +ihw +pMn +wLu +mKu +fWm +iGh +tKr +lzt +ocU +chK +tLi +tLi +tLi +tLi +siC +tLi +tLi +aSZ +tLi +tLi +aXs +aYT +baC +bbZ +bdu +bbZ +bgX +biQ +bkv +bdw +boh +bqw +bsx +glc +oMn +fEX +fEX +fEX +vXp +yhY +fEX +tfM +jtX +uiQ +qbu +dpM +tiN +nLy +wMe +glc +auF +aXt +aqO +dux +bZW +cbH +cdo +hcC +dWm +mZQ +tIh +eXC +xVy +fgv +cnw +coJ +cqe +crt +css +ctr +tNq +cvo +cwo +cxe +cxU +cyP +czQ +cAU +diN +cxU +cDL +dux +cFO +cGJ +cHz +bTs +cJn +cKr +cLc +lRj +kVZ +xQP +hKA +plV +qQR +wxW +rdE +jSd +tjr +oZU +fvo +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(85,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaa +aai +aaa +aaf +aaf +aaf +aaf +aax +abi +abB +abe +abe +aax +ada +adr +adr +aek +aeL +afG +agE +aax +aaa +aaf +aaf +aip +ana +aog +doe +aqT +asl +atG +auO +aaa +ihw +kgW +mSf +snC +pZe +wGU +lQr +sTV +rfC +rSB +rPB +yet +gbw +qBG +igY +gxe +pic +vFz +wYu +tLi +dtP +dne +baD +bca +bdv +bff +bgY +biR +bkw +bdw +bnV +bqw +bsx +glc +qxg +txq +fEX +fEX +yhY +yhY +nEx +glc +glc +glc +glc +glc +lyU +kdR +lKz +glc +alK +bWf +bXK +bXK +bZX +cbI +bXK +hcC +wnb +sJT +fnI +xAR +ltc +hcC +cnx +coK +cqf +cru +css +cts +cul +cvp +cwp +cxf +cxU +cyQ +czR +cAV +cBW +cxU +cDN +cEN +cFP +cGK +cHA +cIz +cJo +cKs +ker +hPG +oKY +dAU +pnA +jld +gad +sFd +jiN +dxj +eCz +jaP +tgT +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(86,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaa +aaf +aaa +aax +aax +aaF +aax +aax +abj +aaR +abZ +acq +acD +abe +ads +adO +ael +aeM +afH +agF +afW +aaf +aaf +aaa +dne +dnd +aoh +dne +dne +dne +atH +auP +aaa +ihw +oen +iHw +dlf +mMW +ihw +aaa +oXt +tVt +egK +psw +nIQ +skX +skX +skX +skX +xZy +wfE +myO +tLi +aXu +dne +baE +baE +bdw +bfg +bgZ +bdw +baE +bmm +boi +bqx +bsJ +uOv +glc +glc +glc +vWI +nxP +nxP +vWI +glc +buf +cVh +aVW +glc +glc +glc +glc +bTD +bUY +bWg +bXK +bYR +bZY +cbJ +cdp +hcC +wVN +qmx +utI +qyd +eAe +hcC +cny +coL +cqg +crv +css +ctt +cum +cvp +cwq +cxg +cxU +cyR +czS +cAW +cBX +cxU +cDO +cxU +cxU +cGL +cxU +cxU +diR +cPW +ker +hdT +ker +ker +ker +omU +ker +kig +moO +dxj +fvo +fvo +fvo +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aaa +aaa +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(87,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaa +aaf +aaf +aay +rLV +xIi +abC +jhu +xIi +abC +abC +acr +acE +adb +aaR +aaR +aem +aeN +afI +agG +aax +aaa +aaf +aaa +dne +dne +dne +dne +aqU +asm +atI +dne +aaf +ihw +ihw +ihw +ihw +ihw +ihw +aaf +oaA +fIC +suQ +iFI +kcH +xRR +gSQ +ovB +skX +xZy +wfE +rZb +rPB +aXv +aYU +baF +bcb +bdx +bfh +bdx +bfh +bkx +aYU +boj +bqy +bsK +buj +bwh +bxY +bzI +buj +bCW +buj +buj +cVd +buj +buj +buj +bxY +buj +bwh +bSD +buj +buj +bWh +bXK +bYS +bZZ +cbK +cdq +hcC +hcC +hcC +rlO +nZI +wuo +hcC +cnz +coM +cqh +cnz +css +ctu +cun +cvp +cwr +cxh +cxU +cxU +czT +cAX +cxU +cxU +cDP +cxU +cFQ +cGJ +cHB +cxU +diS +cKs +ker +kpP +ker +gKh +jrm +nHM +ker +fvo +kSV +dxj +fvo +ejd +fvo +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(88,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaa +aaf +aaa +aax +abl +roa +ram +aax +iCn +aaR +aaR +aaI +acF +abe +adt +adP +abe +aeO +afJ +aax +aax +aaa +aaf +aaa +aaa +dne +aoi +apB +apC +dne +dne +dne +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +mvN +psx +eeb +rPB +odA +tsn +wZL +mhX +lhH +pri +gfr +yaS +rPB +aXw +aYV +baG +baG +bdy +baG +baG +baG +bdP +baG +bok +bqz +bsL +buk +dCH +bdP +baG +baG +bCX +bEB +baG +bHW +baG +dCH +baG +bdP +baG +baG +baG +bTE +bUZ +bWi +bXK +bYT +caa +cbL +cdr +cew +cfL +bXK +abH +cjK +clj +cmr +cnA +coN +cqi +crw +cst +cqi +cuo +cvq +cws +cxi +cxV +cNh +czU +cAY +cBY +cCN +cDQ +cEO +cFR +cGM +cHC +cxU +cJq +cKs +ker +ker +fvo +iyJ +ker +ker +ker +dtw +wSt +nYK +rJL +lgH +fvo +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(89,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaa +aaa +aaa +aax +aax +aax +aax +aax +abm +aaR +aaR +aaI +acG +adc +adc +adQ +adc +aeP +afK +agH +aax +aaa +aaf +dne +dne +dne +aoj +apC +doA +dne +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aDu +aDu +aDu +aIC +tLi +cZN +jCt +jLN +rxt +mbJ +dyl +rbw +ojC +wki +aXx +aYW +baH +bcc +bdz +bfi +bfi +bfi +bky +bmn +bfi +bqA +bqA +bul +bfi +bky +bGw +bfi +bCY +bEC +bHX +bHX +bJC +bHX +bMR +bOn +bPY +bRo +bHX +bTF +bVa +bWj +bXK +bYU +bZZ +cbM +cds +cds +cfM +cgU +cil +cjL +clk +cms +cal +cal +cqj +cal +csu +ctv +cup +cvr +cwt +cxj +cxW +cyT +czV +cAZ +cBZ +cCO +cDR +cEP +cFS +cGN +cHD +cxU +cJr +cKu +cLd +ker +tlp +eWf +sFb +eRk +hAM +qrH +rzp +wFB +qrc +kps +fvo +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(90,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaa +aaf +aaa +aax +aaA +aaG +aaP +aax +abn +aaR +abD +acs +acH +abe +adu +adR +abe +aeQ +afL +agI +afW +aaf +aaf +dne +alL +anb +aok +aox +aqV +dne +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +azC +aFV +aHu +aID +tLi +oqV +jCt +jLN +ovB +wBK +skX +oBW +gVv +sMN +aXy +dCE +baI +kDg +kDg +kDg +kDg +kDg +pBK +pBK +gZR +pBK +pBK +hPI +pBK +pBK +bzJ +bBy +bCZ +bED +etj +sqh +sqh +sqh +sqh +sqh +sqh +sqh +sqh +bTG +dCE +bWk +bXK +bYV +cab +cbN +cdt +cex +cfN +cgV +cim +cjM +cll +cmt +cnB +cam +cdz +crx +csv +ctw +cuq +cvs +cwu +cxk +cxX +cyU +rzS +cBa +cCa +cCP +cDS +cEQ +cFT +cGO +cHE +cxU +cJs +cJX +cLe +ker +jwH +mOc +xar +jMs +gdi +lty +wSt +gmh +kMq +vKy +kEn +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(91,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaa +aaf +aaf +aay +aaB +aaH +aaQ +aba +abo +abF +aca +act +acI +add +adv +adS +aen +aeR +afG +agH +aax +aaf +aaf +dne +alL +anc +aol +apD +aqW +dne +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +azC +aFW +aHv +aIE +tLi +rii +jCt +sPP +jzm +jzm +jzm +tsF +lvy +nKP +aXz +aYY +baI +kDg +orA +iEG +sMk +wnk +pBK +kHv +tdP +hNB +kyt +jSe +vfz +pBK +abd +bBz +bDa +bEE +sqh +wxd +lVH +dIl +spG +wQF +lVH +lVH +sqh +bTH +aYX +bWl +bXK +bYW +cac +cbO +cdu +cey +cfO +cgW +cin +cjN +clm +gmc +gmc +fwd +nUi +gmc +vGa +gmc +gmc +cvt +cvt +cxl +cxY +cvt +cvt +cvt +cxU +cCQ +cDT +cxU +bTs +cGP +bTs +bTs +bTs +bTs +cLf +ker +yei +ePC +vjq +fpF +mWm +jYM +jlc +gmh +gbJ +vKy +kEn +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(92,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaa +aaf +aaa +aax +aaC +aaI +aaR +abb +aaI +abG +acb +acu +acJ +abe +adw +adT +adc +aeS +afM +abe +aax +aiq +ajm +ajm +ajm +ajm +aom +ajm +dne +dne +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +azC +aFW +aHw +aIF +tLi +cVH +pRX +oYR +pqi +qed +vSp +xFE +lRs +vvA +aXA +aYZ +baJ +jgE +lwL +jAr +fem +hUx +pBK +gdF +gCY +mrr +kvK +irY +shf +viK +bzL +bBA +bDb +bEF +jDx +mGL +toC +cZA +xnd +frS +xnd +wTi +rKe +bTI +aYX +bWm +bXL +bXL +cad +cbP +cdv +cez +cfP +bXK +cio +cjO +cln +gmc +tXp +iHl +kcT +sGF +sQx +qLt +gmc +cvu +cwv +cxm +cxZ +cyV +czX +cvt +cCb +cCR +cDU +cER +bTs +cGQ +cHF +cIA +cJt +bTs +cLg +cMb +tmB +wfT +ver +gbJ +gbJ +gbJ +moO +kZR +nOq +mWP +kEn +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(93,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaa +aaa +aaa +aay +aaD +aaJ +aaS +abc +abp +acc +acc +acv +acK +abe +abe +abe +abe +aeT +afN +abe +ahu +air +ahx +akt +alM +and +aon +ajm +aqX +dne +aaa +aaa +aaa +aaa +aaa +aaa +aAV +aaa +aaa +aDu +aFX +aHx +aIG +sMN +mVa +sMN +sMN +sMN +sMN +sMN +qfD +sMN +sMN +aXB +aZa +baK +kDg +hXC +iWB +uvZ +ofp +pBK +ucX +vDn +rcc +dSO +gBI +pVV +pBK +bzM +bBB +bDa +bEE +jxm +qsU +eWU +vZL +gFa +fft +gli +dIY +rKe +bTI +aYX +bWj +bXL +mgI +cae +bXL +cdw +cdw +cdw +cdw +eZc +cjP +clo +fwd +pyW +luo +ljs +fdk +vXk +dFh +gmc +cvv +cww +cxn +cya +cyW +czY +cBb +cCc +cCS +cDV +cES +bTs +cGR +cHG +cIB +cJu +bTs +cPY +ker +dna +nYJ +lKv +urB +iqU +urB +vbx +gmh +gbJ +vKy +kEn +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(94,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaa +aaf +aaa +aax +aaE +aaK +aaT +aax +abq +abI +abC +acw +acL +abe +adx +adU +ael +aeU +afO +abe +ahv +ais +ahx +aku +alN +ane +aoo +ajm +ajm +ajm +ajo +ajo +avY +ajo +aaa +azC +aAW +azC +aDu +aDu +aFY +aHx +aaa +aaa +aLo +aaa +aaa +aaa +aaa +aaf +aaa +aUv +aVU +aXC +aYX +baL +nkQ +kUS +dlA +gQq +pzF +pBK +pBK +pBK +pBK +poT +nSn +bBW +pBK +bzN +bBB +bDa +bEG +nfP +lWX +wGD +jnW +kzo +jPE +jfL +tlc +ozU +bTI +aYX +bWj +bXL +bYY +caf +cbQ +cdw +ceA +cfQ +cgX +ciq +cjO +clo +ejP +fkj +khu +rcZ +mAa +fyO +jfR +gmc +cvw +cwx +cxo +cyb +cyX +czZ +cvt +cCd +cCT +cDW +cET +bTs +cGS +cHH +cIC +cJv +bTs +cLf +ker +qTB +kVz +mOc +oJk +spZ +oJk +jlc +gmh +kMq +vKy +kEn +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(95,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaa +aaf +aaf +aax +aax +aaL +aax +aax +abr +abJ +aaR +aaR +aaR +ade +aaR +aaR +aeo +aeV +afP +abe +ahw +air +ahx +akv +alO +anf +aop +orJ +aqY +asn +atK +ajo +avk +ajo +aaa +aDu +aAX +aCj +aDv +aEI +aFZ +aHy +aaa +aaa +aLp +aJS +aNZ +aPs +aJS +aJS +aaa +aUw +aVV +aXD +aZb +baM +kDg +kDg +bfn +kDg +kDg +bcg +bmr +pBK +pvs +fPJ +gBI +jPT +pBK +bzO +bBB +bDa +bEH +sqh +nqx +eSK +qoW +ijr +ayu +lVH +lVH +sqh +bTJ +aYX +bWj +bXL +bYZ +cag +cbR +cdx +ceB +cfR +cgY +cir +cjN +clo +pXm +lbV +vKw +irx +mXH +hph +ctA +ctA +ctA +ctA +cxp +cyc +ctA +ctA +ctA +cCe +cCe +cDX +cCe +cCe +cCe +bTs +bTs +cJw +bTs +cLi +ker +hwM +kVz +mOc +lgH +fwB +lgH +gmo +hZY +kyq +sjN +fvo +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(96,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaa +aaf +aaa +aaa +aaf +aaa +aaa +aay +abs +abK +ace +acx +acM +abe +ady +adT +adc +aeW +afK +agJ +ahx +ait +ahx +akw +alP +ang +aoq +ahx +aqZ +aso +atL +ahx +avZ +ahx +ahx +ajm +ajm +ajm +aDu +aEJ +aGa +aHx +aaa +aJS +aLp +aMG +aOa +aPt +aQz +aJS +aaa +aUv +aVW +aXC +aZc +baN +bcg +bdE +bfo +bhe +biW +bkA +bms +pBK +pYY +oTb +vDo +ghn +viK +bzL +bBB +bDb +bEI +sqh +ijr +ijr +ijr +ijr +ijr +ijr +ijr +jxm +bTK +aZa +bWn +bXL +bXL +cah +cbS +cdw +czE +cfS +cdw +cis +cjO +clp +gmc +gAe +ufW +smH +mpx +dTa +ctA +cur +cvx +cwy +cxq +cyd +cyY +cAa +ctA +cCf +cCU +cDY +cEU +cCf +cCe +cHI +cID +cJx +cID +cLj +ker +fvo +dOA +gcI +fvo +fvo +qfP +qrc +rVx +wDJ +fKu +fvo +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(97,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaa +aaf +aaf +aaf +aaf +aaa +urv +aax +aax +aax +aax +aax +abe +abe +abe +abe +abe +dpy +afR +agK +ahy +aiu +ajn +akx +alQ +anh +aor +apE +dCg +anh +anh +auU +awa +awZ +ayw +azD +aAY +aCk +aDw +aDC +aGb +aHx +aaf +aJS +aLq +aMH +aMH +aPu +aQA +aJS +aJS +aUx +aUx +aXE +aZd +baO +bch +bdF +bfp +wIf +biX +bkB +bmt +pBK +eTH +mmH +uGn +fSx +swz +bzP +bBC +bDd +bEJ +jmy +qZP +hmw +vhM +xaj +smu +ooc +vfd +jmy +bTL +aYX +bWj +bXM +bZa +cai +cbT +cdy +ceD +cfT +cgZ +cit +cjQ +clq +gmc +gmc +gmc +cqp +gmc +gmc +ctA +cus +cvy +cwz +cxr +cye +cyZ +cAb +ctA +cCg +cCV +cDZ +cCj +cCj +cCe +cgJ +bTs +bTs +bTs +cLk +cPb +cMR +cNI +cOo +cMR +fvo +fvo +fvo +fvo +fvo +fvo +fvo +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(98,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aaa +aaa +aaa +wOY +abL +acf +acy +abL +adf +adz +acf +hyP +aeY +afG +agL +ahz +aiv +ajo +aky +akg +ani +aos +apF +apF +apF +atM +auV +awb +axa +ayx +azE +azE +aCl +aDx +aEK +aGc +aHx +aaa +aJS +aLr +aMH +aOb +aPv +aPu +aRT +aJS +aUy +aVX +aXF +aYZ +baP +bcg +bdG +bfq +bdG +bdG +bcg +bmu +pBK +oLu +ePh +hUO +uDX +pBK +bzQ +bzR +bDa +dDa +jmy +hNx +ttx +iPP +ooo +pOk +eQM +wdy +jZs +bTI +bVb +bWo +bXN +bZb +caj +cbU +cdz +ceE +cfU +cha +ciu +cjR +clr +cmy +ctq +cbu +cqq +crD +csC +ctA +cut +cvz +cwA +cxs +cyf +cyZ +cAc +ctA +cCj +cCj +cDY +cCj +cCj +cCe +cHJ +bTs +cJy +cKv +cLl +diV +cMS +cNJ +cOp +cMV +cMV +cPO +cQm +cQJ +cQY +cRs +kzn +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(99,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaa +aaa +aaa +aaa +adG +aaa +aaa +aaa +abu +abM +acg +aax +abe +abe +abe +abe +abe +aeZ +afS +agM +ahA +aiw +ajp +akz +ajQ +anj +aot +apG +apG +apG +atN +alS +awc +axb +ayy +azF +aAZ +aCm +aDw +aEL +aGd +aHx +aaa +aJS +aLs +aMH +guZ +aPw +aQB +aRU +aTi +aUz +aVY +aXG +aZe +baQ +bci +aaf +aaf +aaf +hMQ +hMQ +mZA +hMQ +jFq +jFq +jLc +jFq +pBK +bzR +bBD +bDe +bEK +rcf +rQO +iyh +nZS +dIG +dIG +xsT +wnJ +qSY +bTI +bVc +aXR +bXN +bZa +cak +cbV +cdA +ceF +cfV +cga +civ +cfY +cls +cga +cga +cga +cga +cga +csD +ctA +wvO +cvA +cwB +cxt +cyg +reM +cAd +ctA +dbr +tFJ +dDC +tFJ +cFU +cCe +ctK +bTs +cJz +cKw +cLm +cLm +cLm +cNK +cOq +cLm +cLm +cLm +cMf +cQK +cPv +cPv +cPv +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(100,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaa +aaa +aaf +aaf +aaa +aaa +aaa +aaa +wOY +abe +ach +aax +acN +adg +adA +adV +adc +afa +afT +agN +ahB +ahB +ahB +ahB +alR +ahB +adY +apH +adY +apH +atO +auW +awd +axc +ahx +ahx +ahx +ajm +aDy +aEM +aGe +aHx +aaa +aJS +aLt +aMH +aOd +aPv +aMH +aRV +aJS +aUA +aVZ +aXH +aYX +baQ +bci +aaf +aaf +aaf +wXi +ycX +fWb +plm +fHz +wrH +pDa +vmb +qrM +fnl +jtn +bDf +bEL +jho +qZD +dLC +jbF +gwR +xDS +efB +vfd +jmy +bTM +bVd +bWp +bXO +bZc +cal +cbW +cdB +ceG +cfW +chb +ciw +cjS +clt +cmz +cnH +coT +mYT +cga +csE +ctA +cuv +cvB +cwC +cxu +cyh +cza +cAe +ctA +cCf +cCf +cEa +cCf +cCf +cCe +diC +bTs +cJA +cKx +cLn +cMd +cMd +cNL +cOq +cOT +cLm +cPP +cQo +cQL +cQY +cQK +kzn +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(101,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aaa +urv +abe +abe +abe +abL +aax +acO +adh +adB +adW +aep +afb +afU +agO +ahB +aNA +ajq +aix +akA +ank +ajx +apI +ara +asp +anr +auW +awd +axd +ayw +azG +aAY +aCk +aDw +aEN +aGf +aHx +aaf +aJS +aLu +aMH +aMH +aPu +aQC +aJS +aJS +aUx +aUx +aXI +dCE +baQ +bci +aaf +kbX +hSK +hMQ +rOP +juG +inY +pRA +kJM +wER +moW +mpT +hBc +oda +bDg +bEM +jmy +jmy +jSQ +jmy +jmy +rJc +rJc +rJc +jmy +bTN +aYZ +bWq +bXP +bZd +cam +cbX +cdC +ceH +cfX +chc +cix +cjT +cjT +cmA +cnI +coU +cqs +crE +csF +ctA +ctA +ctA +ctA +ctA +ctA +cym +ctA +ctA +cCi +cCW +cEb +cEV +cFV +cCe +cHK +bTs +cPb +qZk +cLo +cLm +cLm +cLm +cOr +cOU +dDG +cPQ +cMf +cQK +cPv +cPv +cPv +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(102,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaf +aaa +aaa +aaf +aaa +abe +acj +aax +acR +adi +adC +adX +ael +afd +afV +agP +ahB +aiy +dBZ +ajr +alT +anl +aou +apJ +arb +asq +ava +axR +awe +axe +ayz +dCj +azE +aCl +aDx +dCo +aGg +aHx +aaa +aJS +aLv +aMI +aOe +aPx +aQD +aJS +aaa +aUv +aWa +aXC +aYX +baQ +bci +aaf +qpJ +gsT +hlQ +pfU +xXI +mzq +qWe +tmg +sjK +tmg +rTj +sjK +hMQ +bDh +bEN +bGF +aaf +aaf +wQw +wbh +qAA +lcH +ekt +vCw +bTG +aYX +aXR +bXN +bZa +can +cbY +dDo +ceI +cfY +chd +ciy +cjU +clu +cmB +cnJ +coV +cqt +cga +cKJ +cyl +cuw +mfP +cwD +cxw +cyl +czb +cAf +cBc +cCj +cCX +cEc +cEW +cFW +cGT +cHL +bTs +cJB +cKz +cLp +cMe +cMT +cMT +cMT +cOV +cMT +cPR +cMf +cQK +cPv +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(103,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaf +aaf +aaf +aaf +abe +wiZ +aax +aax +aaL +aax +aax +aax +afc +afW +aax +adY +aiz +ajt +akB +akA +anm +ajx +apK +arc +asr +anr +auY +awc +axb +ayy +azF +aBa +aCm +aDw +aEO +aGh +aHx +aaa +aaa +aLv +aJS +aNZ +aPy +aJS +aJS +aaa +aUw +aWb +aXJ +aZf +baQ +bci +aaf +myk +dtO +hYY +sIL +uZH +ruc +kBg +tmg +pht +eMV +sIL +eCa +hMQ +bDi +bEO +bzR +bBz +bBz +nDn +tMe +seC +hgE +iui +szz +bTG +aYX +aXR +bXQ +bZb +cao +cbZ +cdD +ceJ +cfZ +che +ciz +cjV +clv +cmC +cnK +coW +cqu +cga +csH +ctC +cux +cvD +cwE +cxx +cyk +czc +cAg +ctB +cCk +cCY +dLe +cEX +cFX +cCe +cxL +bTs +cJC +cKA +cLq +cMf +cMU +cNN +cOs +cOW +cMU +cPS +cMf +cQM +cPv +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(104,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aaa +aaf +aaa +aaa +ack +aaa +aaa +aaf +aaa +aaf +aaf +aaf +aaf +aaf +adY +adY +adY +adY +alV +adY +adY +apL +dCh +ass +adY +auW +awd +axf +ahx +ahx +ahx +ajm +aDz +aEP +aGi +aHy +aaa +aaa +aLw +aaa +aaa +aaa +aaa +aaf +aaa +aUv +aWc +aXK +aZg +baQ +bci +aaf +qnv +oCQ +lnm +sIL +hVx +qWe +jAG +tmg +sjK +jBG +eil +eil +vsz +bDj +bEN +bGG +bIi +bJN +wQw +gdT +kQh +xCC +fOS +rNT +bTO +bVe +bWr +bXN +bZa +cap +cca +cdE +ceK +cfX +chf +ciA +cjW +clw +cga +cnL +coX +cnL +cga +cbC +cyl +cuy +cvE +cxv +cxy +cyl +czd +gtn +ctB +cCe +cCe +cCe +cEY +cCe +cCe +cgN +bTs +cJD +cKB +cLr +cMg +cMV +cMV +cMV +cOX +cMV +cPT +cMf +cQK +cPv +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(105,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaf +aaf +ack +aaf +aaf +aaf +aaf +aaf +aaf +aeq +aeq +aeq +aeq +aeq +bgB +akC +alU +ann +adY +apM +ard +ast +adY +auW +awd +axd +ayw +azH +aAY +aCk +aDw +aEO +aGg +aHx +aIH +aHx +aLx +aHx +aHx +aHx +aHx +aHx +aIH +aUB +aWd +aXL +aZh +baQ +bci +aaf +hMQ +dal +sIL +mTN +jZA +tdQ +iLV +pHb +sjK +qVT +eil +yho +woJ +bDk +bEP +bGH +bGH +bJO +nDn +uEe +hVw +miC +ydB +nDn +cMQ +bVf +bWs +bXR +bZe +bZb +ccb +cdF +bZa +cga +cfX +cga +cfX +cga +cga +cnM +coY +coY +cga +csI +ctD +cvF +sBC +cyl +cyi +cyl +cze +ctB +cBd +cCl +cCZ +cEf +cEZ +cFY +bTs +cHM +ctH +cPb +cKC +cLr +cLm +cLm +cLm +cLm +cOq +cLm +cPQ +cMf +cQK +cPv +cPv +cPv +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(106,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aaf +aeq +aeq +aab +agR +ahE +aiA +akD +akD +dCa +ano +apH +apN +are +asu +atQ +auZ +awf +axa +ayA +azE +azE +aCl +aDx +aEQ +aGj +aHz +aII +aJT +aLy +aMJ +aHz +aHz +aQE +aJT +aII +aUC +aWe +aXM +aZi +baR +bci +aaf +fLW +mAV +lnm +sIL +weN +sIL +eil +vTw +sln +sIL +lnY +lBR +xof +bDk +bEP +bGI +bGH +bJP +nDn +xXU +lUO +xGi +ksp +vCw +bTP +bVg +bWt +bXS +bZf +caq +caq +cdG +caq +cgb +chg +acd +chg +clx +cmD +cnN +coZ +coZ +crF +csJ +ctE +dDv +cuA +cwF +cxz +cyn +czf +cAh +cBe +chg +chg +cEg +cFa +cFZ +cGU +cHN +cIE +cJE +cKD +cLs +cMh +cMW +cMh +cMh +cOY +cPs +cPU +cQp +cQN +cQY +cQK +kzn +cYJ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(107,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaa +aaf +aaa +aeq +aeq +aff +afY +afY +ahD +ahP +ajv +akE +alW +anp +aow +ans +arf +asv +atR +azb +azq +axg +ayy +azF +aBb +aCm +aDw +aEN +aGk +aHA +aIJ +aJU +aGk +dCr +aHA +aPz +aJU +aRW +aTj +aUD +aWf +aXN +djB +baS +bci +aaf +qpJ +xYH +qvR +dti +pGH +hyb +mqq +msx +ucy +mTN +tfR +rcO +gFo +bDl +bEQ +bGJ +bIj +bJQ +hEZ +snU +kQh +vss +rye +vCw +bTP +bVh +bWu +aWf +bZg +car +car +cdH +ceL +ceL +ceL +ceL +ceL +ceL +ceL +cnO +ceL +ceL +crG +csK +ctF +car +czg +car +cxA +car +car +cAi +ctF +car +car +car +cFb +czg +car +cHO +cIF +cJF +cKE +cLt +cMi +cMX +cNO +cOt +cOZ +cPt +cLm +cMf +cQO +cPv +cPv +cPv +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(108,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaa +aaf +aaa +aeq +aes +afh +agb +agT +ahG +aiC +ajw +akF +alZ +anq +aoA +aoy +arg +asw +anr +auW +awg +axh +ahx +ahx +ahx +ajm +aDA +aER +aGl +aHB +aIK +aJV +aIK +aHB +aHB +aPA +aJV +aHB +aHB +aUE +aWg +aXO +aZk +baT +bci +aaf +qnv +hfd +lnm +sIL +jZA +sHC +eil +wDZ +rYK +fnl +knM +gcZ +gJm +bDm +bER +bGK +bGH +bJO +nDn +xnc +wmK +xgL +eVz +vCw +bTQ +bVi +bWv +bXT +bZh +cas +cas +cdI +cas +cgc +chh +chh +chh +cly +cmE +cnP +cpa +cpa +crH +csL +ctG +cgc +qee +chh +cxB +cyo +czh +cAj +ctG +cCm +cpa +cEh +cFc +umv +chh +cvG +cIG +cJG +cKF +cLu +cMj +cMY +cMT +cOu +cPa +cPu +cPV +cQq +cQP +cQY +cRt +kzn +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(109,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaa +aaf +adD +aeq +aer +afg +aga +uJq +ahF +aeq +ajx +akG +ama +anr +adY +adY +dhv +anr +adY +avb +awh +axi +ayB +azI +aBc +aCn +aDB +aES +aGm +aHC +aHD +aJW +aHD +aHD +aHD +aHD +aQF +aRX +aTk +aUF +aWh +aXP +aZl +baT +bci +aaf +hMQ +jZI +sIL +sIL +jZA +jUl +fnn +kWa +tmg +kUx +qaa +hzs +ezp +bDk +bEP +bGH +bGH +bJP +nDn +uEe +opx +hgE +hFD +nDn +bTP +bVj +bWw +bXU +bZi +bZk +ccc +ccc +bZj +cgd +cge +cgd +cge +cgd +cgd +cnQ +cpb +cqv +cgd +csM +ctH +bTs +cvH +cvH +cxC +cyp +cvH +cAk +cBf +cvH +cqv +cEi +cCq +cCq +cCq +cCq +cIH +cCq +cCq +cLv +cPb +cMZ +cNP +cOv +cPb +cPv +cPb +cPv +cPb +cPv +cPv +cPv +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(110,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaa +aaf +aaa +aeq +aex +afg +agd +agU +ahH +aeq +ajy +akH +amb +ans +eTP +dCf +ajz +ajz +atS +auW +awi +axj +aiq +azJ +aBd +aCo +aDC +aET +aGn +aHD +aIL +aJX +aLz +aMK +aOf +aPB +aQG +aRY +aTl +aHD +aWi +aXQ +aZm +baT +bci +aaf +fLW +mgw +lnm +mTN +wqj +fHz +jon +tmg +tmg +wrY +uiF +eil +vsz +bDn +bES +bGL +bIk +bJR +wQw +bxG +cUm +hxo +jfD +fSe +bTR +bVk +bWx +bXV +bZj +cat +ccd +ccd +ceN +cgd +chi +ciB +cjX +clz +cgd +cnR +cpc +cqw +cgd +csN +cLD +cuB +cvI +cwG +cxD +cyq +czi +cAl +cBg +cCn +cDa +cEj +cCq +cGa +cGV +cHP +cII +cJH +cCq +cLw +cPb +cNa +cNQ +cOw +cPb +aaf +aaa +aaa +aaf +aaa +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(111,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aav +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aav +oRp +aaa +aaa +aaa +aaa +aaf +aaa +aeq +aeq +afX +agc +dBX +agc +aaW +ajz +akI +amc +ant +ame +apO +ari +asx +aiB +avc +awj +axk +ayC +azK +aBe +aCp +aDD +aEU +aGo +aHD +aIM +aIR +aIR +aML +aOg +aPB +aQH +aQH +aIT +aHD +aWj +aXR +aYX +baT +bci +aaf +myk +gRE +nlr +sIL +uZH +ruc +oiY +tmg +iwy +gwZ +uDl +hiZ +hMQ +bDo +bET +bzR +bIl +bIl +nDn +wzo +uWO +qur +jra +szz +bTS +aYX +aXR +bXW +bZk +cau +cce +ccd +qBh +cgd +chj +ciC +cjY +clA +cmF +cnS +cpd +cqx +cgd +cLh +ctJ +cuC +cvH +cwH +cxE +cyr +cwH +cAm +cBg +cCo +cDb +cEk +cFd +cGb +cGb +cHQ +cIJ +cYc +cCq +cLx +cPb +cNb +cLm +cOx +cPc +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(112,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +xtS +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaa +aaf +aaa +aaf +aeq +aeq +aad +ahC +ahI +aeq +ajA +akJ +amc +anu +aoz +apQ +arj +asz +ahB +avd +awk +axl +ahx +ahx +ahx +ajm +aDE +aEV +aGp +aHE +aIN +aJY +aLA +aMM +aOh +aPB +aQH +aQH +aTm +aHD +aWk +aXS +aYX +baT +bci +aaf +myk +xeF +iwY +pJi +sKT +uGy +fHz +tmg +tmg +tmg +rik +tmg +hMQ +kAB +bEU +bGF +aaf +aaf +wQw +gFw +qka +mxh +lMS +vCw +bTS +aYX +aXR +bXV +bZj +cav +ccf +dDp +ceO +cgd +chk +ciD +cjZ +clB +cmG +cnT +cpe +cqy +cgd +csO +diL +cuD +cvH +cwI +cxF +dDz +czj +cAn +cBh +cCp +cDc +cEl +cFe +cGc +cFg +cHR +cIK +cJJ +cCq +cgM +cPb +cNc +cNR +cOy +cPd +aaa +aaa +aaf +aaa +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(113,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaa +aaf +aaf +aaf +aaf +aeq +aeq +aeq +aeq +aeq +adY +akK +alX +ahB +aoA +ahB +ark +asA +ahB +ave +awl +axm +aiq +azL +aBf +ajm +aDF +aEW +aGq +aHE +aIO +aJZ +aIR +aIR +aOi +aPB +aQH +aQH +aTn +aHD +aHD +aXS +aYX +baT +bci +aaf +rUE +lUB +hMQ +vtZ +sAH +rYE +ycU +ros +pHk +kLD +vWf +uWj +oOW +bDq +bEV +lJx +lJx +lPm +lJx +eGP +eGP +eGP +eGP +lJx +bTT +aYX +bWy +bXX +bZl +caw +ccg +cdJ +ceQ +cge +chk +ciE +cka +clC +cmH +cnU +cpf +cqz +cgd +csP +bTs +cuE +cvH +cwJ +cxG +cys +czk +qBv +cBi +cCn +cDd +lOi +cFf +cFg +cFf +cHR +cIL +cJK +cCq +cgM +cPb +cNd +cNS +cOz +cPb +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(114,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaa +aaf +aaa +aaa +aaf +aaf +aaf +aaf +aaf +ixP +jyd +gRJ +dtF +xns +xsc +tYn +skf +ncN +icE +avf +awd +axn +ayD +azM +aBg +dBH +aDG +aEX +aGr +aHE +aIP +aKa +aLB +aMN +aOj +aPC +aIT +aRZ +aIT +aUG +aHD +aXS +aYX +baT +bci +aaf +aaf +aaf +wXi +vkY +lde +xGK +mCa +swT +fnl +iuy +uuu +swK +jtn +bDr +bEW +eDZ +kBm +lNN +pCP +rom +mgG +oav +tOg +lJx +eMh +bVl +bWz +bXY +bZm +cax +cch +cdK +uRM +cgf +rzX +ciF +ckb +clD +cmI +cnV +cpg +cqA +crI +csQ +ctL +ctL +ctL +ctL +ctL +ctL +ctL +ctL +ctL +cCq +cDe +cEm +cFg +cFg +dDE +cHR +cIM +cJL +cKG +cLy +cPb +cPb +cPb +cPb +cPb +aaa +aaa +aaa +aaf +aaf +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(115,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaa +aaf +aaf +aaf +tsH +tsH +qin +cfv +tsH +tsH +vNx +hSj +kYt +hyV +hyV +sVS +glN +ktz +qNe +auY +awm +axo +ayE +azN +aBh +aCq +aDH +aEY +aGs +aHE +aIQ +aKb +dCq +aIR +aOi +aPB +aQH +aQH +dCz +aUH +aTk +aXT +aZn +baT +bci +aaf +aaf +aaf +hMQ +hMQ +hMQ +skn +nUt +hMQ +sKl +sKl +rio +sKl +xhF +bDs +bEX +oMG +kSp +vbz +hEC +hEC +hEC +wBP +siT +lJx +bTV +bVm +bWA +bXV +bZj +cay +cci +cdL +ceR +izu +chm +ciG +ckc +clE +cmJ +cnW +cph +cqB +cJm +csR +ctL +cuF +cvJ +cwK +cxH +cyt +czl +cAp +cBj +cCq +cDf +lOi +cFf +cGd +cGW +cHS +cIN +cJM +cCq +cgM +gNe +cwc +cNe +cNT +pSX +ack +ack +aaf +aaf +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(116,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaf +aaf +aaa +tsH +tsH +eyO +qJh +okn +xHQ +tsH +icE +wCV +rUl +mCT +kPU +xLg +ibO +qMs +hYA +avg +awn +axp +dBF +azO +aBi +axw +ajm +ajm +ajm +aHE +aIR +aKc +aLC +aMO +aOk +aPB +aQH +aQH +aTo +aUI +aWl +aXU +aZo +baU +sKl +sKl +sKl +sKl +sKl +tWo +sKl +sKl +sKl +sKl +gLV +geY +wIw +lpm +sKl +bDj +bEY +qiH +muJ +kMC +fox +jTX +pzk +bBk +lyF +lJx +bTW +dCE +bWA +bXV +bZk +caz +cci +cdM +ceS +cgg +cgd +cgd +ckd +cgd +cgd +cnX +cIm +cnX +cgd +csS +ctM +cuG +cvK +cuG +cxH +cyu +czm +cAq +cBk +cCq +hoq +cEn +cFi +cGe +cGX +cHT +cFh +cFh +cKH +cLz +wFH +bTs +bTs +bTs +bTs +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(117,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaa +aaf +aaa +tsH +drT +pzg +puw +jMP +fwt +eaP +sVK +mPo +fLq +mwM +yar +frn +rns +gXV +gzm +avh +awo +axq +dBG +azP +aBj +aCr +avk +avk +avk +aHD +aIS +aKd +aIR +aMP +aOl +aPD +aSa +aSa +aTp +aIT +aTk +aXS +dCE +baV +sKl +gCx +ojs +fzZ +mLk +nGl +mLk +uzX +fsX +huJ +cVF +pok +vNi +klX +rio +bDj +bEZ +lJx +cYg +aPa +kHh +qWh +vzO +noS +tIF +lJx +bTX +aYX +bWB +bXZ +bZj +caA +ccj +cdN +ceT +cgh +cAM +ciH +cke +clF +dbH +cnY +cpj +cqC +cgo +cLB +ctL +cuH +cuG +cwL +cxI +cyu +czn +cAr +cBl +cCq +cQD +cEo +cFj +cGf +cGY +cHU +cIO +cJN +cCq +cgN +cMl +bTs +lMJ +aaf +aaf +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(118,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaa +aaf +aaa +gtm +ruy +sXr +nee +jcF +sOM +dlG +jMq +wNF +tqm +hrn +fLq +sRz +owz +qmn +qNe +auW +awp +axr +ayF +ayF +ayF +pvk +ayJ +ayJ +aGt +aHF +aIT +aKe +aIR +aIR +aOm +aPB +aQJ +aIT +aIT +aUJ +aHD +aXS +aYX +baW +iNf +eXH +uOc +gPe +mLk +qFr +mLk +mDF +qCY +jyl +eCc +qVZ +jPX +wIw +sKl +bDu +bFa +lJx +lJx +msf +jdL +lJx +jhV +dPX +jdL +lJx +bTY +aZa +bWC +bSS +bZn +caB +ccj +cdO +ceU +cgi +cDh +ciI +ckf +clG +dbI +cnZ +cpk +cqD +cgo +csU +ctL +ctL +cvL +ctL +ctL +ctL +cvL +cAs +cBm +cCq +cDi +cDi +cDi +cDi +cGZ +cHV +cIP +cCq +cCq +cLA +bTs +bTs +lMJ +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(119,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aav +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaa +aaf +aaf +fmY +pHm +uHd +slA +wcl +eQY +gWb +wWO +uCo +yfO +tNG +wGw +etg +oGd +xWZ +icE +auW +awp +axs +ayF +azQ +aBk +pjG +aDI +ayJ +ayJ +aHD +aHD +aHD +aHD +aMQ +aHD +aHD +aHD +aRX +aTk +aHD +aHD +aXV +aZa +baX +sKl +iuD +wIw +tJQ +mLk +yfL +mLk +pIp +ogf +tEo +tqG +eHa +vHG +rhx +sKl +bDj +bFb +bGQ +lJx +oSo +qfi +mYt +ott +nMV +tim +oOi +bTI +aYX +bWB +aVU +bZo +bZo +cck +cdP +bZo +bZo +chp +iTm +ckg +clH +bZn +coa +cpl +cqE +crK +csV +ctN +cuI +cvM +cwM +caw +cyv +czo +cAt +cBn +cCr +cDj +caw +cFk +cGg +cHa +cHW +cIQ +cJO +cKI +cQr +cQR +cRa +cSd +cRe +cRe +cRe +cRe +cRe +cRe +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(120,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aav +oRp +oRp +aaa +aaa +aaa +aaa +aaf +aaa +uXM +oZv +uSn +rtZ +xpY +pKx +rGC +rxy +ejY +imk +gLI +vvt +keY +owz +tQS +vfj +auW +awq +axq +ayG +azR +aBl +aCt +aDJ +aEZ +aGu +lNc +vsk +nvq +jSv +sPC +hEm +lNc +jDV +rLU +kZs +rLU +kYY +aXS +aZp +baT +sKl +tbN +uCe +qrb +tJe +xrJ +vCg +eAW +fcg +gMC +hVY +oxr +ffN +xIv +sKl +bDv +bFc +bGR +lJx +sfl +vqN +sGN +wzp +med +tim +oOi +bTI +aYX +bWB +aVW +bZo +caC +ccl +cdQ +ceV +pky +chq +ciK +ckh +clI +bZn +cob +cpm +cqF +crL +csW +ctO +cuJ +cvN +dDy +cwN +cyw +czp +cAu +cBo +crL +cwN +dDy +cFl +cGh +cHb +cHX +cIR +cJP +cPX +cQt +cQZ +cRc +cRf +cYT +cRg +cYT +cYT +djg +cRe +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(121,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaf +aaf +aaa +tsH +kZm +sbM +oSD +jMP +nXe +rdG +cVA +nQo +rbG +kGl +fxY +wZK +qCl +pEN +pZP +auY +awr +axt +ayH +azS +aBm +aCu +aDK +aFa +aGv +lNc +xxq +mJg +xSp +qXX +lZK +lux +geK +lHj +xLn +vAp +eKY +aXW +aZq +baY +sKl +hTd +wIw +hFt +iOZ +mXi +mLk +sEp +dSR +kAr +stk +qmj +pqa +goF +iNf +bDw +bFd +bGS +lJx +mYt +qfi +oSo +rLS +rvr +wud +oOi +bTI +aYX +bWB +aVW +bZo +caD +ccm +cdR +ceW +cgk +chp +cgo +cgo +cgo +cgo +coc +cpn +cqG +crM +csX +ctP +cuK +cvO +cwO +cxJ +cyx +czq +cAv +cBp +cCs +ctP +cEp +cFm +cGi +cHc +cHY +cIS +cJQ +cgo +cQs +cQS +cRb +cRe +cRe +cRe +cRe +cRe +cZa +cRe +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(122,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaa +aaf +aaa +tsH +tsH +vdB +xQv +vCM +xzr +tsH +icE +okp +wts +ooe +uVk +nmx +owz +nUI +icE +auW +aws +axu +ayI +azT +aBn +aCv +aDL +ayJ +ayJ +lNc +dPl +jzU +jzU +dgy +rCx +lJX +ujE +dsd +xaV +tMO +kTv +aXX +aYX +baU +sKl +sEG +oxn +izJ +oTY +mXi +mLk +mLk +sKl +sKl +sKl +bwG +sKl +sKl +sKl +bDj +bEW +lJx +lJx +lJx +lJx +lJx +lJx +bQx +lJx +eDZ +bTJ +aYX +bWD +bYa +bZo +caE +ccn +cdS +ceX +cgl +bZo +dwv +cki +clJ +cmL +ccd +cpo +cqH +rrX +pfi +pfi +kFZ +lja +nSv +nSv +cyy +czr +cAw +cBq +cyy +cyK +cyK +cAP +cyK +cHd +cHZ +cIT +cIT +cIg +dAw +dvY +dvY +aaa +aaf +aaa +aaa +cRe +cZa +cRe +aaa +aaa +aaa +aaf +aaa +aaa +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(123,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaa +aaf +aaa +aaa +tsH +tsH +wlK +cfv +tsH +tsH +pct +hjA +pdZ +iQz +iQz +iQz +dVE +jzr +sbZ +avi +awt +axv +ayF +azU +aBo +aCw +aDM +aFb +aGw +lNc +vTY +xEu +vGM +jcc +kKq +lDU +tnA +gTN +our +jAK +kYY +aXS +aYX +baT +sKl +vDJ +fgO +whE +sbY +pSE +mLk +hZK +sKl +bth +buK +bwH +byu +bAh +bBO +bDx +bFe +bGT +bIq +bKb +bLG +bNs +bON +bQy +bRN +bSP +bUa +bVn +bWE +bSS +bZo +bZo +bZo +bZo +bZo +bZo +bZo +ciL +ckj +dwL +cgo +cod +cpp +cqI +jiG +kmT +eTY +ely +oAS +pgP +nSv +cyz +czs +cAx +cFr +cCt +cyK +cEq +cEq +cEq +cHe +cIa +cIU +cJR +cIg +dAx +dwv +dvY +aaa +aaf +aaa +aaa +cRe +cZa +cRe +aaf +aaa +aaa +aaf +aaf +aaa +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(124,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +ixP +tGc +xOn +mxL +hxi +ofn +hXr +kwq +inc +pOS +ajm +awu +axw +ayF +azV +aBp +aCx +aDN +ayJ +aGx +aHH +dzx +kPW +dKg +rEX +uYl +lNc +wUF +mBW +cVg +jUz +oiv +aXS +aYX +baT +sKl +sKl +sKl +sKl +sKl +sKl +sKl +sKl +sKl +bti +bcg +bcg +bcg +bcg +bBP +bDy +bFf +bGU +bcg +bcg +bcg +bcg +bcg +bcg +bcg +bcg +bTS +aYX +bWF +bYb +cmZ +diA +crJ +dDq +ceY +cgm +chr +ciM +ckk +clL +cmM +coe +cpq +cqJ +vXa +sDM +dvg +sDM +wST +vjL +nSv +cyA +czt +cAy +cBs +cCt +cyK +cEr +cEr +cEr +cHe +vWm +cIV +cJS +cIg +dxQ +dzc +dvY +aaf +aaf +aaf +aaa +cRe +cZa +cRe +cRu +cRi +cRi +cRi +cRi +aaf +aaa +aaf +aaf +aaa +aaa +aaf +aaf +aaf +aaa +aaf +aaf +aaf +aaa +aaa +aaf +aaf +aaf +aaf +aaf +aaa +aaf +aaf +aaa +aaf +aaf +aai +aag +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(125,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aey +aey +aez +aey +aey +aiJ +aiJ +akW +amp +aiJ +uxT +pOS +hmh +pOS +pOS +avj +awv +axx +ayJ +ayJ +ayJ +ayJ +ayJ +ayJ +dCp +lNc +lNc +lNc +lNc +lNc +lNc +lNc +qwb +kYY +fzt +jUz +aWp +aXS +aYX +baZ +bcl +bdO +bfE +bhA +bjl +bkQ +bmJ +boJ +bra +btj +buL +bdO +byv +bcl +bBQ +bDz +bFg +bGV +bGV +bKc +bLH +bNt +bOO +bQz +bRO +bSQ +bUb +bVb +bWG +bSS +bSS +bSS +bSS +bSS +ceZ +cgn +dvY +dww +ckl +diH +cgo +cof +cpr +cci +nSv +eXu +hgy +qIp +jwE +iGV +nSv +cyB +czy +cAz +cBt +cCu +cyK +cEs +cFn +cFn +cHe +cIc +cIW +cJT +cIg +diT +cMp +dxk +aaa +aaa +aaf +aaf +cRe +cZa +cRe +cRi +dbX +dcg +dcs +cRi +dcE +cRi +cRi +cRi +cRi +cRi +cRi +cRi +cRi +cRi +cRi +cRi +cRi +cRi +dlV +dlV +dlV +dlV +aaf +aaa +aaa +aaf +aaa +aaa +aaa +aaf +aaa +aag +aag +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(126,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aav +oRp +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aey +afp +agn +agn +agn +aiK +ajL +akX +amq +aiJ +rNc +pOS +nQV +gON +nkV +avk +aww +axy +ahx +azW +aBq +aCy +aDO +aCy +aGy +aCy +aIZ +aKk +uew +tLk +oTr +saf +tnA +mBW +cVg +jUz +aWq +aXY +aZr +bba +dCH +bdP +baG +bhB +bjm +bkR +aWf +aWf +brb +btk +aWf +bwI +aWf +dCT +bBR +bDA +bFh +bGW +bIr +bwI +aWf +aWf +aWf +aWf +dCT +aWf +aWf +bVo +bWH +bYc +bZq +caG +abt +bSS +ceZ +cgo +cgo +cgo +cgo +cgo +cgo +ccd +cpr +cci +nSv +vGw +qEi +tjd +jwE +eJd +nSv +cyC +czv +dDA +cBu +cCv +cyK +cEt +tXK +cGj +cHe +cId +cIX +cJU +cIg +cLF +dvY +dvY +dvY +dvY +dvY +dvY +cRe +djh +cYT +cRv +dbY +dch +dct +dcz +djs +cRi +cSh +cSp +cSy +cSd +cSh +dbo +cSy +cSd +cSh +dbs +cSn +cRi +dde +ddj +cTp +dlV +dlV +dlV +dlV +dlV +dlV +dlV +dlV +dlV +aaa +aaa +aai +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(127,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aav +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaa +aaa +aaf +aaf +aez +afq +ago +ahc +ahc +aiL +ajM +akY +amr +anD +aoL +icE +nxA +prS +nkV +avk +awx +axz +ahx +gLk +dsg +eof +eof +eof +eof +eof +eof +eof +hSw +rIb +xTE +xTE +oJO +xTE +qgV +jUz +aWr +aXZ +aZs +bbb +bcm +bdQ +bfF +bhC +bjn +bkS +bmK +boK +brc +brc +buM +bwJ +byw +byw +byw +bDB +bFi +bGX +bIs +bKd +bIs +bNu +bIs +bIs +bIs +bSR +bUc +bVp +bWI +bYd +aWf +caH +ccq +bSS +ceZ +cgo +chs +ciN +ckm +clN +bZn +cog +cpr +cqK +nSv +gcz +opM +tkT +rjg +qda +nSv +cyD +czw +cAA +cBv +cCw +cyK +cEu +cFo +cEu +cHe +cIe +cIY +cIe +cIg +cPe +dvY +cNi +cgs +cOB +cPf +dvY +cRe +cRe +cRe +cRi +dbZ +dci +dcu +cRi +cRe +cRi +cSg +lbz +xjK +cSd +cSg +lbz +xjK +cSd +cSg +lbz +xjK +cRi +cTA +cTn +cTC +cTC +cTC +cTC +cTC +cTC +cTC +daO +bIx +dlV +aaf +aaf +aag +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(128,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aey +afr +agp +agp +agp +aiM +ajN +akZ +ams +aey +aoM +icE +wKu +prS +nkV +avk +awy +axA +ahx +dhz +aoP +eof +mTr +eof +lTz +eof +mfW +eof +kBr +dmS +mBW +mBW +gLD +izA +vxN +jUz +aWs +dnh +prf +prf +prf +prf +mHo +bhD +bjo +bkT +jIg +hIO +teZ +jkm +teZ +wep +sTt +wep +dvD +kmP +lDu +huP +wep +qoi +vWO +gFi +gzX +gzX +vWO +bSS +bUd +bVq +bWJ +bYc +bZs +aYX +ccr +bSS +cfa +cgo +cht +ciO +ckn +clO +cmN +coh +cpt +cqL +nSv +fVX +gEL +fPT +kYE +wEJ +nSv +cyE +czx +cAB +cBw +cCx +cDk +cEv +cFp +cGk +cHf +cIf +cIZ +cJW +cIg +dDF +dvY +cNj +ciL +ciL +cPg +dvY +aaa +aaa +aaa +cRw +cRi +dcj +cRx +cRi +cRD +cSd +cSg +xGQ +iIk +cSd +cSg +xGQ +iIk +cSd +cSg +xGQ +iIk +cRi +cRi +cTq +cRi +cRi +cRi +cRi +cRi +cRi +cRi +daP +cLE +dlV +aaa +aaa +aaf +aag +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(129,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +xtS +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aey +aey +aez +aey +aey +aey +aey +aey +aey +aey +aoN +icE +kFM +llh +icE +avk +awz +axB +ahx +azY +aoP +eof +uQY +eof +vsJ +eof +nfO +eof +qSK +dmS +mBW +ykH +gLD +mBW +rJT +jUz +aWt +aYa +prf +nWa +mKI +sAy +prf +bhE +bjp +bkU +jkm +eAH +qMA +onz +teZ +uwx +kPZ +jpr +mPv +kPZ +hqK +hAL +waL +vWO +dSm +yfq +tXZ +vNg +ebr +djS +gMz +tIB +rSO +djS +gMz +gUC +gMz +djS +ceZ +cgo +chu +ciP +cko +clP +cmO +coi +cpu +cqM +crR +crR +crR +crR +crR +crR +crR +cyF +czy +cAC +cBx +cCy +cDl +cEu +cFq +cEu +cHe +cIg +cIg +cIg +cIg +dxQ +dvY +cNk +ciL +ciL +cPh +dvY +aaa +aaa +aaf +cRi +cRh +dck +cRz +cRB +cRN +cSd +cRU +cSq +cRZ +cSd +dcP +cSN +cSD +cSd +dcU +cTc +dcX +cSd +ddf +ddk +cTj +cTD +cRi +cSn +daF +daJ +cRi +bvT +cRi +cRi +cRi +cRi +aaa +aai +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(130,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aaf +aaa +aaa +agq +ahQ +agq +ajO +ala +amt +agq +dhr +icE +icE +icE +icE +ahx +ahx +ahx +ahx +aGE +aBr +aCz +rJX +fgj +iEi +mDc +hla +kIk +rLU +dmS +ykH +rjF +lFD +njt +uPZ +jUz +jUz +aYb +prf +sZM +pcD +dJE +eTe +bhF +bjq +bkV +pYn +wYd +kMT +moT +teZ +sUI +lvR +msI +mPv +iUY +ffS +qOT +vGe +vWO +vYJ +lao +sPW +oFB +lXj +djS +piB +nZB +fYa +nKs +pcc +tUY +tCA +djS +cfb +cgp +chv +ciQ +ckp +clQ +bZn +ccd +cpv +cqN +crS +ctf +ctW +cuS +cvV +cwV +crR +cyG +czz +cAD +cBy +cCz +cDm +cEw +cFr +cGl +cHg +cIh +dAh +dbl +dyc +dxQ +dvY +dvY +cNW +cOC +dvY +dvY +aaa +aaa +aaa +cRi +dca +dcl +cRy +cRA +cRM +cRa +cSj +cSs +cSB +cSI +cSj +cSO +cSS +cSI +cSj +cTb +cST +nPc +cSL +cVa +cTr +cRY +daC +xIL +lhY +cSn +cRi +dmq +cRi +cZv +cZv +cRi +aaf +aag +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(131,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaa +aaa +aaf +aaf +aaf +aaa +agq +agq +agq +agq +aje +alb +adk +agq +aur +aqb +aqb +asP +aua +aqb +aqb +aqb +aqb +azZ +aBs +eof +hMI +hla +iOe +duS +duS +kIk +esj +kyL +tMO +ljM +jRI +mBW +cVg +out +jUz +aYc +aTC +yfh +pNU +tfL +lpS +bhE +bjp +bkU +jkm +jbZ +pyj +xet +teZ +uMQ +kPZ +nFG +mPv +kPZ +emB +hAL +mPv +kgv +ijm +fLM +tpe +oFB +nPo +djS +wBL +oaZ +xlH +gCt +oaZ +sfb +rmu +cdU +cfc +cgo +diD +ciR +ckq +clR +bZn +coj +cpw +cqO +crT +ctg +ctX +cuT +cuT +cwW +crR +cyH +czx +cAE +cBz +cCA +cDn +cEx +cDn +cGm +cHh +cIi +cJa +dAp +cKK +cxM +dvY +cNl +dAZ +cOD +cPi +dvY +aaa +aaa +aaf +cRe +cRS +dcm +dcv +cRC +dcG +cSe +cSi +cSr +dcY +cSG +cSK +cSr +dcY +cSW +cSK +cSr +dcY +ddc +cSk +ddl +cTk +cTm +daB +daB +daG +cSn +cRi +ddx +ddz +daR +cZv +cRe +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(132,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aaf +aaa +agq +ahd +ahR +aje +aje +alc +aje +agq +dCe +agq +agq +asQ +agq +agq +agq +eof +eof +eof +eof +eof +hMI +oUy +eof +eof +eof +eof +hsq +dkX +gzN +xTE +iEy +iPj +cVg +wsX +jUz +boW +prf +sqM +skB +uJM +voc +bhG +bjr +bkW +teZ +teZ +teZ +teZ +teZ +wbZ +hCA +msI +pzY +kPZ +upO +mDX +lwN +dYw +wlF +kBH +vSG +wCs +ijm +jug +fGC +nZB +aJA +qqM +rQv +fbJ +xDL +djS +cfd +cgq +cgq +cgq +cgq +cgq +cmP +cmP +cpx +cqP +crR +cth +ctY +cuU +cvW +cwX +cxK +cyI +czA +cAF +cBA +cCB +cDo +cEy +cFs +cGn +cHi +cIj +dvY +dvY +cKL +dvY +dvY +diW +cNX +dBe +cPj +dvY +aaa +aaa +aaf +cRe +cRS +dcn +dcw +cRk +dcH +cSf +cSl +uiZ +cSa +cSJ +nBJ +cUM +cUN +cSJ +nBJ +uiZ +cSV +cSJ +cSX +ddm +cTt +daA +cSn +cSn +cSn +daL +cRi +daQ +ddA +daS +dbv +cTT +ddC +aaf +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(133,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aav +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aaf +aaf +agq +ahe +ahS +aje +ajP +ald +amu +anE +aoQ +agq +ary +asR +aje +auc +adl +eof +nYk +wCr +cri +qTW +idx +wCQ +hbq +esv +nZv +eof +voB +dkX +vfK +mBW +sIP +mBW +cVg +ipj +jUz +dCD +prf +ehF +ttQ +hZy +prf +bhH +bjp +bkU +wep +joP +giS +eCf +nzz +vBv +kPZ +eXX +mPv +kPZ +jhw +dXM +mjp +usd +kAx +qSJ +kAc +qfe +dDd +fWS +dYt +hpl +ykI +kmr +tHs +efP +jmq +djS +dDr +cgq +chx +chx +chx +cgq +cmQ +cok +cpy +cqQ +crR +wmB +ctZ +cuV +cvX +cwY +crR +cyJ +cBs +cBs +cBB +fco +cDp +czB +cAG +cEz +cyK +dxQ +dvY +cJY +cKM +cLH +dvY +cNn +dAZ +cOE +cPh +dvY +aaa +aaa +aaf +cRe +cRS +dco +dcx +dcA +dcI +cRR +cRV +cRX +cSb +dcO +dcQ +cRX +cSb +dcT +dcQ +cRX +dcZ +ddd +cTa +ddn +cTs +ddu +daD +cSn +daH +daK +cRi +bIv +ddz +ddB +cZv +cRe +aaa +aaf +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(134,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aav +oRp +oRp +aaa +aaa +aaa +aaa +aaa +aaf +aaa +weB +weB +weB +weB +dhn +aiO +aje +ale +ahS +agq +aoR +agq +arz +asS +aub +aje +ahd +eof +hsv +lOt +vCd +gjo +pCC +pdy +lOk +eof +eof +eof +ttU +uck +wZM +ykH +mER +ykH +cVg +oop +dtE +aYf +prf +prf +prf +prf +prf +bhI +bjs +bkX +wep +kDc +wRK +npo +dFc +xKw +oBB +sZJ +pIJ +seD +iuF +kPZ +mPv +til +unK +pTI +aKM +fFa +iSE +djS +erD +hpl +iaE +naO +tHs +hfE +kYC +djS +ceZ +cgq +chx +ciS +chx +clS +cmR +col +cpz +cqR +cgq +ctj +cua +cuW +cvY +cvX +crR +cyK +cyK +cAH +cBC +cyK +cyK +cyK +cyK +cyK +cyK +diP +dvY +cJZ +cKN +diU +dvY +dvY +cNY +dvY +dvY +dvY +aaa +aaa +aaa +cRi +dcb +cZa +dDI +dcB +dcJ +cRa +cSm +cSw +cSE +cSI +cSM +cSR +cSE +cSI +dcV +cTe +dda +vNv +cSZ +ezU +cTz +ddv +iAD +tpE +gTs +daN +cRi +dmr +cRi +cZv +dbw +cRi +aaa +aag +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(135,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaf +aaf +aaf +aaf +aaf +kPw +vUh +pQJ +weB +ahU +aiP +weB +weB +weB +weB +aoP +agq +arA +aje +auc +aje +awB +eof +xSr +wjH +weG +eof +eVB +wFE +vic +rXs +olc +eof +eFQ +uck +prY +ykH +qaJ +mBW +cVg +fxX +jUz +aYe +dnh +bbh +duo +dnh +bfK +bhE +bjp +bkU +wep +hrB +gWH +jAS +wep +elo +kPZ +jPl +mPv +kPZ +hqK +kPZ +mPv +mGM +unK +ijm +rQj +opk +kBH +skb +feU +kQJ +fCx +mqX +fCx +sfb +bnL +djS +csg +cgq +chx +ciT +ckr +clT +cmS +com +cpA +cqS +cgq +dwL +dwL +dwL +dwL +dwL +dwL +xAp +vhG +cAI +cBD +cCD +uun +rSL +dvY +dyc +gGH +pVL +dvY +cKa +cKO +cLJ +cor +cmZ +cNZ +dxk +aaa +aaa +aaa +aaa +aaa +cRi +doj +dcp +idm +lYC +dcK +cSd +cRW +cSv +cSc +cSd +dcR +cSQ +dcS +cSd +dcW +cTg +ddb +cSd +ddg +ddo +dds +cTD +cRi +daE +daI +daM +cRi +cTA +cRi +cRi +cRi +cRi +aaf +aag +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(136,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aai +edG +edG +eQs +edG +edG +weB +duX +weB +weB +weB +weB +xQZ +klE +weB +aoS +weB +wfx +wfx +wfx +wfx +wfx +eof +eof +eof +eof +eof +rVu +tRh +eof +eof +eof +eof +ldm +lgY +fAA +izA +sra +ykH +cVg +mig +jUz +aYg +aZv +bbi +bct +dnh +bfL +bhE +bjp +bkU +wep +smA +lWq +xLe +wep +wep +kqP +wpE +sTt +tlF +pRp +sTt +wep +vWO +xYE +imw +imw +lvu +oAw +tnE +fGC +mtH +rQv +qqM +itL +fbJ +wxA +djS +ceZ +cgq +chy +ciU +chx +clU +cmT +con +cpB +cqT +crU +dwL +cub +cJa +cJa +cJa +gHh +wRy +wRy +wRy +cBE +cAJ +cCE +cCE +czC +dzI +cIl +dAd +dvY +dvY +dvY +dvY +cKP +cKP +cKP +cKP +cKP +aaa +aaa +aaa +aaa +cRi +dcd +dcq +dcy +cSt +dcL +cSd +iIk +xGQ +cSg +cSd +iIk +xGQ +cSg +cSd +iIk +xGQ +cSg +cRi +cRi +ddp +cRi +cRi +cRi +cRi +cRi +cRi +cRi +cTA +dlV +aaf +aaa +aaa +aaf +aag +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(137,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aag +edG +jwh +tDZ +kfb +lYZ +qoA +mRb +oQI +tNX +teJ +ifs +ekk +ekk +xXR +dtL +hJA +wfx +wjD +jBn +wfx +mzp +gsp +wfx +wyt +oTC +oLU +ukJ +vbZ +xPQ +ofE +eyR +tFp +sgH +txP +xou +wIS +sIP +mBW +cVg +rLB +jUz +aYe +dnh +dnh +dnh +dnh +dnh +bhE +bjp +dCM +wep +rzT +mte +wep +wep +dpF +iaA +iaA +iaA +iaA +gin +ocV +ocV +rTV +reC +les +kGY +unn +lwz +djS +oKf +uXT +mIG +dAX +tHs +efP +jmq +djS +ceZ +cgq +chx +cLU +chx +clU +cmU +coo +cpC +cqU +crV +dwL +dxQ +cuY +cwa +dzQ +dwL +gLC +qqg +cAK +cBF +cCF +uGW +dqU +dvY +dww +gEk +eZe +cJa +cPx +cJb +cKb +cKR +cLK +cMq +cNo +cKP +aaa +aaa +aaa +aaa +cRi +dce +cSt +ggU +dcC +dcM +cSd +iIk +gLN +cSg +cSd +iIk +gLN +cSg +cSd +iIk +gLN +cSg +cRi +ddh +ddq +ddt +ddt +ddt +ddt +tJG +cTA +cTA +ddy +dlV +aaf +aaf +aaa +aai +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(138,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +wdu +lYZ +rUL +dYf +fxf +jQb +rDr +ezN +plX +plX +plX +wbv +fcl +fcl +thq +pya +qhx +wfx +sbs +jbv +wfx +gSX +hen +wfx +nqT +nOm +lRI +vSE +maQ +mbw +jRk +maQ +vnL +pvo +rkT +sHU +oBl +tde +xlW +kJc +url +jUz +aYh +aCM +bbj +aCM +bdW +bfM +bhJ +bjt +bkU +wep +vEl +brl +wep +kiL +qJk +qfY +qfY +iaA +iaA +hvn +iaA +jGA +vWO +vWO +vWO +vWO +vWO +rCH +djS +vJE +hpl +tHs +nZE +tHs +efP +rIw +djS +ceZ +cgq +chA +ciV +cks +cgq +cmV +cop +cpD +cqV +crW +dwL +dxQ +cuZ +cuZ +cuZ +cuZ +cuZ +ioI +krD +czD +cAL +cBG +czD +czD +czD +cFu +dyc +cOA +cIn +cJc +cKc +cKQ +cLL +cMr +cNp +cKP +aaf +aaa +aaa +aaa +cRi +dcf +dcr +kje +dcD +dcN +cSd +jqj +cSx +cSF +cSd +vzs +dbp +cSF +cSd +jqj +dbt +cSF +cRi +ddi +ddr +cTB +dlV +dlV +dlV +dlV +dlV +dlV +dlV +dlV +aaf +aaa +aaa +aag +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(139,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aag +edG +rUL +jit +hYr +jLF +oPO +vBd +wSx +wSx +sPs +gPN +xmc +tZe +tZe +oni +hkz +wfx +xGy +jAs +wfx +wad +wVV +wfx +eDr +nOm +sUa +njD +wjR +xHd +rTu +jxD +hyv +ggj +uVj +wYA +xGp +pmb +uCj +qHe +url +jUz +dhN +dnh +dnh +dni +dnh +dnh +bhE +bjp +bkU +alq +boV +brm +wep +wGq +hNP +frr +pUJ +ocV +gpH +tej +tTX +iaA +wgD +vWO +nPn +tdK +ePj +liF +djS +wQM +oaZ +fCx +vCi +fCx +sfb +qAS +djS +diB +cgq +chx +ciW +ckt +clV +cmW +coq +cpE +cqW +crX +dwL +dxQ +cuZ +cwb +lal +ygk +sdi +fDD +wKo +czD +cQC +cBH +cCG +cDq +czD +dvY +dvY +dvY +cGo +cJd +cPz +cKP +kSy +cMs +cNq +cKP +aaa +aac +aaa +aaa +cRi +cRe +cRe +cRe +cRi +cRi +cRi +cRi +cRi +cRi +cRi +cRi +cRi +cRi +cRi +cRi +cRi +cRi +cRi +dlV +dlV +dlV +dlV +aaa +aaf +aaf +aaf +aaf +aaf +aaa +aaf +aaf +aag +aag +aaf +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(140,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aai +edG +gXt +okb +xMe +edG +weB +pGN +wSx +jpf +tMo +fLh +tMo +fkF +thm +oni +hXu +wfx +eGc +fbw +wfx +eGc +xhM +wfx +wfx +wvY +giv +qRa +hdR +xYn +rzz +pSY +pSY +pSY +kkl +lhP +qZB +pSY +pSY +pSY +jUz +jUz +biq +dnh +aaa +aaa +aaa +bfN +bhK +bju +bkZ +alq +bBj +brn +wep +wep +ngZ +ccU +iqV +hLG +iaA +qfY +nGs +hLG +xSU +vWO +wni +jig +jig +hCH +djS +peh +tyM +fZR +pwY +iYv +hpC +fse +djS +cff +cgq +cgq +cgq +cgq +cgq +cgq +cgq +cpF +cgq +cgq +dwL +dxQ +cuZ +eqG +cwZ +cwZ +cyM +uYk +krD +cQv +cAN +cBI +cAP +cDr +czD +aaf +aaf +dvY +dvY +dAn +dvY +cKP +dbN +dbP +dbN +cKP +aaf +aaf +aaf +aaa +aaa +aaf +aaf +aaf +aaf +aaa +aaa +aaf +aaf +aaf +aaa +aaa +aaf +aaa +aaa +aaa +aaf +aaf +aaa +aaf +aaf +aaa +aaf +aaa +aaa +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aai +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(141,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aag +edG +rUL +okb +dYf +lYZ +njB +tNR +gZF +jjI +klE +nwG +yfg +gAU +uOg +gkj +nPf +kkR +pko +krL +yah +pko +xPm +qRd +swu +gQT +utQ +kLa +hdR +xHd +uit +pSY +gfR +qGg +pUa +qYO +tAp +saR +sbU +pSY +aUU +aCM +dtR +tMD +tMD +whB +tMD +tMD +bhL +bjv +bla +bmQ +boX +bro +bts +mtf +uzY +sNj +qfY +iaA +lMo +tRn +hgV +iaA +nia +vWO +hCt +lGv +jjm +vre +vWO +vWO +vWO +djS +djS +djS +iqv +djS +djS +cfg +cJa +cJa +ciX +cJa +clW +cIk +cJa +cpG +kVo +dDu +gra +cuc +cuZ +dyp +cwZ +cwZ +cyM +xVP +krD +czF +cAN +cBJ +cAP +cDs +czD +aaf +aaa +aaf +dvY +cJe +dvY +aaa +dbN +dbQ +dbN +aaa +aaa +aaa +aaf +aaa +aaa +vLD +aaa +aaf +aaa +aaa +aaa +aaf +aaa +aaa +aaa +aaa +aaf +aaa +aaa +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(142,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aag +lYZ +nHL +pHr +iNR +xpD +mlO +pig +wuN +oVF +tzk +gHw +tzk +eHT +lxd +uGB +tZV +uuU +lEN +umO +qXd +lEN +umO +hKZ +nwH +jvP +kXt +qTN +dKy +iLG +fhO +pSY +fWJ +tkr +qBy +xgw +qBy +nQW +yeJ +pSY +avD +dnR +dtS +tMD +eoN +fzU +pcy +tMD +bhM +bjw +bkU +alq +alq +brp +wep +feJ +vhg +syK +iaA +qfY +lPE +qfY +nGs +iaA +poo +vWO +wni +xbB +uLG +tKM +lGk +tWp +vWO +fNk +iSO +pPp +fcU +wbK +djS +cfh +dvY +dvY +dvY +dvY +clX +dvY +dvY +dvY +dvY +cuZ +sFv +cuZ +cuZ +upN +cxN +cxN +qJZ +cxO +krD +czG +cAN +cBK +czD +cDt +czD +aaf +aaa +aaf +dvY +cJd +dvY +aaa +dbN +xse +dbN +aaf +aaf +aaf +aaf +aaa +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(143,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaf +aai +edG +edG +edG +edG +edG +mkS +pGj +uzi +jjI +rMx +maE +hLH +gEN +vZo +vos +jOk +oWt +hOA +hyZ +wmX +sHf +hyZ +pmq +gGb +pmd +jom +hyZ +hvL +wSs +nVE +pSY +hTs +tkr +qBy +kfN +qBy +nIU +dzO +pSY +avB +dnS +dnS +tMD +oeu +plk +wWR +tMD +bhN +bjx +blb +alq +boY +brq +wep +mIW +qfY +hJC +mPm +rlw +jsx +rYI +hvn +iaA +nUs +vWO +xOe +xOe +sVW +mFH +vWi +dxa +vWO +fyZ +mwP +iZM +gst +mwN +djS +cfi +aqr +chB +dvY +cku +clY +cmY +dvY +cpH +cqX +cuZ +fFM +cud +kxk +cxO +cxO +cxO +dGH +mzh +krD +cQB +cAO +cBL +cAP +cDu +cEA +aaf +aaa +aaa +dvY +cJf +dvY +aaa +dbN +awY +dbN +aaa +aaa +aaa +aaf +aaa +aaa +aqB +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(144,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaf +aaa +aaa +aaa +aaa +aaa +weB +weB +pKD +emj +fsi +ghG +ghG +ghG +oDp +rKs +wVf +gPG +wfx +wfx +nyg +rzz +wfx +hKK +rzz +aAi +wfx +rzz +wdQ +wfx +vJf +rzz +pSY +pXT +tkr +qBy +uIY +eSp +uVl +kSs +aTC +aUV +smU +smU +tMD +tMD +eAd +tMD +tMD +bhE +bjp +bkY +alq +bcs +brr +wep +wep +xze +rbX +vqd +tyY +tyY +mQW +eNY +jBu +xze +vWO +vWO +vWO +vWO +vWO +bSZ +nZH +vWO +djS +djS +djS +caT +lcj +djS +dDs +apc +apb +dvY +ckv +clZ +cmZ +cor +cpI +cqY +cuZ +jLY +lzk +lzk +cwd +kfu +cxP +cxO +gnZ +krD +czI +cAP +cAP +czD +anS +blx +aaa +aaa +aaa +ack +uim +ack +aaa +aaf +gHk +aaa +aaf +aaa +aaa +aaf +aaa +aaf +anT +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(145,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaf +aaa +weB +weB +kPw +weB +weB +kiA +tZe +rtU +qSc +qSc +qPw +fGG +fGG +rKs +wVf +gAV +wfx +rHS +hLu +gAR +fEl +aMp +gAR +aAj +wfx +wpD +mHZ +wfx +rJO +iTC +pSY +eVL +mlH +hpG +nkB +hpG +wUI +xqM +pSY +dCC +smU +nmK +ouC +qkQ +vNm +wiv +smU +dCJ +bjp +blc +bmR +boZ +brs +btt +avs +xze +tfX +xYV +evV +rfm +fdE +nbl +eSQ +xze +xze +lQo +uyq +eTE +xze +bTa +bUs +bVz +bWX +bYo +bVz +caU +ccD +cdV +cfj +apc +chC +dvY +dvY +dvY +dvY +dvY +cpJ +cqZ +cuZ +cuZ +obb +krD +kOt +gRS +oUA +cxO +cxO +cYI +krD +aaf +aaf +anS +anS +anS +aaa +aaf +aqB +anT +anT +anT +aaf +aaf +gHk +aqB +anT +aqB +anT +anT +anT +aaf +anT +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(146,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaf +aaf +kPw +xOF +uGe +qyf +syi +klE +tZe +kYl +rdV +plX +jXa +plX +plX +aRu +wVf +rsm +wfx +siX +xpy +wfx +sbs +wRz +wfx +aAk +wfx +ikA +kum +wfx +iwd +kZv +pSY +goY +gUf +xGS +gSK +nzH +kYp +goY +pSY +aUW +smU +gvY +lep +xvf +xNY +kyA +smU +bhO +bjy +bld +bmS +bpa +brt +btu +buU +xze +hvy +gRD +jvn +cTE +xCx +uds +cWc +tuB +uqB +kXp +wtU +xZj +xze +bTb +bUt +bVA +nyo +bYp +bZy +tsx +bZB +cdW +cfk +apc +chD +dvY +ckw +cma +cna +cos +dxh +clY +crZ +cuZ +tVY +krD +oLW +gGT +wPk +dGH +cxO +lUv +krD +aaa +aaf +aaf +aaf +aaf +aaf +aaa +aaf +aaf +aaa +aaa +aaa +aaa +pDz +aaa +aaa +aaf +aaa +aaa +aaf +aaa +anT +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(147,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +xtS +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaf +aaa +weB +wOY +adF +wOY +weB +oRx +tZe +pGf +xbd +pqG +pqG +qJF +hXP +hXP +mRE +wzY +wfx +nqK +gsp +wfx +qmK +jBn +wfx +aAl +wfx +nqK +kyr +wfx +paQ +vqv +pSY +qqb +lBg +thc +wYi +hem +nsA +lBg +pSY +avB +smU +sQY +lep +qcF +uyl +nLA +smU +bhK +bjz +bkZ +alq +bpb +bru +alq +alq +xze +jtr +kKA +xNj +xNj +dBg +vTo +kCR +xze +fXa +fWz +pGg +dmL +xze +oEM +bUu +xVl +ozV +cow +xVl +dLK +alq +alq +cfl +alq +alq +dvY +ckx +ciL +dwQ +cot +cnb +cra +csa +cuZ +lMz +krD +ocT +xkG +uTS +cxO +cxO +tfs +krD +aaa +aaa +aaa +aaf +aaa +aaf +aaa +pGD +pGD +pGD +pGD +pGD +aaf +lRm +aaa +pGD +pGD +pGD +pGD +pGD +aaa +aqB +aaf +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(148,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaf +aaa +weB +aaa +aaa +aaa +qjf +psS +psS +psS +dkh +kPw +kPw +tPT +sVv +sVv +sVv +kNB +wfx +wfx +wfx +wfx +wfx +wfx +wfx +aHQ +wfx +wfx +wfx +wfx +wfx +wfx +pSY +pSY +pSY +pSY +pSY +pSY +pSY +pSY +pSY +biq +smU +hSp +iAR +kwD +uih +hFm +uhi +bhG +bjA +bkW +alq +alq +brv +alq +buV +xze +tzl +fkx +qIn +ggA +qWu +fwb +iIJ +xze +jIS +ozl +jbH +iiE +xze +bvd +bUv +xVl +xVl +mvj +xVl +dLK +alq +cdX +cfm +apc +chE +dvY +cky +ciL +dwX +ciL +ciL +cou +adI +dvY +mjJ +krD +eqq +llb +uTS +cxO +cxO +tID +noG +lMJ +aaa +aaa +aaf +aaa +anT +aaa +dlD +nln +nln +nln +nln +ods +lRm +woQ +xqv +xqv +xqv +xqv +urI +aaf +anT +aaf +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(149,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaf +aaa +oWo +aaa +aaa +aaa +jLP +afD +afD +afD +afD +afD +afD +afD +afD +afD +afD +jPO +dhw +dnh +auo +avq +awI +axL +dnh +axO +dnh +dhB +aLk +aHW +aYa +aHV +dnh +aKw +aLZ +aNm +dnR +aPS +cXc +aSo +dnh +avB +smU +joe +pfp +tVM +hzH +dlo +xwg +bhJ +bjt +bkU +alq +atj +brw +btv +dbj +xze +xze +xze +xze +xze +bFA +xze +xze +xze +rWE +xze +bPf +xze +xze +cjr +bTe +bVB +bVC +nAG +pCV +caW +alq +cdY +bPl +avr +chF +dvY +ckz +ciL +dwY +ciL +ciL +cgs +csc +dvY +dxk +krD +dbG +txj +eEe +cxO +izh +qaK +qEc +idz +idz +vYs +mIJ +aaa +anT +aaf +gFW +gFW +gFW +gFW +gFW +aaf +mJX +aaf +gFW +gFW +gFW +gFW +gFW +aaa +anT +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(150,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aai +sKV +aaa +aaa +aaa +aaa +jLP +afD +afD +afD +afD +afD +afD +afD +afD +afD +afD +jPO +dnh +dnh +dnh +dnh +dnh +axM +ayQ +aAn +aIv +aCM +avF +aLJ +aNS +aHW +dhH +aCM +aCM +dCs +aCM +aPT +aRi +aCM +aCM +avF +smU +kbk +wSJ +hib +qpV +dAc +smU +bhP +bjB +ble +bmT +bpc +dhQ +btw +buX +nLT +bGp +btw +dCV +bwY +bFB +bHl +bIE +bHl +bTd +bHl +bPg +bHl +bSc +eoK +uHc +uJU +uJU +pvA +bZA +bZE +bZE +bZE +bZE +bZE +bZE +bZE +ckA +dwQ +cnb +cou +cpK +ciL +csc +dvY +lMJ +krD +jyv +ohj +nnK +cxO +xHA +cxO +krD +aaa +aaa +aaa +qRM +aaa +anT +aaf +aaf +aaf +aaf +aaa +aaa +aaa +lRm +aaa +aaf +aaa +aaa +aaf +aaa +aaa +anT +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(151,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aag +aaa +aaa +aaa +bii +aaa +jLP +afD +afD +afD +afD +afD +afD +afD +afD +afD +afD +jPO +arG +asB +aup +dnR +dnh +axN +dnR +ocS +ocS +ocS +ocS +ocS +ocS +ocS +ocS +ocS +ocS +ocS +ocS +ocS +ocS +ocS +ocS +ocS +nmz +nmz +nmz +nmz +nmz +nmz +nmz +psM +bjt +blf +bmU +alq +alq +alq +buY +dOR +alq +alq +alq +alq +alq +alq +alq +qtO +wpo +qtO +qtO +qtO +alq +alq +alq +apb +apb +bXa +bZz +bZE +ccE +cdZ +cfn +fJE +chG +bZE +ckB +cmb +cnc +cov +cpL +crb +csd +dvY +lMJ +krD +krD +noG +krD +noG +nKU +krD +krD +yfk +idz +idz +vda +aaa +aqB +aaa +pGD +pGD +pGD +pGD +pGD +aaf +lRm +aaa +pGD +pGD +pGD +pGD +pGD +aaf +anT +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(152,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aai +aaf +aaf +aaf +aai +aaf +jLP +afD +afD +afD +afD +afD +afD +afD +afD +afD +afD +jPO +arH +dpk +auq +dqp +dnh +azr +dnz +ocS +nik +oTo +xML +eLt +fti +ocS +sLs +cTv +vSm +vSm +ocS +dSu +xBK +kXd +qAf +ocS +wIB +uUx +sSo +snM +fEm +lkU +nmz +bhO +bjC +blg +bmV +bpd +bmV +btx +buZ +bwZ +byP +bAx +bCe +bDM +bFC +bHm +bIF +suE +vyC +tgn +eBL +qtO +bSd +bPm +alq +bVC +bWY +bYr +bZz +bZE +ccF +cea +cea +cgu +chH +bZE +dvY +dvY +dvY +dvY +dxk +dvY +dvY +dvY +aaf +dka +vYs +idz +idz +idz +jDS +aaa +aaa +wNQ +idz +vYs +mIJ +aaf +anT +aaa +dlD +nln +nln +nln +nln +ods +lRm +woQ +xqv +xqv +xqv +xqv +urI +aaf +anT +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(153,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaa +aaa +aag +aaa +jLP +afD +afD +afD +afD +afD +afD +afD +afD +afD +afD +jPO +arI +atd +bai +ate +dDL +axP +dnS +ocS +pUr +lmt +urs +rdR +xTt +ocS +cTv +cTv +vSm +uFM +ocS +tij +vbR +tDG +esC +ocS +mDR +otq +fht +gaa +ijW +xlc +nmz +bhR +bjD +blh +bmW +bpe +bry +bry +bva +bxa +bHr +bAy +bAy +bDN +bFD +bHn +bIG +nUa +rzt +wuS +wim +qtO +bNO +bTf +alq +diu +bWZ +bYs +bZB +bZE +ccG +ceb +cfo +cgv +chI +ciY +ckC +cmc +cmc +cmc +cpM +crc +aaf +ctl +aaa +qRM +xUO +anT +anT +anT +ake +ake +ake +pDn +faU +vYs +jDS +aaf +anT +aaf +gFW +gFW +gFW +gFW +gFW +aaf +lRm +aaf +gFW +gFW +gFW +gFW +gFW +aaa +anT +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(154,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaa +aaa +aai +aaa +pUH +psS +psS +dhm +xPG +kPw +kPw +uar +fRo +fRo +fRo +fmO +dnh +dnR +aus +dnS +dnh +aAm +dnS +ocS +owQ +gua +eRy +vZm +wYa +ocS +fbZ +jOA +ghb +ewT +ocS +mBk +lOI +vGk +esC +ocS +dGJ +otq +oXk +jLu +mAj +jNt +nmz +bhS +bjE +bli +bmX +bpf +brz +bty +bvb +bxb +byQ +bAz +bCf +bty +bFE +bHo +bIH +qtO +uYc +kJB +unm +qtO +aqr +bTg +alq +bVE +bXa +bYt +bZC +caX +ccH +cec +cfp +vyx +chJ +wgw +pmc +cgz +cgz +cgz +cpN +crd +ack +ack +aaf +ykE +idz +sqe +sqe +idz +idz +idz +idz +etb +aaa +ake +aaf +aaf +anT +aaa +aaa +aaf +aaf +aaf +aaa +aaa +lRm +aaa +aaa +aaf +aaf +aaf +aaf +aaa +aqB +aaf +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(155,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aaa +aaf +aaa +weB +qmw +joS +sZz +pmA +weB +dnz +dnR +dht +dnh +dnh +dnh +dnh +dnh +axQ +ayR +ocS +yaU +ygd +fHg +qDu +iJx +ocS +tjG +ghb +nNm +mpF +ocS +pch +vsV +toN +pch +ocS +nmz +ufk +mUZ +pTL +mAj +sOy +nmz +iYP +iYP +oCy +ejj +gvV +iYP +iYP +bvc +qxd +vBW +ieJ +nGn +uoM +lUn +dlF +uhB +qxd +qtO +qtO +qtO +qtO +apc +apc +alq +alq +bXb +bYu +bZD +caY +ccI +ced +cfq +cgw +cfs +cjb +ckD +cjb +cnd +cgz +cgz +cre +aaa +ack +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aqB +aaf +pGD +pGD +pGD +pGD +pGD +aaf +lRm +aaa +pGD +pGD +pGD +pGD +pGD +aaf +anT +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(156,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaa +aaa +aaf +aaf +aaf +aaf +aaa +weB +lXo +uEu +dEQ +rze +dtE +anN +dnS +doh +dnS +dnS +dCi +dnS +dnS +axO +dnS +ocS +rCK +xel +kFo +rGv +lmb +ocS +ocS +hzS +hzS +ocS +ocS +fxb +gbt +eVu +xFk +gpb +fMW +otq +dzN +dmm +nQt +ixs +gzG +seS +uJR +rcL +pjR +gsy +oIN +iLe +bvd +qxd +unQ +hMn +tQs +lCf +dVc +hQl +qnH +oHW +atm +bLX +bPk +bQQ +bSe +bTh +bUx +aut +bXc +bZz +bZE +caZ +ccJ +cee +cfr +cgx +cgx +cja +ckE +cmd +cne +cNw +cOa +crf +aaa +ack +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +anT +aaf +dlD +nln +nln +nln +nln +ods +lRm +woQ +xqv +xqv +xqv +xqv +urI +aaa +aaf +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(157,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +weB +kPw +kPw +kPw +weB +weB +dnh +dnh +dnh +dnh +dnh +dnh +dnh +dnh +aBC +ocS +ocS +eDX +mJR +xKG +kHk +eDX +eDX +pAO +lmt +rdR +xtl +eDX +kKv +sZf +sRX +sOT +skz +lYc +wdP +lQV +uZi +fpr +llE +kDi +hKU +kiW +gyR +jtI +gsy +gdJ +iLe +bve +qxd +pxy +jje +woN +jAn +tyC +kLr +rms +plN +atm +bLY +bPl +apc +aqq +apc +bUy +bPs +bXd +apf +bZE +cba +ccK +cef +cfs +czH +cLC +cjb +ckF +cjb +cnf +cgz +cgz +cre +aaa +ack +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +anT +aaf +gFW +gFW +gFW +gFW +gFW +aaf +pRd +aaf +gFW +gFW +gFW +gFW +gFW +aaa +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(158,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aaa +aaa +aaa +aaf +dni +asB +amH +anN +dnS +arJ +arI +dnh +dqu +doh +axO +ocS +vgI +mNV +ryl +dpm +kLP +qZf +szK +urs +oDl +rgM +urs +rvU +urs +iGQ +dYF +iJM +hwv +nmz +nmz +nmz +nmz +nmz +nmz +nmz +vsF +kiW +teR +mmy +gsy +qCB +iLe +bCK +qxd +jJw +usM +lXt +xHm +tyC +kLr +kdi +gmD +atm +bLZ +bPm +apc +bSf +apc +qxd +uhB +bXe +qxd +qxd +qxd +uwH +wxP +cft +pOP +pOP +pOP +gXY +cgz +cng +cgz +cpP +ack +ack +ack +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +anT +aaa +aaa +aaf +aaf +aaa +aaa +aaa +gHk +aaa +aaf +aaa +aaf +aaa +aaa +aaf +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(159,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaf +aaf +aaf +aaf +aaf +dnh +avG +dnh +apd +dnS +arK +dnS +dnh +dnh +dnh +axO +ocS +ylE +eOd +mFr +tHP +sLW +lUC +lUC +lUC +ezu +xbT +opc +xLR +wAX +nnB +vSv +saT +kwP +dsL +scD +vfZ +lrV +dtM +eDX +lLt +fJU +wox +ghl +nYq +pTr +eDP +iLe +bvg +odq +ipm +hAI +oBF +erz +jxI +kLr +qDJ +mmU +atm +cTw +bPn +bQR +apc +anM +qxd +hQA +qsV +sJr +hGi +ikq +eWr +xbz +oCu +aaf +aaf +aaf +aaf +aaf +aaf +aaa +aaf +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +anT +anT +anT +anT +anT +aaa +aaf +aaa +gHk +aaa +aaa +aaa +aaf +aaf +anT +anT +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(160,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aaf +dnh +amH +dnh +ape +dnS +arL +ate +dDL +avt +awJ +axS +ocS +lmt +vGP +vrr +gjr +ePL +irz +ePL +ePL +ePL +dZP +ePL +dxr +ePL +dur +khP +ksV +wcY +qJb +pLx +lod +jSx +heu +iTy +xPz +vZw +iMH +tMN +lKe +kxY +kNr +btz +bvh +qxd +oNX +vzb +iix +woN +tyC +kLr +iix +sKv +qxd +qxd +qxd +qxd +qxd +qxd +qxd +cZH +hpw +tfk +mMn +faG +sKe +sfV +aaf +dPI +dPI +dPI +dPI +dPI +aaf +aaa +aai +aaf +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaf +aaa +anT +aaa +aaa +aaf +aaa +aaa +anT +aaf +ihN +aaf +aqB +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(161,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaf +aaf +aaf +ack +dni +bcO +dnS +dnS +dnS +dnh +avu +ocS +egx +ocS +tJR +jUF +kSn +qAr +pAk +tiT +kjA +eOf +pAk +kjR +pAk +nVX +oCb +tiT +pAk +aAs +wZn +eDX +rWl +kwE +krO +eWn +eDX +lLt +qGP +kiW +lKe +qlI +lKe +vCf +iLe +kqF +qxd +wtG +qWR +cVp +woN +dtk +lFH +hdJ +shK +itH +itH +mgn +mgn +qxd +jEr +iKH +dVX +jKi +mMn +mMn +esP +kIw +wku +cfu +mTL +hQE +pLf +pLf +dPI +aaf +aaa +bzi +aaa +aai +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +anT +aaa +aaa +aaf +aaf +aaa +aqB +aaa +aaa +aaa +anT +aaf +aaf +aaa +aaa +aaa +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(162,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aaf +aaa +aaf +dnh +apg +aqs +arM +ocB +ocB +avv +ocS +rTM +gtO +ygd +pan +vdd +eNK +wtK +tZi +ptX +ocS +tZi +hYk +tZi +qUM +ptX +tZi +wtK +eNK +mzH +ocS +aYu +aYu +aYu +aYu +aYu +aYu +yeW +kiW +lKe +qnE +lKe +nUC +iLe +iLe +qxd +oBX +olw +oWF +cWn +uKL +ktV +wKg +uTg +tFA +hHh +jxw +jxw +jDD +xGN +xGN +gxl +wda +bvN +bvN +pZc +rVI +qHn +aaf +dYX +fwH +sTB +fXs +dPI +aaf +aaa +bzi +aaa +bzj +aaf +aaf +aaf +aaf +aaf +aaa +aaa +aaa +aaf +aaf +lMJ +lMJ +aaf +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +anT +anT +anT +anT +anT +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(163,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +kCp +kCp +kCp +kCp +kCp +kCp +kCp +dLm +jgc +iFm +mEE +jgc +fuH +nid +sYL +yib +vdd +wGp +eYD +dOw +dOw +dOw +dOw +dqE +dOw +dOw +dOw +dOw +mZT +fDh +mzH +apc +aYu +aZL +bbB +pdm +bem +bfV +oag +vmm +olW +sah +xov +ltg +txb +trn +sKv +oay +fNf +kWW +gGc +grX +hop +ldI +elC +kKa +ooB +ibJ +ibJ +ibJ +ibJ +ibJ +ibJ +omb +mMn +mMn +iAK +tie +rid +cfw +mTL +ilE +iKQ +pLf +dPI +aaf +aaa +bzi +aaa +bzj +aaa +aaa +aaa +aac +aaf +aaf +aaf +aaf +aaf +aaa +aaa +aaa +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(164,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +kCp +khq +uPN +kXS +qpQ +xvg +hBG +eCS +lFY +ujb +exJ +ful +eln +vAr +xFW +xoe +sdQ +ipw +dNK +nZd +eOC +xrw +ucP +iIW +kTe +rqG +kbg +sbQ +opw +eYH +aVf +apc +aYu +aZM +bbC +bcM +ben +bfW +paS +nmt +hNW +hNW +xNe +eDc +lTr +xca +hZe +mZD +mSB +dRb +hAI +tFH +tfk +sfM +kBk +mMn +eCZ +mMn +mMn +mMn +mMn +mMn +mMn +eWY +mMn +veT +lvk +xuP +rid +cfx +dPI +dPI +dPI +dPI +dPI +aaf +aaf +bzi +aaa +bzj +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(165,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aag +aai +aag +aag +aag +aaj +aag +aag +aag +aai +aag +aag +aag +aai +aag +kCp +trj +qGt +nAB +mNX +xXs +pHX +qIq +jgc +gZo +nPJ +kCp +qCO +dKV +sCL +qIM +qDt +ipw +iBm +hab +hab +rkx +vaA +oek +qkm +rkx +uIA +pIc +dTj +eYH +mzH +apc +aYu +aZN +bbD +bcN +beo +bfX +pDf +tMN +tnh +ryM +kNM +vpQ +kuk +oOQ +naf +gaV +fpg +lUs +fFR +fNh +tNF +dHR +nwU +lOv +pcs +mMn +mMn +mMn +mMn +mMn +mMn +mMn +mMn +tSa +kKR +vtk +wqi +cfu +mTL +rbc +duF +duF +dPI +aaf +aaa +bzi +aaa +aai +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(166,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aag +aaa +aaa +aaf +aaf +aaa +aaf +aaa +aaf +aaa +aaa +aaf +aaf +aaa +aaf +kCp +jMw +khq +ekH +khq +msv +fUl +btW +kCp +kCp +avz +ocS +ocS +uuf +mlA +fQZ +fKM +xtF +iBm +hXs +hXs +rkx +pKu +nOJ +gxO +rkx +wpz +wpz +nHn +kRI +uyH +dgc +aYu +cXA +cXA +cXA +cXA +cXA +qiA +osB +iwg +iYP +eZS +iYP +iYP +jgy +uhB +jiZ +mHn +mHn +fGc +rdg +fGc +lHN +tac +wqG +mMn +mMn +mMn +mMn +mMn +mMn +mMn +mMn +mMn +tSa +pUZ +rSI +uKL +aaf +dYX +kro +eFn +lwJ +dPI +aaf +aaa +bzi +aaa +bzj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(167,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aag +aaa +pKe +hEr +upd +aaa +pKe +hEr +upd +aaa +pKe +hEr +upd +aaa +aaf +kCp +jSy +qGt +oJt +mgJ +uTn +mpO +eKD +tcb +kCp +avA +ocS +wtx +hsG +puC +stG +eHP +tdH +qiT +dZC +rkx +pcz +wrq +tXO +eyU +ubO +rkx +dZC +jVR +eYH +mzH +aWH +dgi +dgc +aqq +aqr +aWu +jcA +jcA +jcA +iYP +iYP +xQC +iYP +hWA +gRu +hZk +maO +nJr +oVH +xnt +kyJ +dHX +vRu +kJQ +wqG +mMn +mMn +mMn +mMn +mMn +mMn +mMn +mMn +mMn +tSa +guR +elE +rid +cfw +mTL +ygg +xMA +duF +dPI +aaf +aaa +aai +aaa +bzj +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(168,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aag +aaf +pKe +ioo +upd +aaa +pKe +ioo +upd +aaa +pKe +ioo +upd +aaa +aaf +kCp +khq +pnF +azB +pnM +tPJ +uot +htH +hGo +kCp +avB +ocS +hzd +stG +vPE +roz +iMF +jyo +qkC +jfY +rSx +dWR +euh +nOJ +rxM +ruP +rGV +jfY +lJc +uia +sKz +apc +apc +dgo +apc +cXZ +atm +eTD +jcA +jDz +iYP +joj +uLo +xTU +wBE +fHh +flE +rMA +npE +pPS +esR +mMn +uED +hfg +tac +wqG +mMn +mMn +eWY +mMn +mMn +mMn +mMn +jAn +mMn +kdB +eCq +nYm +rid +cfx +dPI +dPI +dPI +dPI +dPI +aaf +aaf +bzi +aaa +bzj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(169,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaa +aaa +aaa +aag +aaf +pKe +ioo +upd +aaf +pKe +ioo +upd +aaf +pKe +ioo +upd +aaf +aaf +kCp +kCp +kCp +kCp +kCp +kCp +kCp +kCp +kCp +kCp +avC +ocS +lPI +stG +pwE +iuW +kBn +ipw +qkC +jfY +rSx +dWR +euh +pZY +rxM +ruP +rSx +okX +lJc +gPs +mzH +atm +alr +dgp +cXI +cYj +atm +wOY +adF +wOY +iYP +mtJ +xiO +qOc +iYP +jNm +xNr +qUd +iDK +eBe +dwW +jdV +sGo +tkC +tac +gyN +wlC +mMn +mMn +mMn +mMn +mMn +mMn +mMn +mMn +tSa +fqD +jwC +ktI +cfy +wJb +vHq +gHz +uLh +dPI +aaf +aaa +bzj +aaf +aai +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(170,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aac +aaa +aaa +aaa +aaa +aaa +aag +aaf +pKe +ioo +upd +aaa +pKe +ioo +upd +aaa +pKe +ioo +upd +aaa +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +dni +dps +dpL +avD +ocS +hzd +stG +tkS +iuW +kBn +ipw +hdk +jfY +rSx +lJy +euh +nOJ +rxM +lqj +rSx +jfY +sXS +oFv +dGD +dgd +dgj +dgp +alr +atm +atm +aaa +aaa +aaa +iYP +sCD +wOW +xdX +hbh +dFX +dlF +fCZ +qVE +qoD +oyV +mtM +ixJ +htZ +oLm +eWY +kEE +mMn +mMn +mMn +mMn +mMn +eWY +mMn +lzQ +tSa +oQs +rSI +uKL +aaf +dYX +iqT +wFX +pii +dPI +aaf +aaa +bzi +aaa +bzj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(171,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaj +aai +aaj +aag +aaa +pKe +ioo +upd +aaa +pKe +ioo +upd +aaa +pKe +ioo +upd +aaa +aaa +aaf +aaa +aaa +ake +alv +apm +apm +apm +apm +dnR +avE +ocS +hVj +iXR +xti +stG +eHP +hij +gLc +dZC +rkx +rkx +jZx +szP +ylb +rkx +rkx +dZC +rhU +mDk +iiu +aaf +aYx +dgr +dgw +dgA +dgI +aaa +aaa +aaa +mVL +aNC +brM +aNC +iYP +kxM +joE +lYe +tfk +vms +vOz +wAs +qha +jor +xaR +htZ +kEE +mMn +mMn +mMn +mMn +mMn +mMn +mMn +mMn +xxf +mze +rlJ +vxg +cfy +leN +eBD +rAS +uLh +dPI +aaf +aaa +bJf +aaf +bKK +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaf +aaa +aaa +aaa +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(172,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aag +aaa +aaf +aaa +aaa +aaf +vhq +aaf +aaf +aaf +vhq +aaf +aaa +aaf +vhq +aaf +aaa +aaa +aaf +alv +alv +alv +alv +apn +aqy +arT +apm +dnS +avB +ocS +ocS +mlA +hfU +fQZ +nFz +eXd +uLv +rwk +dPp +rwk +wFc +gNH +ezr +dPp +ehN +ewx +dXn +sZV +iiu +aaa +aYx +dgf +dgj +ack +dgJ +aaa +aaa +aaa +aaa +aaf +bpw +aaf +nXO +iod +qxd +hFa +okm +wMJ +lOJ +fVg +cZV +jfa +hTE +hpr +pwz +paM +wGv +qAG +snq +hPo +odn +iyn +snq +veq +ugm +rSI +xqi +aaf +dPI +dPI +dPI +dPI +dPI +aaf +aaa +aaf +aaa +bzj +aaa +aaa +aaa +aaf +aaf +aaf +aaf +aaf +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(173,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aag +aaa +oyi +pfE +pfE +hkr +osD +osD +iYH +osD +osD +osD +osD +tzp +osD +osD +osD +osD +rTl +afQ +akd +alw +sGh +apo +aqz +arU +atk +aux +avF +dqT +dqT +aaf +ack +nxb +kRP +iku +npi +ghS +mWy +wyJ +nxc +xKQ +tXH +uZM +xzD +nxU +jRU +mfS +dGD +dge +azd +azd +azd +dgB +dgK +aaa +cUL +aaa +aaf +aaf +bpw +aaa +aaf +ack +qxd +pUB +sWZ +hfv +xMl +wgN +ldb +kRO +jpq +jdJ +rxK +jjZ +tiE +kGH +wFu +tqV +wFu +sTr +jfi +wFu +wFu +pjr +xqi +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +bzj +bzj +bzj +aaf +aaf +aaf +aaf +aaa +aaa +aaa +aaf +aaf +aaf +lMJ +lMJ +aaf +aaf +aaa +aaa +aaa +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(174,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aag +aaa +aaa +aaa +aaf +aaf +xsj +aaf +aaa +aaf +xsj +aaf +aaa +aaf +xsj +aaf +aaa +aaa +aaf +alv +alv +alv +alv +app +aqA +arV +atl +auy +dnS +dqT +dqT +aaf +ack +ack +iET +tZi +wQo +tZi +ocS +ocS +tZi +tZi +tZi +ocS +ocS +tZi +wQo +tZi +mzH +dgf +dgk +dgt +dgk +dgv +dgJ +anT +aaf +aaf +aaf +aaa +bpw +aaa +aaa +aaf +qxd +qxd +xbR +eBq +ktI +thi +ktI +eBq +ktI +thi +xqW +eBq +ktI +thi +ktI +eBq +ktI +thi +fhB +fhB +fhB +gBn +usC +aaf +aaa +aaa +aaf +aaa +aaf +aaa +aaa +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(175,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaj +aaj +aai +aaj +aaf +pKe +kDw +upd +aaa +pKe +kDw +upd +aaa +pKe +kDw +upd +aaa +aaa +aaf +aaa +aaa +ake +alv +apm +apm +apm +apm +dnh +dnS +dnz +dqT +aaf +aaf +aaf +iET +roz +tJj +ghb +roz +roz +roz +fQx +eqJ +roz +roz +ghb +tJj +roz +mzH +aWK +dgk +dgt +dgk +dgB +dgM +dgN +dgO +dgO +dgw +dgO +dgS +dgO +dgO +dgw +dgw +dgw +dgw +bCz +dgw +dha +dgw +dhc +dgw +dha +dhl +bJb +aaf +bFY +aaf +bJb +aaf +bFY +aaf +aaf +qxd +vcj +qxd +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(176,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaa +aaa +aaa +aag +aaa +pKe +kDw +upd +aaa +pKe +kDw +upd +aaa +pKe +kDw +upd +aaf +aaa +aaf +aaa +aaa +aaa +aaf +aaa +aaa +aaa +dnh +auz +dqp +dqT +dqT +aaa +aaa +aaa +mlA +taH +mKw +jng +roz +roz +roz +roz +roz +roz +roz +omQ +uYg +hJe +hvd +dgg +azd +azd +azd +dgv +aaf +anT +aaa +aaa +aaf +aaf +bpx +aaf +aaf +aaf +aaa +aaf +dPI +vOr +dYX +wQW +dPI +eCM +dYX +wQW +dPI +eCM +dYX +wQW +dPI +eCM +dYX +wQW +dPI +aaf +uDy +wqs +uDy +aaf +aaa +aaf +aaa +aaf +aaa +aaf +aaa +aaa +aai +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaf +aaa +aaa +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(177,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaa +aaa +aaa +aag +aaf +pKe +kDw +upd +aaf +pKe +kDw +upd +aaf +pKe +kDw +upd +aaa +aaa +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +dni +auA +dnS +dqT +aaa +aaa +aaa +aaa +ocS +vvU +mKw +lRl +roz +roz +roz +fQx +roz +roz +roz +usB +uYg +lcm +ocS +aWK +dgk +dgt +dgk +dgB +aaa +anT +aaa +aaa +aaf +aaa +bpw +aaa +aaa +aaf +aaa +aaf +dPI +xXd +sZg +pAr +dPI +qGy +nFp +kNs +dPI +iiP +mWu +lBv +dPI +ipG +naS +ktS +dPI +aaf +uDy +pDb +uDy +aaf +aaa +aaf +qxd +vOQ +xCI +ilJ +ilJ +aaa +bKK +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(178,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaa +aaa +aaa +aag +aaf +pKe +kDw +upd +aaa +pKe +kDw +upd +aaa +pKe +kDw +upd +aaa +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaf +aaa +dnh +auB +avG +dqT +aaa +aaa +aaa +aaa +ocS +ghb +xCf +dVP +ghb +ghb +vIC +ocS +kAA +ghb +ghb +uGl +skV +roz +ocS +dgh +dgk +dgk +dgk +dgv +aaf +anT +aaa +aaa +aaf +aaa +bpw +aaa +aaa +aaf +aaa +aaf +dPI +jQT +jQT +jQT +dPI +izZ +iFl +izZ +dPI +gFm +pgT +gFm +dPI +hGX +lIs +hGX +dPI +aaf +sdw +juj +bgo +aTQ +ewK +iJb +neP +php +jQT +jQT +xCI +aaf +bKK +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(179,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaj +aaa +pKe +nLQ +upd +aaa +pKe +nLQ +upd +aaa +pKe +nLQ +upd +aaf +aaf +aag +aaa +aaa +aaa +aaa +aaa +aaf +aaa +dnh +dnh +jKK +dqT +aaf +aaa +aaa +aaa +ocS +ocS +ocS +ocS +ocS +ocS +ocS +ocS +ocS +ocS +ocS +ocS +ocS +ocS +ocS +aWK +dgm +dgu +dgm +dgB +aaa +anT +aaa +aaa +aaf +aaf +bpx +aaf +aaf +aaf +aaf +aaf +dPI +jQT +mkz +gdM +dPI +izZ +jGW +mMU +dPI +oMq +mEw +erE +dPI +hGX +tUr +rxl +dPI +aaf +aMr +juj +juj +juj +juj +juj +jco +jQT +iph +jQT +vOQ +aaa +bKK +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(180,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaj +aaa +aaf +aaa +aaf +aaa +aaa +aaf +aaf +aaa +aaf +aaf +aaa +aaa +aaa +aaf +aaa +aaa +aaa +aaa +aaa +ack +ack +atn +anN +dnS +dqT +aaf +aaa +aaa +aaa +aaa +aaf +aaa +aaf +aaa +aaa +aaf +aaa +aaf +aaa +aaf +aaa +aaf +aaf +ack +ack +aye +dgv +aye +dgv +aaf +anT +aaf +aaf +aaf +aaa +bpw +aaa +aaf +aaa +aaa +aaf +dPI +dPI +dPI +dPI +dPI +dPI +dPI +dPI +dPI +dPI +dPI +dPI +dPI +dPI +dPI +dPI +dPI +aaf +sdw +juj +aVk +aNC +lix +iwo +exg +dox +jQT +jQT +qxd +aaf +aai +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(181,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaj +aai +aag +aag +aag +aai +aag +aag +aag +aaj +aag +aag +aai +aag +aai +aag +aai +aag +aaf +aaf +aaf +aaf +aaf +dnh +avJ +avG +dqT +aaf +aaa +aaa +aaa +aaa +aaf +aaa +aaf +aaa +aaa +aaf +aaa +aaf +aaa +aaf +aaa +aaa +aaf +aaf +aaf +aaa +aaa +aaf +aaa +aaa +aaf +aaa +aaa +aaf +aaa +bpw +aaa +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aMr +jUp +bBb +aaf +aaa +aaf +vOQ +xCI +ilJ +xCI +vOQ +aaa +aaf +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(182,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +dnh +dnh +bOY +dqT +aaf +anT +anT +anT +anT +aaf +anT +anT +anT +anT +anT +anT +aqB +anT +anT +anT +anT +anT +anT +aaf +aaa +aaa +aaf +aaa +aaa +aaf +aaa +aaa +aaf +aaa +bpw +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aaa +aaa +aaa +aaf +aaa +aaf +aaa +aaf +aaa +aaf +aaa +aaf +aaa +aaf +aaa +aaa +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaf +aaa +aaa +aaa +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(183,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaf +aaf +aaf +ack +aaf +aaa +aaa +aaa +aaf +aaa +aaa +bpu +bpu +bpu +bpu +bpu +bpu +bpu +bpu +bpu +bpu +aaa +aaa +aaa +aaf +aaf +aaf +aaf +aaa +aaa +aaa +aaa +aaa +aaf +aaa +bpw +aaa +aaf +aaf +aaf +aai +bzj +bzj +bzj +bzj +bzj +bJe +bzj +bzj +aai +bzj +bzj +bzj +bKK +bzj +bzj +bzj +bzj +bJe +bzj +aai +bzj +aaf +aaf +aai +bzj +aai +bzj +bzj +aaf +aaf +aaa +aaa +sKV +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(184,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaf +aaf +anT +anT +anT +anT +aqB +anT +anT +anT +anT +aqB +aaf +aaf +aaf +aaf +aaa +aaf +aaf +aaa +aaa +aaa +aaa +aaa +aaf +aaa +bpw +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aaa +aaa +aaa +aaf +aaa +aaa +aaa +aaf +aaa +aaa +aaa +aaf +aaa +aaa +aaa +aaf +aaa +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(185,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aaa +aai +aaa +aaa +aaa +aaa +aaa +aaf +aaa +bpw +aaa +aaf +aaf +aai +bzi +bzi +bzi +bzi +bzi +bzi +bJf +bzi +bzi +bzi +bzi +bzi +bzi +bJf +bzi +bzi +bzi +bzi +bJf +aaf +aaf +aaf +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(186,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aai +aaa +aai +aaa +aaa +aaa +aaa +aaa +aaf +aaf +bpx +aaf +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aaa +aaa +aaa +aaf +aaa +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(187,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aag +aaa +siF +aaa +aaa +aaa +aaa +aaa +aaf +aaa +bpw +aaa +aaf +aaf +aai +bzj +bzj +aai +bzj +siF +bzj +bzj +bKK +bzj +bzj +bzj +bzj +siF +aai +bzj +bzj +bzj +bzj +bKK +bzj +bzj +anS +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaf +aaa +aaa +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(188,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aai +aaa +anT +aaa +aaa +aac +aaa +aaa +aaf +aaa +bpw +aaa +aaf +aaa +aaa +aaa +aaa +aai +aaa +anT +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(189,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaf +aaf +anT +aaa +aaa +aaa +aaa +aaa +aaf +aaa +bpw +aaa +aaf +aaa +aaa +aaa +aaa +aaf +aaa +anT +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(190,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aai +aaa +anT +aaa +aaa +aaa +aaa +aaa +aaf +aaa +bpw +aaa +aaf +aaa +aaa +aaa +aaa +aai +aaf +anT +aaa +aaa +aaa +oRp +oRp +xtS +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(191,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aag +aaa +aai +aaa +aaa +aaa +aaa +aaa +aaf +aaa +bpw +aaa +aaf +aaa +aaa +aaa +aaa +aag +aaa +anT +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(192,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aag +aaa +anT +aaa +aaa +aaa +aaa +aaa +aaf +aaa +bpw +aaa +aaf +aaa +aaa +aaa +aaa +aag +aaa +aai +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(193,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aai +aaa +anT +aaa +aaa +aaa +aaa +aaa +aaf +aaf +bpx +aaf +aaf +aaa +aaa +aaa +aaa +aai +aaa +siF +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(194,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +xtS +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +xtS +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aai +aaa +anT +aaa +aaa +aaa +aaa +aaa +aaf +aaa +bpy +aaa +aaf +aaa +aaa +aaa +aaa +aai +aaa +siF +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaf +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(195,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aag +aaa +anT +aaa +aaa +aaa +aaa +aaa +aaf +aaa +bpy +aaa +aaf +aaa +aaa +aaa +aaa +aag +aaa +anT +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaf +aaf +aaf +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(196,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aag +aaf +aai +aaf +aaf +aaf +aaa +aaa +aaf +aaa +bpz +aaa +aaf +aaa +aaa +aaa +aaa +aag +aaa +anT +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaf +czK +cDv +czK +aaf +aaf +aaa +aaa +aaa +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(197,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aag +aaa +siF +aaa +aaa +aaf +aaf +aaf +aaf +bno +bpA +brO +aaf +aaa +aaa +aaa +aaa +aag +aaf +aai +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaf +cBM +czK +cDw +czK +cBM +aaf +aaf +aaa +aaa +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(198,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aai +aaa +anT +aaa +aaa +aaf +aaa +aaa +blu +aaa +bpA +aaa +btI +aaa +aaa +aaa +aaa +aag +aaa +anT +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaa +aaa +aaf +aaf +czK +czK +cCH +cDv +cEB +czK +czK +aaf +aaf +aaa +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(199,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +anT +aaa +anT +aaf +aaf +ack +ack +aaf +blv +aaf +bpA +aaf +blv +aaf +aaf +aaf +aaf +aag +aaa +siF +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaa +aaa +aaf +czJ +czJ +cBN +cCI +cCI +cCI +cFv +czJ +czJ +aaf +aaa +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(200,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +anT +aaa +aqB +aaa +aMq +jLH +jLH +aOV +blw +aNw +bpB +aNw +btJ +aaa +aaa +aaa +aaa +aai +aaa +anT +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaf +aaf +aaf +czK +cAQ +cBO +cCI +cDx +cCI +cFw +cGp +czK +aaf +aaf +aaf +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(201,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +anT +aaa +anT +aaa +aMq +kDk +kDk +aOV +aMq +vgD +paA +mmX +btK +aaa +aaa +aaa +aaa +aag +aaa +aai +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaa +aaa +aaf +czJ +czJ +cBP +cCI +cCI +cCI +cFx +czJ +czJ +aaf +aaa +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(202,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +anT +aaa +anT +anT +beq +kho +fMm +beq +blx +iDz +wTk +dIo +blx +anT +anT +anT +anT +aag +aaa +anT +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaa +aaa +aaf +aaf +czK +czK +cCJ +cDy +cEC +czK +czK +aaf +aaf +aaa +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(203,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +anT +anT +anT +anT +anT +anT +anT +anT +aaa +aSD +xVh +kDk +aOX +bly +jYV +lBY +mxo +aOX +aNw +aNw +aTQ +aaa +anT +aaa +aag +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaf +cBM +czK +cDz +czK +cBM +aaf +aaf +aaa +aaa +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(204,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaa +aaa +aaa +anT +anT +anT +anT +anT +anT +aaa +aTQ +aNw +aNw +aNw +aNw +aNw +aSD +fgA +nLx +nmM +plI +plI +iYr +tNY +rYf +plI +plI +plI +kPR +bAS +anT +anT +anT +anT +anT +anT +anT +anT +anT +anT +anT +anT +anT +anT +anT +aaa +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaf +czK +czJ +czK +aaf +aaf +aaa +aaa +aaa +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(205,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaa +aaa +aaa +anT +aaa +aTQ +aNw +aNw +aNw +aSD +qTR +mvY +mvY +mvY +mvY +mvY +mvY +hKd +aVk +aOY +aOY +aSG +shE +xRM +tdS +aOU +aOY +bcQ +qgP +bAT +aNw +aNw +aNw +bJl +aNw +aNw +aNw +aNw +bJl +aNw +aNw +aNw +aTQ +aaa +anT +aaa +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaf +aaf +aaf +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(206,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaa +aaa +aaa +anT +aMq +stT +mvY +mvY +mvY +mvY +qpG +aVk +aOY +aOY +aOY +aOY +aOY +xJf +aaa +aaa +aaa +jNA +guM +psh +pQD +cMk +aaa +aMq +jyT +mvY +mvY +mvY +mvY +tyt +tyt +cVP +tyt +tyt +tyt +tyt +mvY +mvY +ohx +bBb +anT +aaa +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaf +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(207,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaa +aaa +aaa +anT +aMq +hye +aOU +aOY +aOY +aOY +aNC +aaa +aaa +aaa +aaa +aaa +aaa +fLL +aaa +aaa +xVW +xVW +xDY +bpI +saP +xVW +aaa +aaa +aNC +aOY +aOY +aOY +aOY +aOY +aOY +bKQ +aOY +aOY +aOY +aOY +aOY +bcQ +hye +bgn +anT +aaa +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(208,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaa +aaa +aaa +anT +aMq +hye +aOV +aaa +aaa +aaa +aaf +aaa +xVW +xVW +xVW +xVW +xVW +xVW +xVW +xVW +xVW +blB +bnw +bpJ +brW +xVW +xVW +xVW +iuC +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aMq +hye +bgn +anT +aaa +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(209,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaa +aaa +aaa +anT +aMq +hye +aOV +aaa +aaa +aaa +xVW +xVW +xVW +aTV +aTV +aTV +xVW +xVW +xVW +xVW +bjP +blC +bnx +oKi +bsf +bGh +nix +bGh +xVW +xVW +xVW +xVW +xVW +xVW +xVW +xVW +gJK +gJK +aaa +aaa +aaa +aMq +hye +bgn +anT +aaa +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(210,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaa +anT +anT +anT +aMr +hye +aOV +aaa +aaa +xVW +xVW +aTV +aTV +aTV +aZQ +aTV +aTV +aTV +aTV +aTV +bjP +blD +bny +bpL +brY +btL +btL +txh +btL +btL +bCD +bEf +bGc +bHC +bJg +xVW +xVW +xVW +xVW +aaa +aaa +aMq +sCy +bBb +anT +anT +anT +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(211,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaa +anT +aaa +aNw +aSD +hye +aOV +aaa +aaa +xVW +aTV +aVl +aWL +aYy +aZR +bbF +bcP +aVl +bgh +bim +bjQ +bjQ +bnz +bpM +brZ +btL +bvu +bxq +bzn +bAU +bCD +bEg +bGd +bGd +bJm +bNX +bMo +bOc +xVW +aaa +aaa +aMq +sCy +bAT +aNw +aaa +anT +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(212,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaa +anT +aMq +tDJ +whD +uvH +aOV +aaa +xVW +xVW +aTV +aVm +aWM +aWM +aZS +aWM +aWM +aWM +bgi +bin +bjR +brX +bnA +bpN +bsa +btL +bAW +bxn +bzo +bAV +bCD +bEh +bGe +bGd +bKL +bNY +bGd +ceC +xVW +gJK +aaa +aMq +iLX +whD +uRL +bgn +anT +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(213,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaa +anT +aMq +mpB +sBz +uvH +aOV +aaa +xVW +xVW +aTV +aVn +aWN +aTV +bqm +aTV +aTV +beu +aWN +bio +bjR +blF +bnB +bpO +bsb +btM +bvw +bxo +bzp +bJh +bCE +bCE +bCE +bHD +bGd +bGd +bGd +bUL +xVW +gJK +aaa +aMq +iLX +fGl +uvH +bgn +anT +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(214,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaa +anT +aMq +dtj +kbS +qaA +slh +slh +xMk +msu +aTW +bjS +aWO +aYz +brx +bvf +aTV +byx +bgj +pvK +blI +blG +mnr +bpP +bsc +btN +bvx +bxp +pCg +bAX +bCF +bEi +lWY +lpD +bKM +bKO +bMp +bNZ +xMk +pbQ +slh +nAl +fWy +jaL +pJd +bgn +anT +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(215,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaa +anT +aMq +mpB +sBz +uvH +aOV +aaa +xVW +rgc +aTX +aVp +aWP +aTV +aZV +aTV +aTV +kRE +bgk +blE +bjQ +blH +bnD +bpQ +bsd +btL +bvy +bxq +bzr +bAY +bCE +bCE +bCE +bHF +bJk +bJk +bMq +cgy +xVW +gJK +aaa +aMq +iLX +fGl +uvH +bgn +anT +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(216,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaa +anT +aMq +pVM +jBh +uvH +aOV +aaa +xVW +xVW +aTV +aVq +aWQ +aYA +aZW +aYA +aYA +bex +bgl +bir +bjQ +bse +waU +bpR +byM +btL +bvz +bxr +bzs +bJi +bCD +bEj +bGe +bGd +bKP +bOb +bMr +cho +xVW +gJK +aaa +aMq +iLX +jBh +lMh +bgn +anT +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(217,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaa +anT +aaa +aOY +bcQ +kQm +aOV +aaa +aaa +xVW +aTV +aVr +aWR +aYB +aZX +bbH +aWR +aVr +bgm +bis +bjQ +bjQ +bnz +bpS +brZ +btL +bvA +bxs +yhn +bBa +bCD +bEg +bGd +bGd +bKN +bOa +jNs +chn +xVW +aaa +aaa +aMq +sCy +aVk +aOY +aaa +anT +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(218,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaa +anT +anT +anT +aMr +kQm +aOV +aaa +aaa +xVW +xVW +aTV +aTV +aTV +aZY +aTV +aTV +aTV +aTV +aTV +dZs +foj +nEw +gjy +tQK +btL +btL +btL +btL +btL +bCD +bEk +bGf +bHG +bJn +xVW +xVW +xVW +xVW +aaa +aaa +aMq +sCy +bBb +anT +anT +anT +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(219,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaa +aaa +aaa +anT +aMq +kQm +aOV +aaa +aaa +aaa +xVW +xVW +xVW +aTV +aTV +aTV +xVW +xVW +xVW +xVW +dZs +dvk +mql +oZL +vNy +xVW +xVW +xVW +xVW +xVW +xVW +xVW +xVW +xVW +xVW +xVW +gJK +gJK +aaa +aaa +aaa +aMq +sCy +bgn +anT +aaa +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(220,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaa +aaa +aaa +anT +aMq +kQm +aOV +aaa +aaa +aaa +aaf +aaa +xVW +xVW +xVW +xVW +xVW +xVW +xVW +xVW +xVW +ffx +wZw +ebf +wqL +xVW +gJK +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aMq +sCy +bgn +anT +aaa +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(221,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaa +aaa +aaa +anT +aMq +kQm +aOX +aNw +aNw +aNw +bJl +aaa +aaa +aaa +aaa +aaa +aaa +fLL +aaa +aaa +xVW +oDQ +mIt +rNi +jso +xVW +aaa +aaa +bJl +aNw +aNw +aNw +aNw +aNw +aNw +bJl +aNw +aNw +aNw +aNw +aNw +bly +sCy +bgn +anT +aaa +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(222,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaa +aaa +aaa +anT +aMq +gvJ +mvY +mvY +mvY +mvY +rwx +aOX +aNw +aNw +aNw +aNw +aNw +kSF +aaa +aaa +xVW +xVW +xVW +lrM +xVW +xVW +aaa +aMq +fNy +mvY +mvY +mvY +mvY +mvY +mvY +eKo +tyt +tyt +tyt +tyt +tyt +tyt +tXR +bBb +anT +aaa +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(223,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaa +aaa +aaa +anT +aaa +aNC +aOY +aOY +aOY +aSG +hAr +mvY +mvY +mvY +mvY +mvY +mvY +kvr +bgn +aaa +aaa +aaa +aMq +lAN +bgn +aaa +aaa +aMq +sCy +aVk +aOY +aOY +aOY +aOY +aOY +aNC +aOY +aOY +aOY +aOY +aOY +aOY +aNC +aaa +anT +aaa +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(224,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaa +aaa +aaa +anT +anT +anT +anT +anT +anT +aaa +aNC +aOY +aOY +aOY +aOY +aOY +bcQ +sCy +bgo +aNw +aNw +aNw +aSD +uZF +bsj +aNw +aNw +bly +sCy +bgn +anT +anT +anT +anT +anT +anT +anT +anT +anT +anT +anT +anT +anT +anT +anT +aaa +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(225,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +anT +anT +anT +anT +anT +anT +anT +anT +aMq +mwg +mvY +mvY +mvY +mvY +mvY +vmE +mvY +mvY +mvY +mvY +lMh +bBb +anT +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(226,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +anT +aaa +aNC +aOY +aOY +aOY +aOY +aOY +aNC +aOY +aOY +aOY +aOY +aNC +aaa +anT +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(227,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +anT +anT +aag +anT +anT +anT +anT +anT +anT +anT +anT +anT +anT +anT +anT +anT +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(228,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(229,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(230,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(231,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(232,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(233,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(234,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(235,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(236,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(237,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(238,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(239,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(240,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(241,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(242,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(243,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(244,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(245,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(246,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(247,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(248,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(249,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(250,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(251,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(252,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(253,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(254,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} +(255,1,1) = {" +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +"} From 834ec62c0b6b3e4cf28726d7dff33338d9ac34a3 Mon Sep 17 00:00:00 2001 From: keronshb Date: Mon, 3 May 2021 00:05:39 -0400 Subject: [PATCH 100/259] Nightmare Jaunt Change Prevents Nightmares from being pulled OUT of jaunt from vendors and engraved messages. --- code/modules/library/soapstone.dm | 2 +- code/modules/spells/spell_types/shadow_walk.dm | 4 ++-- code/modules/vending/_vending.dm | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/code/modules/library/soapstone.dm b/code/modules/library/soapstone.dm index f17040a938..0d312c485a 100644 --- a/code/modules/library/soapstone.dm +++ b/code/modules/library/soapstone.dm @@ -152,7 +152,7 @@ var/newcolor = copytext_char(hash, 1, 7) add_atom_colour("#[newcolor]", FIXED_COLOUR_PRIORITY) light_color = "#[newcolor]" - set_light(1) + set_light(0.3) /obj/structure/chisel_message/proc/pack() var/list/data = list() diff --git a/code/modules/spells/spell_types/shadow_walk.dm b/code/modules/spells/spell_types/shadow_walk.dm index 1dd949caa0..8436de2119 100644 --- a/code/modules/spells/spell_types/shadow_walk.dm +++ b/code/modules/spells/spell_types/shadow_walk.dm @@ -56,9 +56,9 @@ /obj/effect/dummy/phased_mob/shadow/proc/check_light_level() var/turf/T = get_turf(src) var/light_amount = T.get_lumcount() - if(light_amount > 0.2) // jaunt ends + if(light_amount > 0.4) // jaunt ends end_jaunt(TRUE) - else if (light_amount < 0.2 && (!QDELETED(jaunter))) //heal in the dark + else if (light_amount < 0.4 && (!QDELETED(jaunter))) //heal in the dark jaunter.heal_overall_damage(1,1) /obj/effect/dummy/phased_mob/shadow/proc/end_jaunt(forced = FALSE) diff --git a/code/modules/vending/_vending.dm b/code/modules/vending/_vending.dm index 5f39158413..b86ab6023a 100644 --- a/code/modules/vending/_vending.dm +++ b/code/modules/vending/_vending.dm @@ -55,7 +55,7 @@ IF YOU MODIFY THE PRODUCTS LIST OF A MACHINE, MAKE SURE TO UPDATE ITS RESUPPLY C armor = list("melee" = 20, "bullet" = 0, "laser" = 0, "energy" = 0, "bomb" = 0, "bio" = 0, "rad" = 0, "fire" = 50, "acid" = 70) circuit = /obj/item/circuitboard/machine/vendor payment_department = ACCOUNT_SRV - light_power = 0.5 + light_power = 0.3 light_range = MINIMUM_USEFUL_LIGHT_RANGE /// Is the machine active (No sales pitches if off)! var/active = TRUE From 7ac50b7ba2044603aa8ec1c23f1855b3191886e5 Mon Sep 17 00:00:00 2001 From: timothyteakettle <59849408+timothyteakettle@users.noreply.github.com> Date: Mon, 3 May 2021 22:43:22 +0100 Subject: [PATCH 101/259] big changes --- code/modules/client/preferences.dm | 63 ++++++++++++++---------------- tgstation.dme | 4 -- 2 files changed, 30 insertions(+), 37 deletions(-) diff --git a/code/modules/client/preferences.dm b/code/modules/client/preferences.dm index f5c1e5f254..a06e2c4b22 100644 --- a/code/modules/client/preferences.dm +++ b/code/modules/client/preferences.dm @@ -524,7 +524,7 @@ GLOBAL_LIST_EMPTY(preferences_datums) if(marking_type) dat += APPEARANCE_CATEGORY_COLUMN dat += "

    [GLOB.all_mutant_parts[marking_type]]

    " // give it the appropriate title for the type of marking - dat += "Add marking" + dat += " Date: Mon, 3 May 2021 22:43:32 +0100 Subject: [PATCH 102/259] Revert "big changes" This reverts commit 7ac50b7ba2044603aa8ec1c23f1855b3191886e5. --- code/modules/client/preferences.dm | 63 ++++++++++++++++-------------- tgstation.dme | 4 ++ 2 files changed, 37 insertions(+), 30 deletions(-) diff --git a/code/modules/client/preferences.dm b/code/modules/client/preferences.dm index a06e2c4b22..f5c1e5f254 100644 --- a/code/modules/client/preferences.dm +++ b/code/modules/client/preferences.dm @@ -524,7 +524,7 @@ GLOBAL_LIST_EMPTY(preferences_datums) if(marking_type) dat += APPEARANCE_CATEGORY_COLUMN dat += "

    [GLOB.all_mutant_parts[marking_type]]

    " // give it the appropriate title for the type of marking - dat += "
    Date: Mon, 3 May 2021 22:43:45 +0100 Subject: [PATCH 103/259] big changes 2 --- code/modules/client/preferences.dm | 63 ++++++++++++++---------------- 1 file changed, 30 insertions(+), 33 deletions(-) diff --git a/code/modules/client/preferences.dm b/code/modules/client/preferences.dm index f5c1e5f254..a06e2c4b22 100644 --- a/code/modules/client/preferences.dm +++ b/code/modules/client/preferences.dm @@ -524,7 +524,7 @@ GLOBAL_LIST_EMPTY(preferences_datums) if(marking_type) dat += APPEARANCE_CATEGORY_COLUMN dat += "

    [GLOB.all_mutant_parts[marking_type]]

    " // give it the appropriate title for the type of marking - dat += "
    Add marking" + dat += " Date: Mon, 3 May 2021 22:47:22 +0100 Subject: [PATCH 104/259] new limb covering var for markings --- .../mob/dead/new_player/sprite_accessories/body_markings.dm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/code/modules/mob/dead/new_player/sprite_accessories/body_markings.dm b/code/modules/mob/dead/new_player/sprite_accessories/body_markings.dm index bc6c4899dd..533e406d57 100644 --- a/code/modules/mob/dead/new_player/sprite_accessories/body_markings.dm +++ b/code/modules/mob/dead/new_player/sprite_accessories/body_markings.dm @@ -6,6 +6,7 @@ icon = 'icons/mob/mutant_bodyparts.dmi' relevant_layers = list(BODY_ADJ_LAYER) mutant_part_string = "body_markings" + var/list/covered_limbs = list(HEAD, CHEST, LEG_LEFT, LEG_RIGHT, ARM_LEFT, ARM_RIGHT) /datum/sprite_accessory/body_markings/none name = "None" @@ -50,6 +51,7 @@ icon = 'modular_citadel/icons/mob/mam_markings.dmi' recommended_species = list("mammal", "xeno", "slimeperson", "podweak") matrixed_sections = MATRIX_ALL + var/list/covered_limbs = list(HEAD, CHEST, LEG_LEFT, LEG_RIGHT, ARM_LEFT, ARM_RIGHT) /datum/sprite_accessory/mam_body_markings/none name = "None" From 8f47d0ecf90f78acb2ac0576a2e8d61db8ddb9b5 Mon Sep 17 00:00:00 2001 From: Changelogs Date: Tue, 4 May 2021 00:22:20 +0000 Subject: [PATCH 105/259] Automatic changelog compile [ci skip] --- html/changelog.html | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/html/changelog.html b/html/changelog.html index 9617672de3..1050db0faf 100644 --- a/html/changelog.html +++ b/html/changelog.html @@ -782,16 +782,6 @@
  • Kinetic Accelerator now properly reloads a charge to it's chamber instead of nulling the variable forever
  • Now pacifists won't be able to use Kinetic Accelerators if a non-pacifist shoots it first
- -

02 March 2021

-

LetterN updated:

-
    -
  • colorpainter: let's not dispense null
  • -
-

SandPoot updated:

-
    -
  • Changelings will actually become the person they want to be when using "human form" ability(after having used last resort).
  • -
GoonStation 13 Development Team From 0f73f9d9fdb7f2fabf5335d3f0eb08b92353c173 Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Mon, 3 May 2021 22:08:39 -0500 Subject: [PATCH 106/259] Automatic changelog generation for PR #14673 [ci skip] --- html/changelogs/AutoChangeLog-pr-14673.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-14673.yml diff --git a/html/changelogs/AutoChangeLog-pr-14673.yml b/html/changelogs/AutoChangeLog-pr-14673.yml new file mode 100644 index 0000000000..7d3f086325 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-14673.yml @@ -0,0 +1,4 @@ +author: "The0bserver, with a great amount of advice from TripleZeta/TetraZeta" +delete-after: True +changes: + - rscadd: "Adds a new crate type, for use with any manner of cheeky breeki shenanigans, as well as with existing Russian contraband." From 89f5717469882d4cfc337724642bfd7e589f390b Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Tue, 4 May 2021 01:45:35 -0500 Subject: [PATCH 107/259] Automatic changelog generation for PR #14679 [ci skip] --- html/changelogs/AutoChangeLog-pr-14679.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-14679.yml diff --git a/html/changelogs/AutoChangeLog-pr-14679.yml b/html/changelogs/AutoChangeLog-pr-14679.yml new file mode 100644 index 0000000000..5329e40891 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-14679.yml @@ -0,0 +1,4 @@ +author: "bunny232" +delete-after: True +changes: + - rscadd: "There's some new vents and scrubbers in the meta station xenobiology department. Welders and wrenches not included*" From 4a90438b6f9a44b30f57cbc78706d2d7f799d22a Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Tue, 4 May 2021 01:45:49 -0500 Subject: [PATCH 108/259] Automatic changelog generation for PR #14680 [ci skip] --- html/changelogs/AutoChangeLog-pr-14680.yml | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-14680.yml diff --git a/html/changelogs/AutoChangeLog-pr-14680.yml b/html/changelogs/AutoChangeLog-pr-14680.yml new file mode 100644 index 0000000000..42c6ce0651 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-14680.yml @@ -0,0 +1,5 @@ +author: "keronshb" +delete-after: True +changes: + - balance: "Nightmare Shadow Jaunt threshold up to 0.4" + - balance: "Vendor and Engraved message light down to 0.3" From f816bba62a34b3858d02510e61d978e1cea94cd2 Mon Sep 17 00:00:00 2001 From: timothyteakettle <59849408+timothyteakettle@users.noreply.github.com> Date: Wed, 5 May 2021 00:51:52 +0100 Subject: [PATCH 109/259] bugfixes --- code/modules/client/preferences.dm | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/code/modules/client/preferences.dm b/code/modules/client/preferences.dm index a06e2c4b22..7e06868c6b 100644 --- a/code/modules/client/preferences.dm +++ b/code/modules/client/preferences.dm @@ -524,7 +524,7 @@ GLOBAL_LIST_EMPTY(preferences_datums) if(marking_type) dat += APPEARANCE_CATEGORY_COLUMN dat += "

[GLOB.all_mutant_parts[marking_type]]

" // give it the appropriate title for the type of marking - dat += "
Add marking" // list out the current markings you have if(length(features[marking_type])) dat += "" @@ -554,10 +554,8 @@ GLOBAL_LIST_EMPTY(preferences_datums) dat += "
" for(var/mutant_part in GLOB.all_mutant_parts) - // these are sorted out separately due to the rp marking system being funky - // NOTE TO SELF: UNCOMMENT THIS ONCE YOU'RE DONE DEBUGGING - //if(istype(accessory, /datum/sprite_accessory/mam_body_markings) || istype(accessory, /datum/sprite_accessory/body_markings)) - // continue + if(istype(accessory, /datum/sprite_accessory/mam_body_markings) || istype(accessory, /datum/sprite_accessory/body_markings)) + continue if(parent.can_have_part(mutant_part)) if(!mutant_category) dat += APPEARANCE_CATEGORY_COLUMN @@ -2450,11 +2448,11 @@ GLOBAL_LIST_EMPTY(preferences_datums) // gross copypasta here because mam markings arent a subtype of regular markings despite one containing the other ??? if(istype(S, /datum/sprite_accessory/body_markings)) var/datum/sprite_accessory/body_markings/marking = S - if(!(GLOB.bodypart_names[selected_limb] in marking.covered_limbs)) + if(!(text2num(GLOB.bodypart_names[selected_limb]) in marking.covered_limbs)) continue if(istype(S, /datum/sprite_accessory/mam_body_markings)) var/datum/sprite_accessory/mam_body_markings/marking = S - if(!(GLOB.bodypart_names[selected_limb] in marking.covered_limbs)) + if(!(text2num(GLOB.bodypart_names[selected_limb]) in marking.covered_limbs)) continue if((!S.ckeys_allowed) || (S.ckeys_allowed.Find(user.client.ckey))) From b2d8c980e43f4a65904068df0e83275ce0e8b6ba Mon Sep 17 00:00:00 2001 From: timothyteakettle <59849408+timothyteakettle@users.noreply.github.com> Date: Wed, 5 May 2021 00:54:44 +0100 Subject: [PATCH 110/259] task failed sucessfully --- code/modules/client/preferences.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/client/preferences.dm b/code/modules/client/preferences.dm index 7e06868c6b..f6660fa54d 100644 --- a/code/modules/client/preferences.dm +++ b/code/modules/client/preferences.dm @@ -2448,11 +2448,11 @@ GLOBAL_LIST_EMPTY(preferences_datums) // gross copypasta here because mam markings arent a subtype of regular markings despite one containing the other ??? if(istype(S, /datum/sprite_accessory/body_markings)) var/datum/sprite_accessory/body_markings/marking = S - if(!(text2num(GLOB.bodypart_names[selected_limb]) in marking.covered_limbs)) + if(!(GLOB.bodypart_names[num2text(selected_limb)] in marking.covered_limbs)) continue if(istype(S, /datum/sprite_accessory/mam_body_markings)) var/datum/sprite_accessory/mam_body_markings/marking = S - if(!(text2num(GLOB.bodypart_names[selected_limb]) in marking.covered_limbs)) + if(!(GLOB.bodypart_names[num2text(selected_limb)] in marking.covered_limbs)) continue if((!S.ckeys_allowed) || (S.ckeys_allowed.Find(user.client.ckey))) From e939ce8c64add3de3cd6626ce89467c70f189c55 Mon Sep 17 00:00:00 2001 From: Changelogs Date: Wed, 5 May 2021 00:16:12 +0000 Subject: [PATCH 111/259] Automatic changelog compile [ci skip] --- html/changelog.html | 46 +++++++--------------- html/changelogs/.all_changelog.yml | 10 +++++ html/changelogs/AutoChangeLog-pr-14673.yml | 4 -- html/changelogs/AutoChangeLog-pr-14679.yml | 4 -- html/changelogs/AutoChangeLog-pr-14680.yml | 5 --- 5 files changed, 25 insertions(+), 44 deletions(-) delete mode 100644 html/changelogs/AutoChangeLog-pr-14673.yml delete mode 100644 html/changelogs/AutoChangeLog-pr-14679.yml delete mode 100644 html/changelogs/AutoChangeLog-pr-14680.yml diff --git a/html/changelog.html b/html/changelog.html index 1050db0faf..19efdd3168 100644 --- a/html/changelog.html +++ b/html/changelog.html @@ -50,6 +50,21 @@ -->
+

05 May 2021

+

The0bserver, with a great amount of advice from TripleZeta/TetraZeta updated:

+
    +
  • Adds a new crate type, for use with any manner of cheeky breeki shenanigans, as well as with existing Russian contraband.
  • +
+

bunny232 updated:

+
    +
  • There's some new vents and scrubbers in the meta station xenobiology department. Welders and wrenches not included*
  • +
+

keronshb updated:

+
    +
  • Nightmare Shadow Jaunt threshold up to 0.4
  • +
  • Vendor and Engraved message light down to 0.3
  • +
+

03 May 2021

TripleShades updated:

    @@ -751,37 +766,6 @@
    • removes bsql
    - -

    03 March 2021

    -

    MarinaGryphon updated:

    -
      -
    • The AOOC mute pref is now properly respected.
    • -
    • Muting adminhelp sounds no longer mutes AOOC.
    • -
    -

    Putnam3145 updated:

    -
      -
    • pAIs now have a policy config
    • -
    • "Supermatter surge" event, which might cause problems if the supermatter is not sufficiently cooled (i.e. the setup is messed up in some way)
    • -
    • Fusion can no longer be done in open air.
    • -
    • Valentine's day event no longer gives everyone a valentine's antag.
    • -
    -

    SandPoot updated:

    -
      -
    • Legions should now pass their type to the person they infect (if valid).
    • -
    -

    dzahlus updated:

    -
      -
    • Added new subtype to lesser ash drake balanced around player control
    • -
    • rebalanced dragon transformation to a 1 minute cooldown as well as using the new subtype of megafauna
    • -
    -

    qweq12yt updated:

    -
      -
    • fixed infectious zombies not being able to attack if host was pacifist
    • -
    • adds a way for species to have blacklisted quirks, the removal, and restoration of said quirks upon species changes
    • -
    • Now pacifists won't be able to use flamethrowers
    • -
    • Kinetic Accelerator now properly reloads a charge to it's chamber instead of nulling the variable forever
    • -
    • Now pacifists won't be able to use Kinetic Accelerators if a non-pacifist shoots it first
    • -
GoonStation 13 Development Team diff --git a/html/changelogs/.all_changelog.yml b/html/changelogs/.all_changelog.yml index f45bae5a5a..74a9c9400e 100644 --- a/html/changelogs/.all_changelog.yml +++ b/html/changelogs/.all_changelog.yml @@ -29231,3 +29231,13 @@ DO NOT EDIT THIS FILE BY HAND! AUTOMATICALLY GENERATED BY ss13_genchangelog.py. - bugfix: 'Box Paramedic Station camera is now renamed to be on the network, and no longer steals the Morgue''s cam tweak: Box Surgery Storage is now it''s own proper room' +2021-05-05: + The0bserver, with a great amount of advice from TripleZeta/TetraZeta: + - rscadd: Adds a new crate type, for use with any manner of cheeky breeki shenanigans, + as well as with existing Russian contraband. + bunny232: + - rscadd: There's some new vents and scrubbers in the meta station xenobiology department. + Welders and wrenches not included* + keronshb: + - balance: Nightmare Shadow Jaunt threshold up to 0.4 + - balance: Vendor and Engraved message light down to 0.3 diff --git a/html/changelogs/AutoChangeLog-pr-14673.yml b/html/changelogs/AutoChangeLog-pr-14673.yml deleted file mode 100644 index 7d3f086325..0000000000 --- a/html/changelogs/AutoChangeLog-pr-14673.yml +++ /dev/null @@ -1,4 +0,0 @@ -author: "The0bserver, with a great amount of advice from TripleZeta/TetraZeta" -delete-after: True -changes: - - rscadd: "Adds a new crate type, for use with any manner of cheeky breeki shenanigans, as well as with existing Russian contraband." diff --git a/html/changelogs/AutoChangeLog-pr-14679.yml b/html/changelogs/AutoChangeLog-pr-14679.yml deleted file mode 100644 index 5329e40891..0000000000 --- a/html/changelogs/AutoChangeLog-pr-14679.yml +++ /dev/null @@ -1,4 +0,0 @@ -author: "bunny232" -delete-after: True -changes: - - rscadd: "There's some new vents and scrubbers in the meta station xenobiology department. Welders and wrenches not included*" diff --git a/html/changelogs/AutoChangeLog-pr-14680.yml b/html/changelogs/AutoChangeLog-pr-14680.yml deleted file mode 100644 index 42c6ce0651..0000000000 --- a/html/changelogs/AutoChangeLog-pr-14680.yml +++ /dev/null @@ -1,5 +0,0 @@ -author: "keronshb" -delete-after: True -changes: - - balance: "Nightmare Shadow Jaunt threshold up to 0.4" - - balance: "Vendor and Engraved message light down to 0.3" From 5138d86655131bf8d60c0fec3f826c7c67997cb0 Mon Sep 17 00:00:00 2001 From: zerothebigboy Date: Wed, 5 May 2021 03:35:25 -0400 Subject: [PATCH 112/259] skylarlineman'safurry --- _maps/shuttles/pirate_default.dmm | 3070 +++++++++++------ code/game/objects/items/cards_ids.dm | 4 + code/modules/clothing/outfits/standard.dm | 4 +- code/modules/events/pirates.dm | 6 +- .../reagents/reagent_containers/bottle.dm | 20 + icons/obj/decals.dmi | Bin 35936 -> 35210 bytes 6 files changed, 2002 insertions(+), 1102 deletions(-) diff --git a/_maps/shuttles/pirate_default.dmm b/_maps/shuttles/pirate_default.dmm index e23159a2bd..0d37e7fde0 100644 --- a/_maps/shuttles/pirate_default.dmm +++ b/_maps/shuttles/pirate_default.dmm @@ -1,5 +1,72 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE "aa" = ( +/obj/machinery/porta_turret/syndicate/energy/pirate{ + dir = 1; + faction = list("pirate"); + icon_state = "standard_lethal" + }, +/turf/closed/wall/r_wall/syndicate/pirate/nodiagonal, +/area/shuttle/pirate) +"ab" = ( +/obj/structure/grille, +/turf/open/floor/plating/airless, +/area/shuttle/pirate) +"ac" = ( +/obj/structure/girder, +/obj/item/stack/rods{ + amount = 3 + }, +/turf/open/floor/plating/airless, +/area/shuttle/pirate) +"ad" = ( +/obj/structure/girder, +/obj/item/stack/rods{ + amount = 5 + }, +/turf/open/floor/plating/airless, +/area/shuttle/pirate) +"ae" = ( +/turf/closed/wall/r_wall/syndicate/pirate, +/area/shuttle/pirate) +"af" = ( +/turf/template_noop, +/area/template_noop) +"ag" = ( +/obj/structure/window/reinforced, +/obj/structure/frame/machine, +/obj/item/crowbar, +/turf/open/floor/plating/airless, +/area/shuttle/pirate) +"ah" = ( +/obj/structure/window/reinforced, +/obj/structure/frame/machine, +/obj/item/stack/cable_coil/cut/red, +/turf/open/floor/plating/airless, +/area/shuttle/pirate) +"ai" = ( +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/obj/structure/frame/computer{ + anchored = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/dark, +/area/shuttle/pirate) +"aj" = ( +/turf/closed/wall/r_wall/syndicate/pirate/nodiagonal, +/area/shuttle/pirate) +"ak" = ( +/obj/structure/grille, +/obj/structure/window/plastitanium/pirate, +/obj/machinery/door/poddoor/shutters{ + id = "cuttershutters"; + name = "Blast Shutters" + }, +/turf/open/floor/plating, +/area/shuttle/pirate) +"al" = ( /obj/structure/chair/comfy/shuttle{ dir = 1 }, @@ -15,88 +82,389 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/pod/dark, /area/shuttle/pirate) -"ab" = ( -/obj/structure/table, +"am" = ( +/obj/structure/rack, +/obj/machinery/nuclearbomb/beer{ + desc = "A nuclear fission warhead designed to be fired from a high-speed matter-propellent cannon to turn some unlucky sod in the distance into a sun. This one has a jolly roger crudely painted on the side of it. Interestingly, there's a tap on the back and it sloshes when it moves."; + name = "\improper Very Real Nuclear Explosive" + }, /obj/effect/decal/cleanable/dirt, -/obj/machinery/recharger, -/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, +/turf/open/floor/pod/dark, /area/shuttle/pirate) -"ac" = ( -/obj/machinery/computer/shuttle/pirate, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 +"an" = ( +/obj/machinery/recharger{ + pixel_x = -4; + pixel_y = 4 }, -/turf/open/floor/plasteel/dark, -/area/shuttle/pirate) -"ad" = ( -/obj/structure/table, +/obj/structure/table/reinforced, /obj/machinery/button/door{ - id = "piratebridge"; - name = "Bridge Shutters Control"; - pixel_y = -5 + id = "cuttershutters"; + name = "Corvette Shutters Control"; + pixel_x = 6; + pixel_y = -3; + req_access_txt = "150" }, -/obj/item/radio/intercom{ - pixel_y = 5 - }, -/obj/effect/decal/cleanable/dirt, -/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/shuttle/pirate) -"ae" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/red{ +/obj/effect/turf_decal/stripes/corner{ dir = 1 }, -/turf/open/floor/plasteel/dark, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/mineral/plastitanium, /area/shuttle/pirate) -"af" = ( -/turf/template_noop, -/area/template_noop) -"ag" = ( +"ao" = ( +/obj/machinery/computer/shuttle/pirate, +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/pirate) +"ap" = ( +/obj/machinery/computer/security, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes/corner, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/pirate) +"aq" = ( +/obj/structure/rack, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/dark, +/area/shuttle/pirate) +"ar" = ( /obj/structure/chair/comfy/shuttle{ dir = 1 }, -/turf/open/floor/plasteel/dark, -/area/shuttle/pirate) -"ah" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/red{ +/obj/machinery/light/small{ dir = 4 }, -/turf/open/floor/plasteel/dark, +/obj/machinery/airalarm/all_access{ + dir = 8; + pixel_x = 24 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/dark, /area/shuttle/pirate) -"ai" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ +"as" = ( +/obj/machinery/door/airlock/hatch{ + name = "Port Gun Battery" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/wooden/crude{ + layer = 3.13 + }, +/turf/open/floor/pod/dark, +/area/shuttle/pirate) +"at" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + id = "piratebridge" + }, +/obj/structure/grille, +/obj/structure/window/plastitanium/pirate, +/obj/machinery/door/poddoor/shutters{ + id = "cuttershutters"; + name = "Blast Shutters" + }, +/turf/open/floor/plating, +/area/shuttle/pirate) +"au" = ( +/obj/machinery/shuttle_scrambler, +/obj/item/radio/intercom{ + freerange = 1; + name = "Station Intercom (General)"; + pixel_x = -26 + }, +/obj/effect/turf_decal/box, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/pirate) +"av" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/pirate) +"aw" = ( +/obj/structure/chair/comfy/shuttle{ dir = 1 }, /obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/pirate) +"ax" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/pirate) +"ay" = ( +/obj/machinery/loot_locator, +/obj/item/radio/intercom{ + dir = 4; + name = "Station Intercom (General)"; + pixel_x = 27 + }, +/obj/effect/turf_decal/box, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/pirate) +"az" = ( +/obj/machinery/door/airlock/hatch{ + name = "Starboard Gun Battery" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/wooden/crude{ + layer = 3.13 + }, /turf/open/floor/pod/dark, /area/shuttle/pirate) -"aj" = ( -/turf/closed/wall/r_wall/syndicate/pirate/nodiagonal, +"aA" = ( +/obj/machinery/porta_turret/syndicate/energy/pirate{ + dir = 8; + faction = list("pirate"); + icon_state = "standard_lethal" + }, +/turf/closed/wall/r_wall/syndicate/pirate, /area/shuttle/pirate) -"ak" = ( +"aB" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/shuttle/pirate) +"aC" = ( +/obj/structure/rack{ + icon = 'icons/obj/stationobjs.dmi'; + icon_state = "minibar_left"; + name = "skeletal minibar" + }, +/obj/machinery/chem_dispenser/drinks{ + dir = 0; + pixel_y = 12 + }, +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/shuttle/pirate) +"aD" = ( +/obj/structure/rack{ + icon = 'icons/obj/stationobjs.dmi'; + icon_state = "minibar_right"; + name = "skeletal minibar" + }, +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/item/bedsheet/pirate{ + pixel_y = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/shuttle/pirate) +"aE" = ( +/obj/machinery/vending/boozeomat, +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/shuttle/pirate) +"aF" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/computer/camera_advanced/shuttle_docker/syndicate/pirate{ + dir = 4; + x_offset = -3; + y_offset = 7 + }, +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/pirate) +"aG" = ( +/obj/structure/chair/comfy/shuttle{ + dir = 8 + }, +/obj/machinery/turretid{ + icon_state = "control_kill"; + lethal = 1; + locked = 0; + pixel_y = -24; + req_access = "150" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/mineral/plastitanium/red, +/area/shuttle/pirate) +"aH" = ( +/obj/machinery/airalarm/all_access{ + dir = 1; + pixel_y = -24 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/mineral/plastitanium/red, +/area/shuttle/pirate) +"aI" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/mineral/plastitanium/red, +/area/shuttle/pirate) +"aJ" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/open/floor/mineral/plastitanium/red, +/area/shuttle/pirate) +"aK" = ( +/obj/structure/chair/comfy/shuttle{ + dir = 4 + }, +/obj/machinery/button/door{ + id = "piratebridgebolt"; + name = "Bridge Bolt Control"; + normaldoorcontrol = 1; + pixel_y = -24; + req_access_txt = "150"; + specialfunctions = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/mineral/plastitanium/red, +/area/shuttle/pirate) +"aL" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/computer/monitor/secret{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/pirate) +"aM" = ( +/obj/structure/table/reinforced, +/obj/item/storage/backpack/duffelbag/med{ + pixel_y = 8 + }, +/obj/item/wirecutters{ + pixel_y = 8 + }, +/obj/item/weldingtool/mini{ + pixel_y = -6 + }, +/obj/item/reagent_containers/medspray/sterilizine{ + pixel_x = 6; + pixel_y = -12 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/dark, +/area/shuttle/pirate) +"aN" = ( +/obj/structure/table/optable, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/robot_debris{ + layer = 2.81; + pixel_x = -2; + pixel_y = 6 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/poster/contraband/random{ + pixel_y = 32 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/pirate) +"aO" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/frame/computer{ + anchored = 1; + dir = 8 + }, +/obj/structure/sign/departments/showers{ + pixel_y = 32 + }, +/obj/item/shard{ + pixel_x = -4; + pixel_y = -4 + }, +/obj/effect/decal/cleanable/glass, +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/pirate) +"aP" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/mineral/plastitanium/red, +/area/shuttle/pirate) +"aQ" = ( +/obj/machinery/porta_turret/syndicate/energy/pirate{ + dir = 4; + faction = list("pirate"); + icon_state = "standard_lethal" + }, +/turf/closed/wall/r_wall/syndicate/pirate, +/area/shuttle/pirate) +"aR" = ( /obj/machinery/airalarm/all_access{ dir = 4; pixel_x = -24 }, -/obj/effect/decal/cleanable/dirt, /obj/machinery/light/small{ dir = 8 }, @@ -116,31 +484,30 @@ pixel_y = -6 }, /obj/item/reagent_containers/food/snacks/chocolatebar, -/obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/tile/bar, /obj/effect/turf_decal/tile/bar{ dir = 1 }, /obj/item/reagent_containers/food/condiment/milk, -/obj/item/reagent_containers/food/condiment/milk, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel, /area/shuttle/pirate) -"al" = ( -/obj/machinery/loot_locator, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/red{ +"aS" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ dir = 1 }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plasteel, /area/shuttle/pirate) -"am" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, +"aT" = ( +/obj/machinery/door/airlock/hatch{ + aiControlDisabled = 1; + id_tag = "piratebridgebolt"; + name = "Bridge"; + req_access_txt = "150" + }, /obj/effect/turf_decal/tile/neutral{ dir = 1 }, @@ -151,60 +518,82 @@ /obj/effect/turf_decal/tile/neutral{ dir = 8 }, -/turf/open/floor/plasteel/dark, -/area/shuttle/pirate) -"an" = ( -/obj/structure/chair/comfy/shuttle{ - dir = 4 - }, -/obj/machinery/button/door{ - id = "piratebridgebolt"; - name = "Bridge Bolt Control"; - normaldoorcontrol = 1; - pixel_y = -24; - specialfunctions = 4 - }, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel/dark, -/area/shuttle/pirate) -"ao" = ( -/obj/structure/chair/comfy/shuttle{ - dir = 1 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/airalarm/all_access{ - dir = 8; - pixel_x = 24 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/dark, -/area/shuttle/pirate) -"ap" = ( -/obj/machinery/door/airlock/hatch{ - name = "Port Gun Battery" - }, -/obj/structure/barricade/wooden/crude, /obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/firedoor, +/turf/open/floor/pod/dark, +/area/shuttle/pirate) +"aU" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced, +/obj/item/book/manual/wiki/surgery{ + pixel_x = -2; + pixel_y = 4 + }, +/obj/item/clipboard{ + pixel_x = 2 + }, +/obj/item/clothing/gloves/color/latex, +/obj/item/clothing/suit/apron/surgical, +/obj/item/clothing/mask/surgical, +/obj/item/surgical_drapes, +/obj/item/scalpel{ + pixel_y = 16 + }, +/obj/item/wrench{ + pixel_y = 12 + }, +/obj/item/pen{ + pixel_x = -4; + pixel_y = 12 + }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/pod/dark, /area/shuttle/pirate) -"aq" = ( -/obj/structure/chair/stool, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ +"aV" = ( +/obj/item/shard{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/glass, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/dark, +/area/shuttle/pirate) +"aW" = ( +/obj/structure/window/reinforced{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 +/obj/structure/window/reinforced, +/obj/structure/sink{ + dir = 4; + pixel_x = 6 + }, +/obj/machinery/shower{ + dir = 1; + pixel_y = 4 + }, +/obj/structure/curtain, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/turf_decal/box, +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 }, -/turf/open/floor/plasteel, -/area/shuttle/pirate) -"ar" = ( /obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/dark, +/area/shuttle/pirate) +"aX" = ( +/obj/structure/closet/crate/medical, +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/dark, +/area/shuttle/pirate) +"aY" = ( /obj/structure/table, /obj/item/storage/fancy/cigarettes{ pixel_x = 2; @@ -232,332 +621,647 @@ pixel_x = -10; pixel_y = -2 }, -/obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/tile/bar, /obj/effect/turf_decal/tile/bar{ dir = 1 }, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel, /area/shuttle/pirate) -"as" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/obj/structure/closet/secure_closet/personal, -/obj/effect/decal/cleanable/dirt, -/obj/item/bedsheet/pirate, -/turf/open/floor/plasteel, -/area/shuttle/pirate) -"at" = ( -/obj/structure/closet/secure_closet/personal, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 +"aZ" = ( +/obj/structure/chair/stool, +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 }, -/obj/item/bedsheet/pirate, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel, /area/shuttle/pirate) -"au" = ( -/obj/machinery/door/airlock/hatch{ - id_tag = "piratebridgebolt"; - name = "Bridge" +"ba" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/drinks/bottle/whiskey{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/shard, +/obj/item/chair/stool/bar, +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/glass, +/turf/open/floor/plasteel, +/area/shuttle/pirate) +"bb" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/drinks/flask, +/obj/item/reagent_containers/food/condiment/milk{ + pixel_x = -12; + pixel_y = 4 + }, +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/structure/sign/poster/contraband/random{ + pixel_x = 32 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/shuttle/pirate) +"bc" = ( +/obj/machinery/computer/piratepad_control{ + dir = 0 + }, +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/light, +/area/shuttle/pirate) +"bd" = ( +/obj/machinery/piratepad{ + pixel_y = 6 + }, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/box, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/pod/light, +/area/shuttle/pirate) +"be" = ( +/obj/structure/closet/crate, +/obj/item/storage/bag/money/vault, +/obj/item/stack/sheet/mineral/gold{ + amount = 3; + pixel_x = -2; + pixel_y = 2 + }, +/obj/item/stack/sheet/mineral/silver{ + amount = 8; + pixel_x = 2; + pixel_y = -1 + }, +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/light, +/area/shuttle/pirate) +"bf" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 +/obj/structure/cable/yellow{ + icon_state = "1-2" }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/shuttle/pirate) -"av" = ( -/obj/machinery/door/airlock/hatch{ - name = "Starboard Gun Battery" - }, -/obj/structure/barricade/wooden/crude, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/dark, -/area/shuttle/pirate) -"aw" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/shuttle/pirate) -"ax" = ( -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/shuttle/pirate) -"ay" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/vomit/old, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/shuttle/pirate) -"az" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/table, -/obj/machinery/chem_dispenser/drinks{ - dir = 8 - }, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/shuttle/pirate) -"aA" = ( -/obj/structure/closet/secure_closet/personal, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line, -/obj/item/bedsheet/pirate, -/turf/open/floor/wood, -/area/shuttle/pirate) -"aB" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/computer/monitor/secret{ +/obj/effect/turf_decal/stripes/corner{ dir = 8 }, /obj/effect/decal/cleanable/dirt, -/obj/machinery/airalarm/all_access{ +/turf/open/floor/mineral/plastitanium/red, +/area/shuttle/pirate) +"bg" = ( +/obj/machinery/power/apc{ dir = 1; - pixel_y = -24 + name = "Pirate Corvette APC"; + pixel_y = 23; + req_access = null }, -/obj/effect/turf_decal/tile/red{ - dir = 1 +/obj/structure/cable/yellow{ + icon_state = "0-2" }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/shuttle/pirate) -"aC" = ( -/obj/machinery/shuttle_scrambler, -/obj/effect/decal/cleanable/dirt, -/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/shuttle/pirate) -"aD" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/shuttle/pirate) -"aF" = ( -/obj/machinery/door/airlock/external/glass{ - id_tag = "pirateportexternal" - }, -/obj/effect/mapping_helpers/airlock/locked, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/shuttle/pirate) -"aG" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 }, -/obj/machinery/power/port_gen/pacman{ - anchored = 1 - }, -/obj/structure/cable{ - icon_state = "0-4" - }, +/obj/effect/decal/cleanable/blood/old, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, +/turf/open/floor/mineral/plastitanium/red, /area/shuttle/pirate) -"aH" = ( -/obj/structure/shuttle/engine/propulsion/left, -/turf/open/floor/plating/airless, -/area/shuttle/pirate) -"aI" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/sign/warning/vacuum/external{ - pixel_x = -32 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/shuttle/pirate) -"aJ" = ( -/obj/machinery/door/airlock/external/glass{ - id_tag = "pirateportexternal" - }, -/obj/effect/mapping_helpers/airlock/locked, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ +"bh" = ( +/obj/effect/turf_decal/stripes/line{ dir = 1 }, -/obj/structure/fans/tiny, -/turf/open/floor/plating, -/area/shuttle/pirate) -"aK" = ( -/obj/structure/shuttle/engine/propulsion, -/turf/open/floor/plating/airless, -/area/shuttle/pirate) -"aL" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 +/obj/machinery/airalarm/all_access{ + pixel_y = 24 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/shuttle/pirate) -"aN" = ( -/obj/machinery/light/small, -/obj/machinery/button/door{ - id = "pirateportexternal"; - name = "External Bolt Control"; - normaldoorcontrol = 1; - pixel_x = -4; - pixel_y = -24; - specialfunctions = 4 +/obj/machinery/light{ + dir = 1 }, +/turf/open/floor/mineral/plastitanium/red, +/area/shuttle/pirate) +"bi" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/door/poddoor/shutters{ + id = "cuttermedbay"; + name = "Blast Shutters" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/dark, +/area/shuttle/pirate) +"bj" = ( +/obj/effect/turf_decal/caution/stand_clear/white{ + dir = 4 + }, +/obj/effect/turf_decal/bot_white, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/firedoor, +/turf/open/floor/pod/dark, +/area/shuttle/pirate) +"bk" = ( +/obj/structure/sign/departments/medbay/alt{ + pixel_x = -32; + pixel_y = 32 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/mineral/plastitanium/red, +/area/shuttle/pirate) +"bl" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/mineral/plastitanium/red, +/area/shuttle/pirate) +"bm" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/obj/effect/decal/cleanable/vomit/old, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/mineral/plastitanium/red, +/area/shuttle/pirate) +"bn" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/white/corner{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/mineral/plastitanium/red, +/area/shuttle/pirate) +"bo" = ( +/obj/machinery/sleeper{ + dir = 8 + }, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/dark, +/area/shuttle/pirate) +"bp" = ( +/obj/machinery/vending/dinnerware, +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -24 + }, +/turf/open/floor/plasteel/dark, +/area/shuttle/pirate) +"bq" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/shuttle/pirate) +"br" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/shuttle/pirate) +"bs" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plasteel/dark, +/area/shuttle/pirate) +"bt" = ( +/obj/structure/chair/stool/bar, +/obj/item/shard, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/glass, +/turf/open/floor/plasteel/dark, +/area/shuttle/pirate) +"bu" = ( +/obj/structure/chair/office/dark{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/mineral/plastitanium/red, +/area/shuttle/pirate) +"bv" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/mineral/plastitanium/red, +/area/shuttle/pirate) +"bw" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/mineral/plastitanium/red, +/area/shuttle/pirate) +"bx" = ( /obj/effect/turf_decal/stripes/corner{ dir = 1 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/shuttle/pirate) -"aO" = ( -/obj/machinery/light/small, -/obj/machinery/button/door{ - id = "piratestarboardexternal"; - name = "External Bolt Control"; - normaldoorcontrol = 1; - pixel_x = 4; - pixel_y = -24; - specialfunctions = 4 - }, /obj/effect/turf_decal/stripes/corner, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/shuttle/pirate) -"aQ" = ( -/obj/machinery/porta_turret/syndicate/energy/pirate{ - dir = 1; - faction = list("pirate"); - icon_state = "standard_lethal" - }, -/turf/closed/wall/r_wall/syndicate/pirate/nodiagonal, -/area/shuttle/pirate) -"aR" = ( -/obj/machinery/porta_turret/syndicate/energy/pirate{ - faction = list("pirate"); - icon_state = "standard_lethal" - }, -/turf/closed/wall/r_wall/syndicate/pirate, -/area/shuttle/pirate) -"aS" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/shuttle/pirate) -"aU" = ( -/obj/structure/sign/departments/engineering, -/turf/closed/wall/r_wall/syndicate/pirate/nodiagonal, -/area/shuttle/pirate) -"aV" = ( -/obj/effect/mob_spawn/human/pirate{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ +/obj/effect/turf_decal/stripes/corner{ dir = 4 }, -/obj/effect/turf_decal/tile/neutral{ +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 8 }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/mineral/plastitanium/red, +/area/shuttle/pirate) +"by" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/mineral/plastitanium/red, +/area/shuttle/pirate) +"bz" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/mineral/plastitanium/red, +/area/shuttle/pirate) +"bA" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/door/poddoor/shutters{ + id = "cuttermedbay"; + name = "Blast Shutters" + }, +/obj/machinery/button/door{ + id = "cuttermedbay"; + pixel_y = -24; + req_access_txt = "150" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/dark, +/area/shuttle/pirate) +"bB" = ( +/obj/effect/turf_decal/caution/stand_clear/white{ + dir = 4 + }, +/obj/effect/turf_decal/bot_white, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/pod/dark, +/area/shuttle/pirate) +"bC" = ( +/obj/effect/turf_decal/stripes/white/line, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/mineral/plastitanium/red, +/area/shuttle/pirate) +"bD" = ( +/obj/effect/turf_decal/stripes/white/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/mineral/plastitanium/red, +/area/shuttle/pirate) +"bE" = ( +/obj/effect/turf_decal/stripes/white/corner, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/mineral/plastitanium/red, +/area/shuttle/pirate) +"bF" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 9 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/mineral/plastitanium/red, +/area/shuttle/pirate) +"bG" = ( +/obj/machinery/sleeper{ + dir = 8 + }, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/stripes/line, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 24 + }, +/turf/open/floor/pod/dark, +/area/shuttle/pirate) +"bH" = ( +/obj/structure/table, +/obj/machinery/microwave{ + pixel_y = 5 + }, +/obj/item/book/manual/wiki/barman_recipes{ + pixel_x = -8 + }, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel/dark, /area/shuttle/pirate) -"aW" = ( -/obj/machinery/light/small{ +"bI" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/machinery/airalarm/all_access{ + dir = 1; + pixel_y = -24 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/chair/stool, +/obj/machinery/light, +/turf/open/floor/plasteel/dark, +/area/shuttle/pirate) +"bJ" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/shuttle/pirate) +"bK" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/shuttle/pirate) +"bL" = ( +/obj/machinery/door/airlock/hatch{ + aiDisabledIdScanner = 1; + name = "Spirits Lounge"; + req_access_txt = "150" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/firedoor, +/turf/open/floor/pod/dark, +/area/shuttle/pirate) +"bM" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/dark, +/area/shuttle/pirate) +"bN" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/vomit/old, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/dark, +/area/shuttle/pirate) +"bO" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ dir = 8 }, -/obj/machinery/computer/camera_advanced/shuttle_docker/syndicate/pirate{ - dir = 4; - x_offset = -3; - y_offset = 7 +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/mineral/plastitanium/red, +/area/shuttle/pirate) +"bP" = ( +/obj/structure/table/reinforced, +/obj/item/storage/backpack/duffelbag/syndie/x4{ + pixel_y = 8 + }, +/obj/item/grenade/smokebomb{ + pixel_x = -5 + }, +/obj/item/grenade/smokebomb{ + pixel_x = 5 + }, +/obj/effect/turf_decal/box/red, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/dark, +/area/shuttle/pirate) +"bQ" = ( +/obj/effect/turf_decal/stripes/red/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/pirate) +"bR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/vending/cigarette, +/obj/effect/turf_decal/box/white, +/turf/open/floor/pod/dark, +/area/shuttle/pirate) +"bS" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/white/corner, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/mineral/plastitanium/red, +/area/shuttle/pirate) +"bT" = ( +/obj/structure/table/reinforced, +/obj/machinery/airalarm/all_access{ + dir = 1; + pixel_y = -24 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/reagent_containers/glass/bottle/bicaridine{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/item/reagent_containers/glass/bottle/kelotane{ + pixel_x = 2; + pixel_y = 6 + }, +/obj/item/reagent_containers/glass/bottle/antitoxin{ + layer = 3.01; + pixel_x = 2 + }, +/obj/item/reagent_containers/glass/bottle/epinephrine{ + layer = 3.01; + pixel_x = -6 + }, +/obj/item/clipboard{ + pixel_x = 16; + pixel_y = 4 + }, +/obj/item/reagent_containers/syringe{ + pixel_x = 14; + pixel_y = 6 + }, +/obj/item/reagent_containers/dropper{ + pixel_x = 15; + pixel_y = -2 + }, +/obj/item/reagent_containers/hypospray/medipen{ + pixel_x = 16; + pixel_y = 11 + }, +/obj/item/reagent_containers/hypospray/medipen{ + pixel_x = 16; + pixel_y = 7 + }, +/obj/machinery/light, +/turf/open/floor/pod/dark, +/area/shuttle/pirate) +"bU" = ( +/obj/structure/table/reinforced, +/obj/item/storage/box/bodybags{ + pixel_y = 4 + }, +/obj/item/reagent_containers/spray/cleaner{ + pixel_x = 8; + pixel_y = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/reagent_containers/glass/bottle/charcoal{ + layer = 3.01; + pixel_x = -6 + }, +/obj/item/reagent_containers/glass/bottle/dexalin{ + layer = 3.01; + pixel_x = 2 + }, +/turf/open/floor/pod/dark, +/area/shuttle/pirate) +"bV" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/hatch{ + aiDisabledIdScanner = 1; + name = "Captain's Quaters"; + req_access_txt = "150" + }, +/turf/open/floor/pod/dark, +/area/shuttle/pirate) +"bW" = ( +/obj/item/tank/internals/oxygen/yellow, +/obj/item/clothing/suit/space/syndicate/green/dark{ + pixel_x = 2; + pixel_y = -2 + }, +/obj/item/clothing/head/helmet/space/syndicate/green/dark{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/tank/jetpack/carbondioxide{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/item/clothing/mask/breath, +/obj/structure/closet/crate/large, +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/pirate) +"bX" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/pirate) +"bY" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/dark, +/area/shuttle/pirate) +"bZ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 }, /obj/effect/decal/cleanable/dirt, /obj/machinery/firealarm{ dir = 1; 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/dark, +/obj/machinery/light, +/turf/open/floor/mineral/plastitanium/red, /area/shuttle/pirate) -"be" = ( -/obj/machinery/space_heater, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 +"ca" = ( +/obj/effect/turf_decal/stripes/red/line{ + dir = 1 }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/oil, -/turf/open/floor/plating, -/area/shuttle/pirate) -"bf" = ( -/obj/structure/chair/comfy/shuttle{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/turretid{ - icon_state = "control_kill"; - lethal = 1; - locked = 0; - pixel_y = -24; - req_access = null - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/shuttle/pirate) -"bg" = ( /obj/effect/turf_decal/stripes/line, /obj/effect/decal/cleanable/dirt, -/obj/structure/table, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/pirate) +"cb" = ( +/obj/effect/turf_decal/stripes/red/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/pirate) +"cc" = ( +/obj/structure/table/reinforced, +/obj/machinery/recharger, /obj/item/gun/energy/laser{ pixel_x = -3; pixel_y = 6 @@ -565,55 +1269,198 @@ /obj/item/gun/energy/laser{ pixel_y = 3 }, -/obj/machinery/recharger, -/turf/open/floor/pod/light, -/area/shuttle/pirate) -"bk" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 +/obj/item/gun/energy/laser{ + pixel_x = 2 }, -/obj/machinery/power/smes/engineering{ - charge = 1e+006 - }, -/obj/structure/cable, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/shuttle/pirate) -"bl" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 +/obj/structure/sign/poster/contraband/random{ + pixel_x = 32 }, -/obj/machinery/light/small{ +/turf/open/floor/mineral/plastitanium, +/area/shuttle/pirate) +"cd" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/hatch{ + aiControlDisabled = 1; + name = "Crew's Quarters"; + req_access_txt = "150" + }, +/turf/open/floor/pod/dark, +/area/shuttle/pirate) +"ce" = ( +/obj/structure/closet/secure_closet/personal/cabinet, +/obj/item/bedsheet/pirate, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/shuttle/pirate) +"cf" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/shuttle/pirate) +"cg" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/shuttle/pirate) +"ch" = ( +/obj/machinery/airalarm/all_access{ + pixel_y = 24 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light{ dir = 1 }, +/turf/open/floor/wood, +/area/shuttle/pirate) +"ci" = ( +/obj/effect/mob_spawn/human/pirate/captain{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/wood, +/area/shuttle/pirate) +"cj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/obj/structure/closet/crate/large, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/pirate) +"ck" = ( +/turf/open/floor/plating/airless, +/area/shuttle/pirate) +"cl" = ( +/obj/structure/table/reinforced, +/obj/item/stack/sheet/mineral/plastitanium{ + amount = 20 + }, +/obj/item/stack/cable_coil/yellow, +/obj/item/storage/backpack, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/pirate) +"cm" = ( +/obj/structure/table/reinforced, +/obj/item/pickaxe, +/obj/item/flashlight/seclite, +/obj/item/extinguisher/mini, +/obj/item/storage/backpack, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/pirate) +"cn" = ( +/obj/structure/table/reinforced, +/obj/item/storage/box/lethalshot{ + pixel_y = 8 + }, +/obj/item/gun/ballistic/shotgun/automatic/combat{ + pixel_y = 16 + }, +/obj/item/melee/transforming/energy/sword/pirate{ + pixel_x = -1; + pixel_y = 0 + }, +/obj/item/melee/transforming/energy/sword/pirate{ + pixel_x = 6; + pixel_y = 0 + }, +/obj/item/melee/transforming/energy/sword/pirate{ + pixel_x = 13; + pixel_y = 0 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/pirate) +"co" = ( +/obj/effect/mob_spawn/human/pirate{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/poster/contraband/random{ + pixel_x = -32 + }, +/turf/open/floor/plasteel/dark, +/area/shuttle/pirate) +"cp" = ( +/obj/structure/shuttle/engine/huge, +/turf/open/floor/plating/airless, +/area/shuttle/pirate) +"cq" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plasteel/dark, +/area/shuttle/pirate) +"cr" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, /obj/machinery/airalarm/all_access{ pixel_y = 24 }, /obj/effect/decal/cleanable/dirt, -/obj/structure/table, -/obj/item/gun/energy/laser{ - pixel_x = -3; - pixel_y = 6 +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light{ + dir = 1 }, -/obj/item/gun/energy/laser{ - pixel_y = 3 - }, -/turf/open/floor/pod/light, +/turf/open/floor/wood, /area/shuttle/pirate) -"bm" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/pod/dark, -/area/shuttle/pirate) -"bo" = ( -/obj/machinery/light/small{ +"cs" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ dir = 4 }, -/obj/structure/sign/warning/vacuum/external{ - pixel_x = 32 - }, -/turf/open/floor/plating, +/turf/open/floor/wood, /area/shuttle/pirate) -"br" = ( +"ct" = ( +/obj/structure/mirror{ + pixel_y = 32 + }, +/obj/structure/sink{ + pixel_y = 24 + }, +/obj/structure/curtain, +/obj/machinery/shower{ + dir = 1 + }, +/obj/effect/turf_decal/box, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/pod/dark, +/area/shuttle/pirate) +"cu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/obj/structure/closet/crate/large, +/obj/machinery/jukebox{ + desc = "Formally known as the SSDD, the Space Shanty Delivery Device is employed by various rings of the piracy scene for its capability of raising crew morale with its inspiring tunes. Unfortunately, this one doesn't seem as if it has many records pertaining to its designated topic on hand."; + name = "\improper Space Shanty Delivery Device"; + req_one_access = null + }, +/obj/item/clothing/head/collectable/pirate{ + pixel_x = 1; + pixel_y = 4 + }, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/pirate) +"cv" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/wood, +/area/shuttle/pirate) +"cw" = ( +/obj/structure/chair/wood/normal{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/shuttle/pirate) +"cx" = ( /obj/structure/table/wood, /obj/item/storage/box/matches, /obj/item/reagent_containers/food/drinks/bottle/rum{ @@ -627,244 +1474,358 @@ }, /obj/item/clothing/mask/cigarette/cigar, /obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line, /turf/open/floor/wood, /area/shuttle/pirate) -"bt" = ( +"cy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -24 + }, +/turf/open/floor/wood, +/area/shuttle/pirate) +"cz" = ( +/obj/effect/mob_spawn/human/pirate{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/shuttle/pirate) +"cA" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/shuttle/pirate) +"cB" = ( +/obj/structure/closet/secure_closet/personal, /obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/machinery/light/small{ - dir = 1 + dir = 8 }, +/obj/item/bedsheet/pirate, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/shuttle/pirate) +"cC" = ( +/obj/structure/closet/secure_closet/personal, +/obj/item/bedsheet/pirate, +/obj/effect/decal/cleanable/dirt, /obj/machinery/firealarm{ - pixel_y = 24 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/table, -/obj/item/melee/transforming/energy/sword/pirate{ - pixel_x = -1; - pixel_y = 6 - }, -/obj/item/melee/transforming/energy/sword/pirate{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/melee/transforming/energy/sword/pirate{ - pixel_x = 13; - pixel_y = 6 - }, -/turf/open/floor/pod/light, -/area/shuttle/pirate) -"bu" = ( -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/shuttle/pirate) -"bv" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/shuttle/pirate) -"bx" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/shuttle/pirate) -"by" = ( -/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/piratepad, -/turf/open/floor/pod/dark, -/area/shuttle/pirate) -"bA" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/pod/dark, -/area/shuttle/pirate) -"bB" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/shuttle/pirate) -"bC" = ( -/obj/machinery/airalarm/all_access{ dir = 8; pixel_x = 24 }, -/obj/machinery/light/small{ - dir = 4 +/obj/effect/turf_decal/stripes/corner{ + dir = 8 }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, +/turf/open/floor/wood, /area/shuttle/pirate) -"bF" = ( +"cD" = ( +/obj/machinery/suit_storage_unit/pirate, +/obj/effect/turf_decal/box, /obj/effect/decal/cleanable/dirt, -/obj/structure/table, -/obj/machinery/microwave{ - pixel_y = 5 - }, -/obj/item/book/manual/wiki/barman_recipes{ - pixel_x = -8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/shuttle/pirate) -"bH" = ( -/obj/machinery/vending/boozeomat, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/shuttle/pirate) -"bI" = ( -/obj/machinery/light/small, -/obj/machinery/computer/piratepad_control{ - dir = 1 - }, /turf/open/floor/pod/dark, /area/shuttle/pirate) -"bJ" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ +"cE" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 4 }, -/obj/effect/turf_decal/tile/neutral{ +/obj/effect/turf_decal/stripes/line{ dir = 8 }, -/turf/open/floor/plasteel, -/area/shuttle/pirate) -"bK" = ( +/obj/effect/turf_decal/stripes/white/corner, /obj/effect/decal/cleanable/dirt, -/obj/structure/sink{ +/obj/machinery/firealarm{ pixel_y = 24 }, -/obj/structure/toilet{ - dir = 8 - }, -/obj/machinery/light/small, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/plasteel/showroomfloor, +/turf/open/floor/pod/light, /area/shuttle/pirate) -"bM" = ( +"cF" = ( +/obj/structure/shuttle/engine/heater, +/obj/effect/spawner/structure/window/plastitanium/pirate, +/obj/structure/window/reinforced/tinted{ + layer = 3.1 + }, +/turf/open/floor/plating/airless, +/area/shuttle/pirate) +"cG" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/airlock{ - name = "Crew Cabin" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/shuttle/pirate) -"bO" = ( -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/machinery/power/apc{ - dir = 1; - name = "Pirate Corvette APC"; - pixel_y = 23; - req_access = null - }, -/obj/structure/reagent_dispensers/watertank, -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/shuttle/pirate) -"bP" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/shuttle/pirate) -"bQ" = ( -/obj/structure/cable{ +/obj/structure/cable/yellow{ icon_state = "1-2" }, +/obj/machinery/door/airlock/hatch{ + aiDisabledIdScanner = 1; + name = "Engineering"; + req_access_txt = "150" + }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, +/obj/machinery/door/firedoor, +/turf/open/floor/pod/dark, /area/shuttle/pirate) -"bX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/power/terminal{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/structure/rack, +"cH" = ( +/obj/item/storage/box/lights/bulbs, /obj/item/storage/toolbox/mechanical{ pixel_y = 4 }, +/obj/item/multitool, +/obj/item/storage/belt/utility{ + pixel_x = 2; + pixel_y = -4 + }, /obj/item/flashlight{ pixel_x = 3; pixel_y = 3 }, -/obj/item/storage/box/lights/bulbs, /obj/item/stack/sheet/mineral/plasma{ amount = 10 }, -/obj/item/multitool, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/shuttle/pirate) -"bZ" = ( -/obj/machinery/door/airlock/external/glass{ - id_tag = "piratestarboardexternal" - }, -/obj/effect/mapping_helpers/airlock/locked, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/structure/rack, +/obj/effect/turf_decal/bot, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, +/turf/open/floor/pod/light, /area/shuttle/pirate) -"ce" = ( -/obj/machinery/door/airlock/external/glass{ - id_tag = "piratestarboardexternal" +"cI" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes/line, +/obj/structure/tank_dispenser/oxygen, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/pirate) +"cJ" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/dark, +/area/shuttle/pirate) +"cK" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/mineral/plastitanium/red, +/area/shuttle/pirate) +"cL" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" }, -/obj/effect/mapping_helpers/airlock/locked, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ +/obj/effect/turf_decal/stripes/white/line, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/manifold/supply/visible, +/turf/open/floor/pod/light, +/area/shuttle/pirate) +"cM" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/light, +/area/shuttle/pirate) +"cN" = ( +/obj/machinery/meter, +/obj/effect/turf_decal/stripes/white/corner{ dir = 1 }, +/obj/machinery/airalarm/all_access{ + pixel_y = 24 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/visible{ + dir = 10 + }, +/turf/open/floor/pod/light, +/area/shuttle/pirate) +"cO" = ( +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 1; + target_pressure = 405.3 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/light, +/area/shuttle/pirate) +"cP" = ( +/obj/item/crowbar, +/obj/effect/decal/cleanable/oil, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/visible{ + dir = 6 + }, +/turf/open/floor/pod/light, +/area/shuttle/pirate) +"cQ" = ( +/obj/machinery/power/smes/engineering{ + charge = 1e+006 + }, +/obj/structure/cable/yellow, +/obj/effect/turf_decal/stripes/white/full, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/airless, +/area/shuttle/pirate) +"cR" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/mineral/plastitanium/red, +/area/shuttle/pirate) +"cS" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/airalarm/all_access{ + dir = 8; + pixel_x = 24 + }, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/mineral/plastitanium/red, +/area/shuttle/pirate) +"cT" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light, +/turf/open/floor/pod/dark, +/area/shuttle/pirate) +"cU" = ( +/obj/effect/decal/cleanable/oil, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/poster/official/wtf_is_co2{ + pixel_x = -32; + pixel_y = -32 + }, +/turf/open/floor/mineral/plastitanium/red, +/area/shuttle/pirate) +"cV" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/white/corner{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/visible{ + dir = 6 + }, +/turf/open/floor/pod/light, +/area/shuttle/pirate) +"cW" = ( +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/machinery/power/terminal{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/visible{ + dir = 4 + }, +/turf/open/floor/pod/light, +/area/shuttle/pirate) +"cX" = ( +/obj/machinery/meter, +/obj/effect/turf_decal/stripes/white/corner{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/manifold4w/supply/visible, +/turf/open/floor/pod/light, +/area/shuttle/pirate) +"cY" = ( +/obj/effect/decal/cleanable/vomit/old, +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/crate/large, +/obj/machinery/atmospherics/pipe/manifold/supply/visible{ + dir = 4 + }, +/turf/open/floor/pod/light, +/area/shuttle/pirate) +"cZ" = ( +/obj/structure/sign/warning/vacuum/external, +/turf/closed/wall/r_wall/syndicate/pirate/nodiagonal, +/area/shuttle/pirate) +"da" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/structure/chair/comfy/shuttle{ + dir = 4 + }, +/obj/effect/decal/cleanable/vomit/old, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/mineral/plastitanium/red, +/area/shuttle/pirate) +"db" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/mineral/plastitanium/red, +/area/shuttle/pirate) +"dc" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/turf/open/floor/pod/light, +/area/shuttle/pirate) +"dd" = ( +/obj/machinery/power/port_gen/pacman{ + anchored = 1 + }, +/obj/structure/cable, +/obj/item/wrench, +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/light, +/area/shuttle/pirate) +"de" = ( +/obj/machinery/atmospherics/components/unary/tank/air{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/light, +/area/shuttle/pirate) +"df" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/heater/on{ + dir = 1 + }, +/obj/effect/turf_decal/box, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/light, +/area/shuttle/pirate) +"dg" = ( /obj/docking_port/mobile/pirate{ dwidth = 11; height = 16; @@ -882,322 +1843,71 @@ width = 17 }, /obj/structure/fans/tiny, -/turf/open/floor/plating, +/obj/machinery/door/poddoor/shutters{ + id = "cuttereva"; + name = "EVA Shutters" + }, +/obj/machinery/button/door{ + id = "cuttereva"; + name = "EVA Shutters"; + pixel_x = 26; + req_access_txt = "150" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/wooden/crude{ + layer = 3.13 + }, +/turf/open/floor/pod/dark, /area/shuttle/pirate) -"db" = ( -/obj/structure/shuttle/engine/heater, -/obj/effect/spawner/structure/window/plastitanium/pirate, -/turf/open/floor/plating/airless, +"dh" = ( +/obj/machinery/door/airlock/external/glass{ + id_tag = "piratestarboardexternal"; + name = "EVA Airlock" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/firedoor, +/obj/structure/barricade/wooden/crude{ + layer = 3.13 + }, +/turf/open/floor/pod/dark, /area/shuttle/pirate) -"df" = ( +"di" = ( /obj/machinery/porta_turret/syndicate/energy/pirate{ - dir = 4; faction = list("pirate"); icon_state = "standard_lethal" }, /turf/closed/wall/r_wall/syndicate/pirate, -/area/shuttle/pirate) -"dy" = ( -/obj/structure/chair/wood/normal, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/shuttle/pirate) -"dU" = ( -/obj/machinery/light/small{ - 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/shuttle/pirate) -"ek" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/decal/cleanable/dirt, -/obj/structure/table, -/obj/structure/sign/poster/contraband/revolver{ - pixel_x = 32 - }, -/obj/item/storage/backpack/duffelbag/syndie/x4{ - pixel_y = 8 - }, -/obj/item/grenade/smokebomb{ - pixel_x = -5 - }, -/obj/item/grenade/smokebomb{ - pixel_x = 5 - }, -/obj/item/pickaxe/drill/diamonddrill, -/obj/item/pickaxe/drill/diamonddrill, -/obj/item/pickaxe/drill/diamonddrill, -/turf/open/floor/pod/light, -/area/shuttle/pirate) -"ep" = ( -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/obj/structure/shuttle/engine/heater, -/turf/open/floor/plating/airless, -/area/shuttle/pirate) -"er" = ( +/area/template_noop) +"dp" = ( /obj/structure/shuttle/engine/propulsion/right, -/turf/open/floor/plating/airless, +/turf/closed/wall/r_wall/syndicate/pirate/nodiagonal, /area/shuttle/pirate) -"et" = ( -/obj/structure/grille, -/turf/open/floor/plating/airless, -/area/shuttle/pirate) -"eu" = ( -/obj/structure/girder, -/obj/item/stack/rods{ - amount = 3 - }, -/turf/open/floor/plating/airless, -/area/shuttle/pirate) -"ew" = ( -/obj/structure/girder, -/obj/item/stack/rods{ - amount = 5 - }, -/turf/open/floor/plating/airless, -/area/shuttle/pirate) -"ex" = ( -/obj/structure/window/reinforced, -/obj/structure/frame/machine, -/obj/item/wrench, -/turf/open/floor/plating/airless, -/area/shuttle/pirate) -"ey" = ( -/obj/machinery/door/poddoor/shutters/preopen{ - id = "piratebridge" - }, -/obj/structure/grille, -/obj/structure/window/plastitanium/pirate, -/turf/open/floor/plating, -/area/shuttle/pirate) -"ez" = ( -/obj/structure/window/reinforced, -/obj/structure/frame/machine, -/obj/item/stack/cable_coil/cut/red, -/turf/open/floor/plating/airless, -/area/shuttle/pirate) -"eA" = ( -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/obj/structure/frame/computer{ - anchored = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/dark, -/area/shuttle/pirate) -"eE" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/shuttle/pirate) -"fW" = ( -/turf/closed/wall/r_wall/syndicate/pirate, -/area/shuttle/pirate) -"fY" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/open/floor/pod/dark, -/area/shuttle/pirate) -"gY" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/dark, -/area/shuttle/pirate) -"km" = ( -/obj/machinery/atmospherics/components/unary/tank/air, -/obj/effect/turf_decal/bot, -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/shuttle/pirate) -"mU" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/airlock/engineering{ - name = "Engineering" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/dark, -/area/shuttle/pirate) -"np" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/effect/turf_decal/bot, -/obj/machinery/airalarm/all_access{ - pixel_y = 24 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/shuttle/pirate) -"vB" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/rack{ - dir = 8; - layer = 2.9 - }, -/obj/item/storage/box/lethalshot, -/obj/item/gun/ballistic/shotgun/automatic/combat{ - pixel_x = -2; - pixel_y = 2 - }, -/turf/open/floor/pod/light, -/area/shuttle/pirate) -"wf" = ( -/obj/machinery/door/airlock{ - name = "Unisex Restrooms" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/shuttle/pirate) -"wR" = ( -/obj/machinery/porta_turret/syndicate/energy/pirate{ - dir = 8; - faction = list("pirate"); - icon_state = "standard_lethal" - }, -/turf/closed/wall/r_wall/syndicate/pirate, -/area/shuttle/pirate) -"yi" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/airlock/hatch{ - name = "Armory Access" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/dark, -/area/shuttle/pirate) -"zw" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/airlock{ - name = "Captain's Quarters" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/shuttle/pirate) -"Gk" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/suit_storage_unit/pirate, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/shuttle/pirate) -"JT" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/crate, -/obj/item/storage/bag/money/vault, -/obj/item/stack/sheet/mineral/gold{ - amount = 3; - pixel_x = -2; - pixel_y = 2 - }, -/obj/item/stack/sheet/mineral/silver{ - amount = 8; - pixel_x = 2; - pixel_y = -1 - }, -/turf/open/floor/pod/light, -/area/shuttle/pirate) -"Oe" = ( -/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/shuttle/pirate) -"OD" = ( -/obj/machinery/airalarm/all_access{ - pixel_y = 24 - }, -/obj/structure/sign/poster/contraband/random{ - 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/shuttle/pirate) -"OL" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/shuttle/pirate) -"RY" = ( -/obj/effect/mob_spawn/human/pirate/captain{ - dir = 4 - }, -/obj/machinery/airalarm/all_access{ - pixel_y = 24 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/poster/contraband/random{ - pixel_x = -32 - }, -/turf/open/floor/wood, +"dq" = ( +/obj/structure/shuttle/engine/propulsion/left, +/turf/closed/wall/r_wall/syndicate/pirate/nodiagonal, /area/shuttle/pirate) (1,1,1) = {" af af af -fW +af +af +af +af +aA aj aj aj aj aj aj -aj -wR +aA +af +af af af af @@ -1205,56 +1915,71 @@ af "} (2,1,1) = {" af -et -eu -ex -eA -aa -ap -aw -ak -bF +af +af +ae aj aj aj -fW +aj +aR +aY +bp +bH +aj +ce +aj +aj +aj +ae +af af af "} (3,1,1) = {" -aQ +af +ab +ac +ag +ai +al +as +aB +aS +aZ +bq +bI aj -aj -aj -aj -aj -aj -ax -aq -ar -aj -RY -aA -ep -aH +cf +cy +cF +ck +ck +cp +af af "} (4,1,1) = {" -af -af -af -af -af -af -ey -ay -Oe -OL -zw -dy +aa +aj +aj +aj +aj +am +aj +aC +aB +aS br -ep -er +bJ +bV +cg +cv +cF +ck +ck +ck +af af "} (5,1,1) = {" @@ -1262,162 +1987,207 @@ af af af af +ae +aj +aj +aD +aB +ba +bs +bK +aj +ch +cw +cF +ck +ck +ck af af -aj -az -bx -bH -aj -aj -aj -aj -aj -aR "} (6,1,1) = {" af af af -ey -ey -aj -aj -aj -yi -aj -aj -Gk +af +af +af +at +aE aS -aF -aI -aJ +bb +bt +bK +aj +ci +cx +aj +aj +aj +aj +af +af "} (7,1,1) = {" af af -ey -ey -aC -aW -aj -bg -gY -JT -aj -km -aN +af +af +af +af aj aj aj +aj +aj +bL +aj +aj +aj +aj +cJ +cT +aj +aj +di "} (8,1,1) = {" af af -ey -ab -ae -bf +af +af +af +ak aj -bl -fY -ai -aU -be -aD -aG -db -aH +aF +aj +bc +bu +bM +bW +cu +aj +cD +cK +cU +cD +cF +dp "} (9,1,1) = {" af af -ey -ac -ag -am +af +af +ak +ak au -bm -by -bm -mU -aL -bP +aG +aj +bd +bv +bM bX -db -aK +cj +aj +cE +cM +cV +dc +cF +dq "} (10,1,1) = {" af af -ey -ad -ah +af +af +ak an +av +aH aj -bt -gY -bI -aj -bO -bQ -bk -db -er +be +bw +bN +bY +bY +cG +cL +cQ +cW +dd +cF +dp "} (11,1,1) = {" af af -ey -ey -al -aB -aj -ek -bA -vB -aj -np -aO -aj +af +af +ak +ao +aw +aI +aT +bf +bx +bO +bZ aj aj +cN +cO +cX +de +cF +dq "} (12,1,1) = {" af af af -ey -ey +af +ak +ap +ax +aJ aj +bg +by +bP +ca +cl aj -aj -yi -aj -aj -Gk -aS -bZ -bo -ce +cH +cP +cY +df +cF +dp "} (13,1,1) = {" af af af af -af -af +ak +ak +ay +aK aj -as -bB -at +bh +bz +bQ +cb +cm aj aj +dh +cZ aj -aj -aj -aR +cF +dq "} (14,1,1) = {" af @@ -1425,51 +2195,66 @@ af af af af -af -ey -eE -bC -bJ -bM -dU -aV -ep -aH -af +ak +aj +aL +aj +bi +bA +aj +cc +cn +aj +cI +cR +da +aj +aj +di "} (15,1,1) = {" -aQ +af +af +af +af +af +af +aj +aj +aj +bj +bB aj aj aj aj aj -aj -bu -aj -wf -aj -OD -aV -ep -er +cS +db +dg +af af "} (16,1,1) = {" af -et -ew -ez -eA -ao -av -bv +af +af +af +af +af +at +aM +aU +bk +bC +bR +aj +co +cz aj -bK aj aj aj -fW af af "} @@ -1477,15 +2262,112 @@ af af af af -fW +af +ae +aj +aj +aN +aV +bl +bD +bS +cd +cq +cA +cF +ck +ck +cp +af +af +"} +(18,1,1) = {" +aa +aj +aj +aj +aj +aq +aj +aO +aW +bm +bE +bF +aj +cr +cB +cF +ck +ck +ck +af +af +"} +(19,1,1) = {" +af +ab +ad +ah +ai +ar +az +aP +aP +bn +bF +bT +aj +cs +cC +cF +ck +ck +ck +af +af +"} +(20,1,1) = {" +af +af +af +ae +aj +aj +aj +aj +aX +bo +bG +bU +aj +ct +aj +aj +aj +ae +af +af +af +"} +(21,1,1) = {" +af +af +af +af +af +af +af +aQ aj aj aj aj aj aj -aj -df +aQ +af +af af af af diff --git a/code/game/objects/items/cards_ids.dm b/code/game/objects/items/cards_ids.dm index 7d2b0ed832..3cceb56796 100644 --- a/code/game/objects/items/cards_ids.dm +++ b/code/game/objects/items/cards_ids.dm @@ -553,6 +553,10 @@ /obj/item/card/id/syndicate/locked_banking bank_support = ID_LOCKED_BANK_ACCOUNT +/obj/item/card/id/pirate + access = list(ACCESS_SYNDICATE) + + /obj/item/card/id/captains_spare name = "captain's spare ID" desc = "The spare ID of the High Lord himself." diff --git a/code/modules/clothing/outfits/standard.dm b/code/modules/clothing/outfits/standard.dm index afe74de6a0..8091ce331b 100644 --- a/code/modules/clothing/outfits/standard.dm +++ b/code/modules/clothing/outfits/standard.dm @@ -89,10 +89,8 @@ /datum/outfit/pirate/space suit = /obj/item/clothing/suit/space/pirate head = /obj/item/clothing/head/helmet/space/pirate/bandana - mask = /obj/item/clothing/mask/breath - suit_store = /obj/item/tank/internals/oxygen ears = /obj/item/radio/headset/syndicate - id = /obj/item/card/id + id = /obj/item/card/id/pirate /datum/outfit/pirate/space/captain head = /obj/item/clothing/head/helmet/space/pirate diff --git a/code/modules/events/pirates.dm b/code/modules/events/pirates.dm index 388a4fdac0..88f6aa931b 100644 --- a/code/modules/events/pirates.dm +++ b/code/modules/events/pirates.dm @@ -224,11 +224,7 @@ rechargeTime = 3 MINUTES /obj/machinery/suit_storage_unit/pirate - suit_type = /obj/item/clothing/suit/space - helmet_type = /obj/item/clothing/head/helmet/space - mask_type = /obj/item/clothing/mask/breath - storage_type = /obj/item/tank/jetpack/void - // storage_type = /obj/item/tank/internals/oxygen + storage_type = /obj/item/tank/jetpack/carbondioxide /obj/machinery/loot_locator name = "Booty Locator" diff --git a/code/modules/reagents/reagent_containers/bottle.dm b/code/modules/reagents/reagent_containers/bottle.dm index 5d68d00200..26325f2713 100644 --- a/code/modules/reagents/reagent_containers/bottle.dm +++ b/code/modules/reagents/reagent_containers/bottle.dm @@ -44,6 +44,26 @@ desc = "A small bottle. Contains epinephrine - used to stabilize patients." list_reagents = list(/datum/reagent/medicine/epinephrine = 30) +/obj/item/reagent_containers/glass/bottle/bicaridine + name = "bicaridine bottle" + desc = "A small bottle. Contains bicaridine - used to treat brute damage." + list_reagents = list(/datum/reagent/medicine/bicaridine = 30) + +/obj/item/reagent_containers/glass/bottle/kelotane + name = "kelotane bottle" + desc = "A small bottle. Contains kelotane - used to treat burn damage." + list_reagents = list(/datum/reagent/medicine/kelotane = 30) + +/obj/item/reagent_containers/glass/bottle/antitoxin + name = "anti-toxin bottle" + desc = "A small bottle. Contains bicardine - used to treat minor poisoning." + list_reagents = list(/datum/reagent/medicine/antitoxin = 30) + +/obj/item/reagent_containers/glass/bottle/dexalin + name = "dexalin bottle" + desc = "A small bottle. Contains dexalin - used to treat minor suffocation." + list_reagents = list(/datum/reagent/medicine/dexalin = 30) + /obj/item/reagent_containers/glass/bottle/toxin name = "toxin bottle" desc = "A small bottle of toxins. Do not drink, it is poisonous." diff --git a/icons/obj/decals.dmi b/icons/obj/decals.dmi index 7dac61a66319f0b1956c016c565b5cc5431d5d10..892f974afdea653325d5c0d40f852d4afba8bd4e 100644 GIT binary patch literal 35210 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 IEWG0X1~0@4iU0rr From b1c20269a66c8716cbbe46cc1ba8b78c449ed815 Mon Sep 17 00:00:00 2001 From: zerothebigboy Date: Wed, 5 May 2021 03:38:14 -0400 Subject: [PATCH 113/259] he'sstillafurry --- code/modules/reagents/reagent_containers/bottle.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/reagents/reagent_containers/bottle.dm b/code/modules/reagents/reagent_containers/bottle.dm index 26325f2713..be8c7fac36 100644 --- a/code/modules/reagents/reagent_containers/bottle.dm +++ b/code/modules/reagents/reagent_containers/bottle.dm @@ -56,7 +56,7 @@ /obj/item/reagent_containers/glass/bottle/antitoxin name = "anti-toxin bottle" - desc = "A small bottle. Contains bicardine - used to treat minor poisoning." + desc = "A small bottle. Contains anti-toxin - used to treat minor poisoning." list_reagents = list(/datum/reagent/medicine/antitoxin = 30) /obj/item/reagent_containers/glass/bottle/dexalin From e87e71c6c8cc879be0a0ecab89b5a639b3578af9 Mon Sep 17 00:00:00 2001 From: zerothebigboy Date: Wed, 5 May 2021 05:53:57 -0400 Subject: [PATCH 114/259] i'mcryingi'mcrying --- _maps/shuttles/pirate_default.dmm | 163 ++++++++++++++++++------------ 1 file changed, 100 insertions(+), 63 deletions(-) diff --git a/_maps/shuttles/pirate_default.dmm b/_maps/shuttles/pirate_default.dmm index 0d37e7fde0..fcffbf0fa2 100644 --- a/_maps/shuttles/pirate_default.dmm +++ b/_maps/shuttles/pirate_default.dmm @@ -407,7 +407,6 @@ "aN" = ( /obj/structure/table/optable, /obj/effect/decal/cleanable/blood/old, -/obj/effect/turf_decal/bot, /obj/effect/decal/cleanable/robot_debris{ layer = 2.81; pixel_x = -2; @@ -420,6 +419,7 @@ /obj/machinery/light{ dir = 1 }, +/obj/effect/turf_decal/bot_white, /turf/open/floor/mineral/plastitanium, /area/shuttle/pirate) "aO" = ( @@ -438,18 +438,18 @@ pixel_y = -4 }, /obj/effect/decal/cleanable/glass, -/obj/effect/turf_decal/bot, /obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot_white, /turf/open/floor/mineral/plastitanium, /area/shuttle/pirate) "aP" = ( -/obj/effect/turf_decal/stripes/white/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/white/line{ +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ dir = 8 }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, /turf/open/floor/mineral/plastitanium/red, /area/shuttle/pirate) "aQ" = ( @@ -558,9 +558,9 @@ pixel_x = 6; pixel_y = 6 }, -/obj/effect/turf_decal/bot, /obj/effect/decal/cleanable/glass, /obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot_white, /turf/open/floor/pod/dark, /area/shuttle/pirate) "aW" = ( @@ -578,12 +578,12 @@ }, /obj/structure/curtain, /obj/effect/decal/cleanable/blood/old, -/obj/effect/turf_decal/box, /obj/structure/window/reinforced{ dir = 1; pixel_y = 1 }, /obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/box/white, /turf/open/floor/pod/dark, /area/shuttle/pirate) "aX" = ( @@ -774,36 +774,36 @@ pixel_x = -32; pixel_y = 32 }, -/obj/effect/turf_decal/stripes/white/line{ +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ dir = 1 }, -/obj/effect/decal/cleanable/dirt, /turf/open/floor/mineral/plastitanium/red, /area/shuttle/pirate) "bl" = ( -/obj/effect/turf_decal/stripes/white/line{ +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ dir = 1 }, -/obj/effect/decal/cleanable/dirt, /turf/open/floor/mineral/plastitanium/red, /area/shuttle/pirate) "bm" = ( -/obj/effect/turf_decal/stripes/white/line{ - dir = 1 - }, /obj/effect/decal/cleanable/vomit/old, /obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, /turf/open/floor/mineral/plastitanium/red, /area/shuttle/pirate) "bn" = ( -/obj/effect/turf_decal/stripes/white/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/white/corner{ - dir = 4 - }, /obj/effect/decal/cleanable/blood/old, /obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, /turf/open/floor/mineral/plastitanium/red, /area/shuttle/pirate) "bo" = ( @@ -946,29 +946,29 @@ /turf/open/floor/pod/dark, /area/shuttle/pirate) "bC" = ( -/obj/effect/turf_decal/stripes/white/line, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line, /turf/open/floor/mineral/plastitanium/red, /area/shuttle/pirate) "bD" = ( -/obj/effect/turf_decal/stripes/white/corner{ - dir = 1 - }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 1 }, /obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, /turf/open/floor/mineral/plastitanium/red, /area/shuttle/pirate) "bE" = ( -/obj/effect/turf_decal/stripes/white/corner, /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 8 }, /obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/corner, /turf/open/floor/mineral/plastitanium/red, /area/shuttle/pirate) "bF" = ( @@ -976,6 +976,9 @@ dir = 9 }, /obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, /turf/open/floor/mineral/plastitanium/red, /area/shuttle/pirate) "bG" = ( @@ -1106,12 +1109,12 @@ /turf/open/floor/pod/dark, /area/shuttle/pirate) "bS" = ( -/obj/effect/turf_decal/stripes/white/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/white/corner, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner, /turf/open/floor/mineral/plastitanium/red, /area/shuttle/pirate) "bT" = ( @@ -1336,18 +1339,39 @@ /obj/item/stack/sheet/mineral/plastitanium{ amount = 20 }, -/obj/item/stack/cable_coil/yellow, -/obj/item/storage/backpack, +/obj/item/stack/cable_coil/yellow{ + pixel_x = -2; + pixel_y = 2 + }, /obj/effect/decal/cleanable/dirt, +/obj/item/stack/cable_coil/yellow{ + pixel_x = 2; + pixel_y = -2 + }, /turf/open/floor/mineral/plastitanium, /area/shuttle/pirate) "cm" = ( /obj/structure/table/reinforced, /obj/item/pickaxe, -/obj/item/flashlight/seclite, -/obj/item/extinguisher/mini, -/obj/item/storage/backpack, /obj/effect/decal/cleanable/dirt, +/obj/item/pickaxe{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/extinguisher/mini{ + pixel_x = 4 + }, +/obj/item/extinguisher/mini{ + pixel_x = -2; + pixel_y = 2 + }, +/obj/item/flashlight/seclite{ + pixel_x = -12; + pixel_y = 6 + }, +/obj/item/flashlight/seclite{ + pixel_x = -10 + }, /turf/open/floor/mineral/plastitanium, /area/shuttle/pirate) "cn" = ( @@ -1381,6 +1405,7 @@ /obj/structure/sign/poster/contraband/random{ pixel_x = -32 }, +/obj/effect/turf_decal/box/red, /turf/open/floor/plasteel/dark, /area/shuttle/pirate) "cp" = ( @@ -1391,12 +1416,12 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/blood/old, +/obj/effect/turf_decal/stripes/red/line{ + dir = 4 + }, /turf/open/floor/plasteel/dark, /area/shuttle/pirate) "cr" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, /obj/machinery/airalarm/all_access{ pixel_y = 24 }, @@ -1407,13 +1432,6 @@ }, /turf/open/floor/wood, /area/shuttle/pirate) -"cs" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/wood, -/area/shuttle/pirate) "ct" = ( /obj/structure/mirror{ pixel_y = 32 @@ -1425,9 +1443,9 @@ /obj/machinery/shower{ dir = 1 }, -/obj/effect/turf_decal/box, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/blood/old, +/obj/effect/turf_decal/box/white, /turf/open/floor/pod/dark, /area/shuttle/pirate) "cu" = ( @@ -1489,6 +1507,7 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/box/red, /turf/open/floor/plasteel/dark, /area/shuttle/pirate) "cA" = ( @@ -1496,13 +1515,13 @@ dir = 1 }, /obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/red/line{ + dir = 4 + }, /turf/open/floor/plasteel/dark, /area/shuttle/pirate) "cB" = ( /obj/structure/closet/secure_closet/personal, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, /obj/item/bedsheet/pirate, /obj/effect/decal/cleanable/dirt, /turf/open/floor/wood, @@ -1515,9 +1534,6 @@ dir = 8; pixel_x = 24 }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, /turf/open/floor/wood, /area/shuttle/pirate) "cD" = ( @@ -1882,12 +1898,33 @@ /turf/closed/wall/r_wall/syndicate/pirate, /area/template_noop) "dp" = ( -/obj/structure/shuttle/engine/propulsion/right, -/turf/closed/wall/r_wall/syndicate/pirate/nodiagonal, +/obj/machinery/porta_turret/syndicate/energy/pirate{ + faction = list("pirate"); + icon_state = "standard_lethal" + }, +/turf/closed/wall/r_wall/syndicate/pirate, /area/shuttle/pirate) "dq" = ( /obj/structure/shuttle/engine/propulsion/left, -/turf/closed/wall/r_wall/syndicate/pirate/nodiagonal, +/turf/open/space/basic, +/area/shuttle/pirate) +"sP" = ( +/obj/structure/shuttle/engine/propulsion/right, +/turf/open/space/basic, +/area/shuttle/pirate) +"vO" = ( +/turf/open/space/basic, +/area/template_noop) +"BD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/mineral/plastitanium/red, +/area/shuttle/pirate) +"Oh" = ( +/obj/structure/shuttle/engine/propulsion, +/turf/open/space/basic, /area/shuttle/pirate) (1,1,1) = {" @@ -2049,7 +2086,7 @@ cJ cT aj aj -di +vO "} (8,1,1) = {" af @@ -2071,7 +2108,7 @@ cD cK cU cD -cF +aj dp "} (9,1,1) = {" @@ -2118,7 +2155,7 @@ cQ cW dd cF -dp +sP "} (11,1,1) = {" af @@ -2141,7 +2178,7 @@ cO cX de cF -dq +Oh "} (12,1,1) = {" af @@ -2164,7 +2201,7 @@ cP cY df cF -dp +sP "} (13,1,1) = {" af @@ -2315,10 +2352,10 @@ az aP aP bn -bF +BD bT aj -cs +cf cC cF ck From f4af7bb28fe457733b567c7de040273a40b6330a Mon Sep 17 00:00:00 2001 From: zerothebigboy Date: Wed, 5 May 2021 06:39:21 -0400 Subject: [PATCH 115/259] ihatetheantichrist --- _maps/shuttles/pirate_default.dmm | 1383 +++++++++++++++-------------- 1 file changed, 717 insertions(+), 666 deletions(-) diff --git a/_maps/shuttles/pirate_default.dmm b/_maps/shuttles/pirate_default.dmm index fcffbf0fa2..532f3b7697 100644 --- a/_maps/shuttles/pirate_default.dmm +++ b/_maps/shuttles/pirate_default.dmm @@ -5,7 +5,7 @@ faction = list("pirate"); icon_state = "standard_lethal" }, -/turf/closed/wall/r_wall/syndicate/pirate/nodiagonal, +/turf/closed/wall/r_wall/syndicate/pirate, /area/shuttle/pirate) "ab" = ( /obj/structure/grille, @@ -92,36 +92,12 @@ /turf/open/floor/pod/dark, /area/shuttle/pirate) "an" = ( -/obj/machinery/recharger{ - pixel_x = -4; - pixel_y = 4 +/obj/machinery/porta_turret/syndicate/energy/pirate{ + dir = 4; + faction = list("pirate"); + icon_state = "standard_lethal" }, -/obj/structure/table/reinforced, -/obj/machinery/button/door{ - id = "cuttershutters"; - name = "Corvette Shutters Control"; - pixel_x = 6; - pixel_y = -3; - req_access_txt = "150" - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/mineral/plastitanium, -/area/shuttle/pirate) -"ao" = ( -/obj/machinery/computer/shuttle/pirate, -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/mineral/plastitanium, -/area/shuttle/pirate) -"ap" = ( -/obj/machinery/computer/security, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/stripes/corner, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/mineral/plastitanium, +/turf/closed/wall/r_wall/syndicate/pirate, /area/shuttle/pirate) "aq" = ( /obj/structure/rack, @@ -166,49 +142,24 @@ }, /turf/open/floor/plating, /area/shuttle/pirate) -"au" = ( -/obj/machinery/shuttle_scrambler, -/obj/item/radio/intercom{ - freerange = 1; - name = "Station Intercom (General)"; - pixel_x = -26 +"ay" = ( +/obj/machinery/recharger{ + pixel_x = -4; + pixel_y = 4 }, -/obj/effect/turf_decal/box, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/mineral/plastitanium, -/area/shuttle/pirate) -"av" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 +/obj/structure/table/reinforced, +/obj/machinery/button/door{ + id = "cuttershutters"; + name = "Corvette Shutters Control"; + pixel_x = 6; + pixel_y = -3; + req_access_txt = "150" }, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/mineral/plastitanium, -/area/shuttle/pirate) -"aw" = ( -/obj/structure/chair/comfy/shuttle{ +/obj/effect/turf_decal/stripes/corner{ dir = 1 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/mineral/plastitanium, -/area/shuttle/pirate) -"ax" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/mineral/plastitanium, -/area/shuttle/pirate) -"ay" = ( -/obj/machinery/loot_locator, -/obj/item/radio/intercom{ - dir = 4; - name = "Station Intercom (General)"; - pixel_x = 27 - }, -/obj/effect/turf_decal/box, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/mineral/plastitanium, +/turf/open/floor/pod/dark, /area/shuttle/pirate) "az" = ( /obj/machinery/door/airlock/hatch{ @@ -286,17 +237,12 @@ /turf/open/floor/plasteel, /area/shuttle/pirate) "aF" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/computer/camera_advanced/shuttle_docker/syndicate/pirate{ - dir = 4; - x_offset = -3; - y_offset = 7 +/obj/machinery/computer/shuttle/pirate{ + req_access_txt = "150" }, /obj/effect/turf_decal/bot, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/mineral/plastitanium, +/turf/open/floor/pod/dark, /area/shuttle/pirate) "aG" = ( /obj/structure/chair/comfy/shuttle{ @@ -373,18 +319,11 @@ /turf/open/floor/mineral/plastitanium/red, /area/shuttle/pirate) "aL" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/computer/monitor/secret{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, +/obj/machinery/computer/security, /obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes/corner, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/mineral/plastitanium, +/turf/open/floor/pod/dark, /area/shuttle/pirate) "aM" = ( /obj/structure/table/reinforced, @@ -453,12 +392,15 @@ /turf/open/floor/mineral/plastitanium/red, /area/shuttle/pirate) "aQ" = ( -/obj/machinery/porta_turret/syndicate/energy/pirate{ - dir = 4; - faction = list("pirate"); - icon_state = "standard_lethal" +/obj/machinery/shuttle_scrambler, +/obj/item/radio/intercom{ + freerange = 1; + name = "Station Intercom (General)"; + pixel_x = -26 }, -/turf/closed/wall/r_wall/syndicate/pirate, +/obj/effect/turf_decal/box, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/dark, /area/shuttle/pirate) "aR" = ( /obj/machinery/airalarm/all_access{ @@ -554,13 +496,11 @@ /turf/open/floor/pod/dark, /area/shuttle/pirate) "aV" = ( -/obj/item/shard{ - pixel_x = 6; - pixel_y = 6 +/obj/effect/turf_decal/stripes/line{ + dir = 8 }, -/obj/effect/decal/cleanable/glass, +/obj/effect/decal/cleanable/blood/old, /obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot_white, /turf/open/floor/pod/dark, /area/shuttle/pirate) "aW" = ( @@ -671,41 +611,29 @@ /turf/open/floor/plasteel, /area/shuttle/pirate) "bc" = ( -/obj/machinery/computer/piratepad_control{ - dir = 0 - }, -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/light, -/area/shuttle/pirate) -"bd" = ( -/obj/machinery/piratepad{ - pixel_y = 6 - }, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/box, -/obj/machinery/light{ +/obj/structure/chair/comfy/shuttle{ dir = 1 }, -/turf/open/floor/pod/light, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/dark, +/area/shuttle/pirate) +"bd" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/dark, /area/shuttle/pirate) "be" = ( -/obj/structure/closet/crate, -/obj/item/storage/bag/money/vault, -/obj/item/stack/sheet/mineral/gold{ - amount = 3; - pixel_x = -2; - pixel_y = 2 +/obj/machinery/loot_locator, +/obj/item/radio/intercom{ + dir = 4; + name = "Station Intercom (General)"; + pixel_x = 27 }, -/obj/item/stack/sheet/mineral/silver{ - amount = 8; - pixel_x = 2; - pixel_y = -1 - }, -/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/box, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/light, +/turf/open/floor/pod/dark, /area/shuttle/pirate) "bf" = ( /obj/effect/turf_decal/stripes/line{ @@ -817,16 +745,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/pod/dark, /area/shuttle/pirate) -"bp" = ( -/obj/machinery/vending/dinnerware, -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -24 - }, -/turf/open/floor/plasteel/dark, -/area/shuttle/pirate) "bq" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on, /obj/effect/decal/cleanable/dirt, @@ -1053,26 +971,31 @@ /turf/open/floor/pod/dark, /area/shuttle/pirate) "bN" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 +/obj/machinery/light/small{ + dir = 8 }, -/obj/structure/cable/yellow{ - icon_state = "1-2" +/obj/machinery/computer/camera_advanced/shuttle_docker/syndicate/pirate{ + dir = 4; + x_offset = -3; + y_offset = 7 }, -/obj/effect/decal/cleanable/vomit/old, +/obj/effect/turf_decal/bot, /obj/effect/decal/cleanable/dirt, /turf/open/floor/pod/dark, /area/shuttle/pirate) "bO" = ( -/obj/effect/turf_decal/stripes/line{ +/obj/machinery/light/small{ dir = 4 }, -/obj/effect/turf_decal/stripes/line{ +/obj/machinery/computer/monitor/secret{ dir = 8 }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/effect/turf_decal/bot, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/mineral/plastitanium/red, +/turf/open/floor/pod/dark, /area/shuttle/pirate) "bP" = ( /obj/structure/table/reinforced, @@ -1194,54 +1117,27 @@ }, /turf/open/floor/pod/dark, /area/shuttle/pirate) -"bW" = ( -/obj/item/tank/internals/oxygen/yellow, -/obj/item/clothing/suit/space/syndicate/green/dark{ - pixel_x = 2; - pixel_y = -2 - }, -/obj/item/clothing/head/helmet/space/syndicate/green/dark{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/tank/jetpack/carbondioxide{ - pixel_x = -2; - pixel_y = -2 - }, -/obj/item/clothing/mask/breath, -/obj/structure/closet/crate/large, -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/mineral/plastitanium, -/area/shuttle/pirate) "bX" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/turf/open/floor/mineral/plastitanium, -/area/shuttle/pirate) -"bY" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" +/obj/item/shard{ + pixel_x = 6; + pixel_y = 6 }, +/obj/effect/decal/cleanable/glass, /obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot_white, +/obj/machinery/door/window/southleft{ + name = "Surgical Ward"; + req_access_txt = "150" + }, /turf/open/floor/pod/dark, /area/shuttle/pirate) "bZ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 +/obj/machinery/computer/piratepad_control{ + dir = 0 }, +/obj/effect/turf_decal/bot, /obj/effect/decal/cleanable/dirt, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/machinery/light, -/turf/open/floor/mineral/plastitanium/red, +/turf/open/floor/pod/dark, /area/shuttle/pirate) "ca" = ( /obj/effect/turf_decal/stripes/red/line{ @@ -1263,23 +1159,16 @@ /turf/open/floor/mineral/plastitanium, /area/shuttle/pirate) "cc" = ( -/obj/structure/table/reinforced, -/obj/machinery/recharger, -/obj/item/gun/energy/laser{ - pixel_x = -3; +/obj/machinery/piratepad{ pixel_y = 6 }, -/obj/item/gun/energy/laser{ - pixel_y = 3 - }, -/obj/item/gun/energy/laser{ - pixel_x = 2 - }, +/obj/effect/decal/cleanable/blood/old, /obj/effect/decal/cleanable/dirt, -/obj/structure/sign/poster/contraband/random{ - pixel_x = 32 +/obj/effect/turf_decal/box, +/obj/machinery/light{ + dir = 1 }, -/turf/open/floor/mineral/plastitanium, +/turf/open/floor/pod/dark, /area/shuttle/pirate) "cd" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -1318,99 +1207,89 @@ /turf/open/floor/wood, /area/shuttle/pirate) "ci" = ( -/obj/effect/mob_spawn/human/pirate/captain{ - dir = 8 +/obj/structure/closet/crate, +/obj/item/storage/bag/money/vault, +/obj/item/stack/sheet/mineral/gold{ + amount = 3; + pixel_x = -2; + pixel_y = 2 }, +/obj/item/stack/sheet/mineral/silver{ + amount = 8; + pixel_x = 2; + pixel_y = -1 + }, +/obj/effect/turf_decal/bot, /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/wood, +/turf/open/floor/pod/dark, /area/shuttle/pirate) "cj" = ( +/obj/machinery/vending/dinnerware, /obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/obj/structure/closet/crate/large, -/turf/open/floor/mineral/plastitanium, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -24 + }, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/plasteel/dark, /area/shuttle/pirate) "ck" = ( /turf/open/floor/plating/airless, /area/shuttle/pirate) "cl" = ( -/obj/structure/table/reinforced, -/obj/item/stack/sheet/mineral/plastitanium{ - amount = 20 +/obj/structure/cable/yellow{ + icon_state = "1-2" }, -/obj/item/stack/cable_coil/yellow{ - pixel_x = -2; - pixel_y = 2 +/obj/effect/decal/cleanable/vomit/old, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/pod/dark, +/area/shuttle/pirate) +"cm" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 }, /obj/effect/decal/cleanable/dirt, -/obj/item/stack/cable_coil/yellow{ +/obj/machinery/atmospherics/pipe/manifold4w/supply/visible, +/turf/open/floor/mineral/plastitanium/red, +/area/shuttle/pirate) +"cn" = ( +/obj/item/tank/internals/oxygen/yellow, +/obj/item/clothing/suit/space/syndicate/green/dark{ pixel_x = 2; pixel_y = -2 }, -/turf/open/floor/mineral/plastitanium, -/area/shuttle/pirate) -"cm" = ( -/obj/structure/table/reinforced, -/obj/item/pickaxe, -/obj/effect/decal/cleanable/dirt, -/obj/item/pickaxe{ - pixel_x = 6; - pixel_y = 6 +/obj/item/clothing/head/helmet/space/syndicate/green/dark{ + pixel_x = -4; + pixel_y = 4 }, -/obj/item/extinguisher/mini{ - pixel_x = 4 - }, -/obj/item/extinguisher/mini{ +/obj/item/tank/jetpack/carbondioxide{ pixel_x = -2; - pixel_y = 2 - }, -/obj/item/flashlight/seclite{ - pixel_x = -12; - pixel_y = 6 - }, -/obj/item/flashlight/seclite{ - pixel_x = -10 - }, -/turf/open/floor/mineral/plastitanium, -/area/shuttle/pirate) -"cn" = ( -/obj/structure/table/reinforced, -/obj/item/storage/box/lethalshot{ - pixel_y = 8 - }, -/obj/item/gun/ballistic/shotgun/automatic/combat{ - pixel_y = 16 - }, -/obj/item/melee/transforming/energy/sword/pirate{ - pixel_x = -1; - pixel_y = 0 - }, -/obj/item/melee/transforming/energy/sword/pirate{ - pixel_x = 6; - pixel_y = 0 - }, -/obj/item/melee/transforming/energy/sword/pirate{ - pixel_x = 13; - pixel_y = 0 + pixel_y = -2 }, +/obj/item/clothing/mask/breath, +/obj/structure/closet/crate/large, +/obj/effect/turf_decal/bot, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/mineral/plastitanium, +/turf/open/floor/pod/dark, /area/shuttle/pirate) "co" = ( -/obj/effect/mob_spawn/human/pirate{ - dir = 4 - }, +/obj/effect/decal/cleanable/blood/old, /obj/effect/decal/cleanable/dirt, -/obj/structure/sign/poster/contraband/random{ - pixel_x = -32 - }, -/obj/effect/turf_decal/box/red, -/turf/open/floor/plasteel/dark, +/obj/effect/turf_decal/bot, +/turf/open/floor/pod/dark, /area/shuttle/pirate) "cp" = ( -/obj/structure/shuttle/engine/huge, -/turf/open/floor/plating/airless, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/dark, /area/shuttle/pirate) "cq" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -1432,6 +1311,22 @@ }, /turf/open/floor/wood, /area/shuttle/pirate) +"cs" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/mineral/plastitanium/red, +/area/shuttle/pirate) "ct" = ( /obj/structure/mirror{ pixel_y = 32 @@ -1449,19 +1344,23 @@ /turf/open/floor/pod/dark, /area/shuttle/pirate) "cu" = ( +/obj/structure/table/reinforced, +/obj/machinery/recharger, +/obj/item/gun/energy/laser{ + pixel_x = -3; + pixel_y = 6 + }, +/obj/item/gun/energy/laser{ + pixel_y = 3 + }, +/obj/item/gun/energy/laser{ + pixel_x = 2 + }, /obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/obj/structure/closet/crate/large, -/obj/machinery/jukebox{ - desc = "Formally known as the SSDD, the Space Shanty Delivery Device is employed by various rings of the piracy scene for its capability of raising crew morale with its inspiring tunes. Unfortunately, this one doesn't seem as if it has many records pertaining to its designated topic on hand."; - name = "\improper Space Shanty Delivery Device"; - req_one_access = null +/obj/structure/sign/poster/contraband/random{ + pixel_x = 32 }, -/obj/item/clothing/head/collectable/pirate{ - pixel_x = 1; - pixel_y = 4 - }, -/turf/open/floor/mineral/plastitanium, +/turf/open/floor/pod/dark, /area/shuttle/pirate) "cv" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ @@ -1495,10 +1394,13 @@ /turf/open/floor/wood, /area/shuttle/pirate) "cy" = ( +/obj/effect/mob_spawn/human/pirate/captain{ + dir = 8 + }, /obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/old, /obj/machinery/firealarm{ - dir = 4; - pixel_x = -24 + pixel_y = 24 }, /turf/open/floor/wood, /area/shuttle/pirate) @@ -1527,14 +1429,19 @@ /turf/open/floor/wood, /area/shuttle/pirate) "cC" = ( -/obj/structure/closet/secure_closet/personal, -/obj/item/bedsheet/pirate, /obj/effect/decal/cleanable/dirt, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 24 +/obj/effect/turf_decal/bot, +/obj/structure/closet/crate/large, +/obj/machinery/jukebox{ + desc = "Formally known as the SSDD, the Space Shanty Delivery Device is employed by various rings of the piracy scene for its capability of raising crew morale with its inspiring tunes. Unfortunately, this one doesn't seem as if it has many records pertaining to its designated topic on hand."; + name = "\improper Space Shanty Delivery Device"; + req_one_access = null }, -/turf/open/floor/wood, +/obj/item/clothing/head/collectable/pirate{ + pixel_x = 1; + pixel_y = 4 + }, +/turf/open/floor/pod/dark, /area/shuttle/pirate) "cD" = ( /obj/machinery/suit_storage_unit/pirate, @@ -1543,18 +1450,11 @@ /turf/open/floor/pod/dark, /area/shuttle/pirate) "cE" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/white/corner, /obj/effect/decal/cleanable/dirt, -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/turf/open/floor/pod/light, +/obj/effect/turf_decal/bot, +/obj/structure/closet/crate/large, +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/pod/dark, /area/shuttle/pirate) "cF" = ( /obj/structure/shuttle/engine/heater, @@ -1566,6 +1466,110 @@ /area/shuttle/pirate) "cG" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall/r_wall/syndicate/pirate/nodiagonal, +/area/shuttle/pirate) +"cH" = ( +/obj/structure/table/reinforced, +/obj/item/stack/sheet/mineral/plastitanium{ + amount = 20 + }, +/obj/item/stack/cable_coil/yellow{ + pixel_x = -2; + pixel_y = 2 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/cable_coil/yellow{ + pixel_x = 2; + pixel_y = -2 + }, +/turf/open/floor/pod/dark, +/area/shuttle/pirate) +"cI" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes/line, +/obj/structure/tank_dispenser/oxygen, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/pirate) +"cJ" = ( +/obj/structure/table/reinforced, +/obj/item/pickaxe, +/obj/effect/decal/cleanable/dirt, +/obj/item/pickaxe{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/extinguisher/mini{ + pixel_x = 4 + }, +/obj/item/extinguisher/mini{ + pixel_x = -2; + pixel_y = 2 + }, +/obj/item/flashlight/seclite{ + pixel_x = -12; + pixel_y = 6 + }, +/obj/item/flashlight/seclite{ + pixel_x = -10 + }, +/turf/open/floor/pod/dark, +/area/shuttle/pirate) +"cK" = ( +/obj/structure/table/reinforced, +/obj/item/storage/box/lethalshot{ + pixel_y = 8 + }, +/obj/item/gun/ballistic/shotgun/automatic/combat{ + pixel_y = 16 + }, +/obj/item/melee/transforming/energy/sword/pirate{ + pixel_x = -1; + pixel_y = 0 + }, +/obj/item/melee/transforming/energy/sword/pirate{ + pixel_x = 6; + pixel_y = 0 + }, +/obj/item/melee/transforming/energy/sword/pirate{ + pixel_x = 13; + pixel_y = 0 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/dark, +/area/shuttle/pirate) +"cL" = ( +/obj/effect/mob_spawn/human/pirate{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/poster/contraband/random{ + pixel_x = -32 + }, +/obj/effect/turf_decal/box/red, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/turf/open/floor/plasteel/dark, +/area/shuttle/pirate) +"cM" = ( +/obj/structure/shuttle/engine/heater, +/obj/effect/spawner/structure/window/plastitanium/pirate, +/obj/structure/window/reinforced/tinted{ + layer = 3.1 + }, +/obj/structure/window/reinforced/tinted{ + dir = 4; + layer = 3.1 + }, +/turf/open/floor/plating/airless, +/area/shuttle/pirate) +"cN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/dresser, +/turf/open/floor/wood, +/area/shuttle/pirate) +"cO" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -1578,109 +1582,16 @@ /obj/machinery/door/firedoor, /turf/open/floor/pod/dark, /area/shuttle/pirate) -"cH" = ( -/obj/item/storage/box/lights/bulbs, -/obj/item/storage/toolbox/mechanical{ - pixel_y = 4 - }, -/obj/item/multitool, -/obj/item/storage/belt/utility{ - pixel_x = 2; - pixel_y = -4 - }, -/obj/item/flashlight{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/stack/sheet/mineral/plasma{ - amount = 10 - }, -/obj/structure/rack, -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/light, -/area/shuttle/pirate) -"cI" = ( -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/stripes/line, -/obj/structure/tank_dispenser/oxygen, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/mineral/plastitanium, -/area/shuttle/pirate) -"cJ" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/dark, -/area/shuttle/pirate) -"cK" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/mineral/plastitanium/red, -/area/shuttle/pirate) -"cL" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/stripes/white/line, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/manifold/supply/visible, -/turf/open/floor/pod/light, -/area/shuttle/pirate) -"cM" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/white/line{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/light, -/area/shuttle/pirate) -"cN" = ( -/obj/machinery/meter, -/obj/effect/turf_decal/stripes/white/corner{ - dir = 1 - }, -/obj/machinery/airalarm/all_access{ - pixel_y = 24 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/visible{ - dir = 10 - }, -/turf/open/floor/pod/light, -/area/shuttle/pirate) -"cO" = ( -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 1; - target_pressure = 405.3 - }, -/obj/effect/turf_decal/stripes/white/line{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/light, -/area/shuttle/pirate) "cP" = ( -/obj/item/crowbar, -/obj/effect/decal/cleanable/oil, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/visible{ - dir = 6 +/obj/structure/shuttle/engine/heater, +/obj/effect/spawner/structure/window/plastitanium/pirate, +/obj/structure/window/reinforced/tinted{ + layer = 3.1 }, -/turf/open/floor/pod/light, -/area/shuttle/pirate) -"cQ" = ( -/obj/machinery/power/smes/engineering{ - charge = 1e+006 +/obj/structure/window/reinforced/tinted{ + dir = 8; + layer = 3.1 }, -/obj/structure/cable/yellow, -/obj/effect/turf_decal/stripes/white/full, -/obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/airless, /area/shuttle/pirate) "cR" = ( @@ -1724,60 +1635,58 @@ /obj/machinery/light, /turf/open/floor/pod/dark, /area/shuttle/pirate) -"cU" = ( -/obj/effect/decal/cleanable/oil, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/poster/official/wtf_is_co2{ - pixel_x = -32; - pixel_y = -32 - }, -/turf/open/floor/mineral/plastitanium/red, -/area/shuttle/pirate) "cV" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/white/corner{ - dir = 8 - }, +/obj/machinery/suit_storage_unit/pirate, +/obj/effect/turf_decal/box, /obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/visible{ - dir = 6 +/obj/effect/turf_decal/stripes/line{ + dir = 4 }, -/turf/open/floor/pod/light, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/pod/dark, /area/shuttle/pirate) "cW" = ( -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/machinery/power/terminal{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/white/line{ - dir = 1 +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 }, /obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/visible{ - dir = 4 +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/effect/turf_decal/stripes/white/full, +/obj/machinery/power/smes/engineering{ + charge = 1e+006 + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" }, /turf/open/floor/pod/light, /area/shuttle/pirate) "cX" = ( -/obj/machinery/meter, -/obj/effect/turf_decal/stripes/white/corner{ +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/obj/machinery/power/port_gen/pacman{ + anchored = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/wrench, +/obj/machinery/atmospherics/pipe/simple/supply/visible{ dir = 4 }, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/manifold4w/supply/visible, -/turf/open/floor/pod/light, +/obj/effect/turf_decal/bot, +/turf/open/floor/plating, /area/shuttle/pirate) "cY" = ( -/obj/effect/decal/cleanable/vomit/old, /obj/effect/decal/cleanable/dirt, -/obj/structure/closet/crate/large, -/obj/machinery/atmospherics/pipe/manifold/supply/visible{ - dir = 4 +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 4; + target_pressure = 405.3 }, /turf/open/floor/pod/light, /area/shuttle/pirate) @@ -1804,42 +1713,46 @@ /turf/open/floor/mineral/plastitanium/red, /area/shuttle/pirate) "dc" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 - }, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/stripes/line{ - dir = 8 +/obj/machinery/airalarm/all_access{ + pixel_y = 24 }, /obj/effect/decal/cleanable/dirt, -/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/manifold4w/supply/visible, /turf/open/floor/pod/light, /area/shuttle/pirate) "dd" = ( -/obj/machinery/power/port_gen/pacman{ - anchored = 1 +/obj/machinery/atmospherics/components/unary/thermomachine/heater/on{ + dir = 8 }, -/obj/structure/cable, -/obj/item/wrench, -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/box, /turf/open/floor/pod/light, /area/shuttle/pirate) "de" = ( -/obj/machinery/atmospherics/components/unary/tank/air{ - dir = 1 +/obj/item/storage/box/lights/bulbs, +/obj/item/storage/toolbox/mechanical{ + pixel_y = 4 }, +/obj/item/multitool, +/obj/item/storage/belt/utility{ + pixel_x = 2; + pixel_y = -4 + }, +/obj/item/flashlight{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/stack/sheet/mineral/plasma{ + amount = 10 + }, +/obj/structure/rack, /obj/effect/turf_decal/bot, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/light, -/area/shuttle/pirate) -"df" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/heater/on{ - dir = 1 - }, -/obj/effect/turf_decal/box, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/light, +/turf/open/floor/plating, /area/shuttle/pirate) "dg" = ( /obj/docking_port/mobile/pirate{ @@ -1875,10 +1788,90 @@ }, /turf/open/floor/pod/dark, /area/shuttle/pirate) -"dh" = ( +"dk" = ( +/obj/structure/shuttle/engine/large, +/turf/open/floor/plating/airless, +/area/shuttle/pirate) +"dl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/door/window/eastleft{ + name = "EVA Storage"; + req_access_txt = "150" + }, +/turf/open/floor/mineral/plastitanium/red, +/area/shuttle/pirate) +"dm" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/obj/machinery/power/terminal{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/visible{ + dir = 6 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/pod/light, +/area/shuttle/pirate) +"dn" = ( +/obj/effect/turf_decal/stripes/white/corner{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/manifold/supply/visible{ + dir = 4 + }, +/obj/machinery/meter, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/pod/light, +/area/shuttle/pirate) +"do" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/pod/light, +/area/shuttle/pirate) +"dp" = ( +/obj/machinery/porta_turret/syndicate/energy/pirate{ + faction = list("pirate"); + icon_state = "standard_lethal" + }, +/turf/closed/wall/r_wall/syndicate/pirate, +/area/shuttle/pirate) +"dq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/visible{ + dir = 5 + }, +/turf/open/floor/pod/light, +/area/shuttle/pirate) +"dr" = ( +/obj/machinery/atmospherics/pipe/simple/supply/visible{ + dir = 4 + }, +/turf/open/floor/pod/light, +/area/shuttle/pirate) +"ds" = ( +/obj/item/crowbar, +/obj/effect/decal/cleanable/oil, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/visible{ + dir = 4 + }, +/turf/open/floor/pod/light, +/area/shuttle/pirate) +"dt" = ( /obj/machinery/door/airlock/external/glass{ + aiControlDisabled = 1; id_tag = "piratestarboardexternal"; - name = "EVA Airlock" + name = "EVA Airlock"; + req_access_txt = "150" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -1890,31 +1883,70 @@ }, /turf/open/floor/pod/dark, /area/shuttle/pirate) -"di" = ( -/obj/machinery/porta_turret/syndicate/energy/pirate{ - faction = list("pirate"); - icon_state = "standard_lethal" +"dv" = ( +/obj/effect/decal/cleanable/oil, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/poster/official/wtf_is_co2{ + pixel_x = -32; + pixel_y = -32 }, -/turf/closed/wall/r_wall/syndicate/pirate, -/area/template_noop) -"dp" = ( -/obj/machinery/porta_turret/syndicate/energy/pirate{ - faction = list("pirate"); - icon_state = "standard_lethal" +/obj/effect/turf_decal/stripes/line{ + dir = 4 }, -/turf/closed/wall/r_wall/syndicate/pirate, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/mineral/plastitanium/red, /area/shuttle/pirate) -"dq" = ( +"dw" = ( +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/turf/open/space/basic, +/area/shuttle/pirate) +"dx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/tank/air{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/pod/light, +/area/shuttle/pirate) +"dy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/pod/light, +/area/shuttle/pirate) +"dz" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/light, +/area/shuttle/pirate) +"dA" = ( +/turf/open/floor/pod/light, +/area/shuttle/pirate) +"dB" = ( +/obj/effect/decal/cleanable/vomit/old, +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/crate/large, +/turf/open/floor/pod/light, +/area/shuttle/pirate) +"dC" = ( /obj/structure/shuttle/engine/propulsion/left, -/turf/open/space/basic, +/turf/open/floor/plating, /area/shuttle/pirate) -"sP" = ( +"dD" = ( +/obj/structure/shuttle/engine/propulsion, +/turf/open/floor/plating, +/area/shuttle/pirate) +"dE" = ( /obj/structure/shuttle/engine/propulsion/right, -/turf/open/space/basic, +/turf/open/floor/plating, /area/shuttle/pirate) -"vO" = ( -/turf/open/space/basic, -/area/template_noop) "BD" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/stripes/line{ @@ -1922,10 +1954,6 @@ }, /turf/open/floor/mineral/plastitanium/red, /area/shuttle/pirate) -"Oh" = ( -/obj/structure/shuttle/engine/propulsion, -/turf/open/space/basic, -/area/shuttle/pirate) (1,1,1) = {" af @@ -1935,25 +1963,46 @@ af af af af -aA -aj -aj -aj -aj -aj +af +af +af +af +af +af +af +ae aj aA af af af -af -af -af "} (2,1,1) = {" af af af +af +af +af +af +aA +aj +aj +aj +aj +aj +aj +cF +ck +dk +af +af +af +"} +(3,1,1) = {" +af +af +af ae aj aj @@ -1961,19 +2010,18 @@ aj aj aR aY -bp +cj bH aj ce -aj -aj -aj -ae +cM +ck +ck af af af "} -(3,1,1) = {" +(4,1,1) = {" af ab ac @@ -1988,15 +2036,14 @@ bq bI aj cf -cy -cF +cN +cP ck -ck -cp +dk af af "} -(4,1,1) = {" +(5,1,1) = {" aa aj aj @@ -2015,11 +2062,10 @@ cv cF ck ck -ck af af "} -(5,1,1) = {" +(6,1,1) = {" af af af @@ -2035,14 +2081,13 @@ bK aj ch cw -cF -ck -ck -ck -af +aj +aj +aj +aj af "} -(6,1,1) = {" +(7,1,1) = {" af af af @@ -2056,16 +2101,15 @@ bb bt bK aj -ci +cy cx aj +cD +cT aj -aj -aj -af af "} -(7,1,1) = {" +(8,1,1) = {" af af af @@ -2081,33 +2125,9 @@ bL aj aj aj -aj -cJ -cT -aj -aj -vO -"} -(8,1,1) = {" -af -af -af -af -af -ak -aj -aF -aj -bc -bu -bM -bW -cu -aj -cD -cK -cU -cD +cV +dl +dv aj dp "} @@ -2116,23 +2136,22 @@ af af af af +af ak -ak -au -aG aj -bd -bv +bN +aj +bZ +bu bM -bX -cj +cn +cC aj -cE -cM -cV -dc +cW +dm +dw cF -dq +dC "} (10,1,1) = {" af @@ -2140,22 +2159,21 @@ af af af ak -an -av -aH +ak +aQ +aG aj -be -bw -bN -bY -bY -cG -cL -cQ -cW -dd +cc +bv +bM +co +cE +aj +cX +dn +dx cF -sP +dD "} (11,1,1) = {" af @@ -2163,22 +2181,21 @@ af af af ak -ao -aw -aI -aT -bf -bx -bO -bZ +ay +aV +aH aj -aj -cN +ci +bw +cl +cp +cp cO -cX -de +cY +do +dy cF -Oh +dE "} (12,1,1) = {" af @@ -2186,22 +2203,21 @@ af af af ak -ap -ax -aJ +aF +bc +aI +aT +bf +bx +cm +cs +cG +cG +dc +dq +dz aj -bg -by -bP -ca -cl -aj -cH -cP -cY -df -cF -sP +ae "} (13,1,1) = {" af @@ -2209,47 +2225,67 @@ af af af ak -ak -ay -aK +aL +bd +aJ aj -bh -bz -bQ -cb -cm -aj -aj -dh -cZ +bg +by +bP +ca +cH aj +dd +dr +dA cF -dq +dC "} (14,1,1) = {" af af af af +ak +ak +be +aK +aj +bh +bz +bQ +cb +cJ +aj +de +ds +dB +cF +dD +"} +(15,1,1) = {" +af +af +af +af af ak aj -aL +bO aj bi bA aj -cc -cn -aj -cI -cR -da +cu +cK aj aj -di +dt +cZ +cF +dE "} -(15,1,1) = {" +(16,1,1) = {" af af af @@ -2265,14 +2301,13 @@ aj aj aj aj +cI +cR +da aj -cS -db -dg -af -af +dp "} -(16,1,1) = {" +(17,1,1) = {" af af af @@ -2286,16 +2321,15 @@ bk bC bR aj -co +cL cz aj -aj -aj -aj -af +cS +db +dg af "} -(17,1,1) = {" +(18,1,1) = {" af af af @@ -2304,21 +2338,20 @@ ae aj aj aN -aV +bX bl bD bS cd cq cA -cF -ck -ck -cp -af +aj +aj +aj +aj af "} -(18,1,1) = {" +(19,1,1) = {" aa aj aj @@ -2336,12 +2369,11 @@ cr cB cF ck -ck -ck +dk af af "} -(19,1,1) = {" +(20,1,1) = {" af ab ad @@ -2356,15 +2388,14 @@ BD bT aj cf -cC -cF -ck +cB +cM ck ck af af "} -(20,1,1) = {" +(21,1,1) = {" af af af @@ -2379,33 +2410,53 @@ bG bU aj ct +cP +ck +dk +af +af +af +"} +(22,1,1) = {" +af +af +af +af +af +af +af +an aj aj aj +aj +aj +aj +cF +ck +ck +af +af +af +"} +(23,1,1) = {" +af +af +af +af +af +af +af +af +af +af +af +af +af +af ae -af -af -af -"} -(21,1,1) = {" -af -af -af -af -af -af -af -aQ -aj -aj -aj -aj -aj -aj -aQ -af -af -af +aj +an af af af From 1664459b148095114d1c9855ec92bda1dcb1a4df Mon Sep 17 00:00:00 2001 From: Timothy Teakettle <59849408+timothyteakettle@users.noreply.github.com> Date: Wed, 5 May 2021 15:26:56 +0100 Subject: [PATCH 116/259] squash bugs --- code/_globalvars/lists/flavor_misc.dm | 4 +++- code/modules/client/preferences.dm | 11 ++++++----- 2 files changed, 9 insertions(+), 6 deletions(-) diff --git a/code/_globalvars/lists/flavor_misc.dm b/code/_globalvars/lists/flavor_misc.dm index 518b61f4d2..7eb1ab0957 100644 --- a/code/_globalvars/lists/flavor_misc.dm +++ b/code/_globalvars/lists/flavor_misc.dm @@ -352,4 +352,6 @@ GLOBAL_LIST_INIT(nongendered_limb_types, list("fly", "zombie" ,"synth", "shadow" GLOBAL_LIST_INIT(eye_types, list("normal", "insect", "moth", "double", "double2", "double3", "cyclops")) //list linking bodypart bitflags to their actual names -GLOBAL_LIST_INIT(bodypart_names, list(num2text(HEAD) = "Head", num2text(CHEST) = "Chest", num2text(LEG_LEFT) = "Left Leg", num2text(LEG_RIGHT) = "Right Leg", num2text(ARM_LEFT) = "Left Arm", num2text(ARM_RIGHT) = "Right Arm")) \ No newline at end of file +GLOBAL_LIST_INIT(bodypart_names, list(num2text(HEAD) = "Head", num2text(CHEST) = "Chest", num2text(LEG_LEFT) = "Left Leg", num2text(LEG_RIGHT) = "Right Leg", num2text(ARM_LEFT) = "Left Arm", num2text(ARM_RIGHT) = "Right Arm")) +// list linking bodypart names back to the bitflags +GLOBAL_LIST_INIT(bodypart_values, list("Head" = num2text(HEAD), "Chest" = num2text(CHEST), "Left Leg" = num2text(LEG_LEFT), "Right Leg" = num2text(LEG_RIGHT), "Left Arm" = num2text(ARM_LEFT), "Right Arm" = num2text(ARM_RIGHT))) diff --git a/code/modules/client/preferences.dm b/code/modules/client/preferences.dm index f6660fa54d..ea0ba2c802 100644 --- a/code/modules/client/preferences.dm +++ b/code/modules/client/preferences.dm @@ -542,7 +542,7 @@ GLOBAL_LIST_EMPTY(preferences_datums) // we know it has one matrixed section at minimum color_marking_dat += "   " // if it has a second section, add it - if(S.matrixed_sections == MATRIX_RED_BLUE || S.matrixed_sections == MATRIX_GREEN_BLUE || S.matrixed_sections == MATRIX_RED_GREEN) + if(S.matrixed_sections == MATRIX_RED_BLUE || S.matrixed_sections == MATRIX_GREEN_BLUE || S.matrixed_sections == MATRIX_RED_GREEN || S.matrixed_sections == MATRIX_ALL) color_marking_dat += "   " number_colors = 2 // if it has a third section, add it @@ -554,7 +554,7 @@ GLOBAL_LIST_EMPTY(preferences_datums) dat += "" for(var/mutant_part in GLOB.all_mutant_parts) - if(istype(accessory, /datum/sprite_accessory/mam_body_markings) || istype(accessory, /datum/sprite_accessory/body_markings)) + if(mutant_part == "body_markings" || mutant_part == "mam_body_markings") continue if(parent.can_have_part(mutant_part)) if(!mutant_category) @@ -2439,6 +2439,7 @@ GLOBAL_LIST_EMPTY(preferences_datums) if(marking_type && features[marking_type]) var/selected_limb = input(user, "Choose the limb to apply to.", "Character Preference") as null|anything in list("Head", "Chest", "Left Arm", "Right Arm", "Left Leg", "Right Leg") if(selected_limb) + var/limb_value = text2num(GLOB.bodypart_values[selected_limb]) var/list/marking_list = GLOB.mam_body_markings_list if(marking_type == "body_markings") marking_list = GLOB.body_markings_list var/list/snowflake_markings_list = list() @@ -2448,11 +2449,11 @@ GLOBAL_LIST_EMPTY(preferences_datums) // gross copypasta here because mam markings arent a subtype of regular markings despite one containing the other ??? if(istype(S, /datum/sprite_accessory/body_markings)) var/datum/sprite_accessory/body_markings/marking = S - if(!(GLOB.bodypart_names[num2text(selected_limb)] in marking.covered_limbs)) + if(!(limb_value in marking.covered_limbs)) continue if(istype(S, /datum/sprite_accessory/mam_body_markings)) var/datum/sprite_accessory/mam_body_markings/marking = S - if(!(GLOB.bodypart_names[num2text(selected_limb)] in marking.covered_limbs)) + if(!(limb_value in marking.covered_limbs)) continue if((!S.ckeys_allowed) || (S.ckeys_allowed.Find(user.client.ckey))) @@ -2460,7 +2461,7 @@ GLOBAL_LIST_EMPTY(preferences_datums) var/selected_marking = input(user, "Select the marking to apply to the limb.") as null|anything in snowflake_markings_list if(selected_marking) - features[marking_type] += list(list(selected_limb, selected_marking)) + features[marking_type] += list(list(limb_value, selected_marking)) if("marking_color") var/index = text2num(href_list["marking_index"]) From ba71bb944a06d123acd72250698b25fb6e23357d Mon Sep 17 00:00:00 2001 From: Timothy Teakettle <59849408+timothyteakettle@users.noreply.github.com> Date: Wed, 5 May 2021 18:11:05 +0100 Subject: [PATCH 117/259] im not crazy but this commit breaks 90% of the game --- code/__HELPERS/global_lists.dm | 1 - code/__HELPERS/mobs.dm | 2 - code/_globalvars/lists/flavor_misc.dm | 1 - code/modules/client/preferences.dm | 8 +-- code/modules/client/preferences_savefile.dm | 11 ++-- .../sprite_accessories/body_markings.dm | 56 ++++++------------ .../human/species_types/lizardpeople.dm | 2 +- icons/mob/mutant_bodyparts.dmi | Bin 35941 -> 34139 bytes modular_citadel/icons/mob/mam_markings.dmi | Bin 114275 -> 115508 bytes 9 files changed, 29 insertions(+), 52 deletions(-) diff --git a/code/__HELPERS/global_lists.dm b/code/__HELPERS/global_lists.dm index 9719157d4d..0a17f0d1df 100644 --- a/code/__HELPERS/global_lists.dm +++ b/code/__HELPERS/global_lists.dm @@ -14,7 +14,6 @@ //socks init_sprite_accessory_subtypes(/datum/sprite_accessory/underwear/socks, GLOB.socks_list) //bodypart accessories (blizzard intensifies) - init_sprite_accessory_subtypes(/datum/sprite_accessory/body_markings, GLOB.body_markings_list) init_sprite_accessory_subtypes(/datum/sprite_accessory/tails/lizard, GLOB.tails_list_lizard) init_sprite_accessory_subtypes(/datum/sprite_accessory/tails_animated/lizard, GLOB.animated_tails_list_lizard) init_sprite_accessory_subtypes(/datum/sprite_accessory/tails/human, GLOB.tails_list_human) diff --git a/code/__HELPERS/mobs.dm b/code/__HELPERS/mobs.dm index 92cf7050e0..46c75e702b 100644 --- a/code/__HELPERS/mobs.dm +++ b/code/__HELPERS/mobs.dm @@ -64,8 +64,6 @@ init_sprite_accessory_subtypes(/datum/sprite_accessory/spines, GLOB.spines_list) if(!GLOB.legs_list.len) init_sprite_accessory_subtypes(/datum/sprite_accessory/legs, GLOB.legs_list) - if(!GLOB.body_markings_list.len) - init_sprite_accessory_subtypes(/datum/sprite_accessory/body_markings, GLOB.body_markings_list) if(!GLOB.wings_list.len) init_sprite_accessory_subtypes(/datum/sprite_accessory/wings, GLOB.wings_list) if(!GLOB.deco_wings_list.len) diff --git a/code/_globalvars/lists/flavor_misc.dm b/code/_globalvars/lists/flavor_misc.dm index 7eb1ab0957..0affa50a72 100644 --- a/code/_globalvars/lists/flavor_misc.dm +++ b/code/_globalvars/lists/flavor_misc.dm @@ -55,7 +55,6 @@ GLOBAL_LIST_INIT(mutant_reference_list, list( "frills" = GLOB.frills_list, "horns" = GLOB.horns_list, "ears" = GLOB.ears_list, - "body_markings" = GLOB.body_markings_list, "wings" = GLOB.wings_list, "wingsopen" = GLOB.wings_open_list, "deco_wings" = GLOB.deco_wings_list, diff --git a/code/modules/client/preferences.dm b/code/modules/client/preferences.dm index ea0ba2c802..0194301134 100644 --- a/code/modules/client/preferences.dm +++ b/code/modules/client/preferences.dm @@ -529,7 +529,8 @@ GLOBAL_LIST_EMPTY(preferences_datums) if(length(features[marking_type])) dat += "" var/list/markings = features[marking_type] - for(var/list/marking_list in markings) + var/list/reverse_markings = reverseList(markings) + for(var/list/marking_list in reverse_markings) var/marking_index = markings.Find(marking_list) // consider changing loop to go through indexes over lists instead of using Find here var/actual_name = GLOB.bodypart_names[num2text(marking_list[1])] // get the actual name from the bitflag representing the part the marking is applied to var/color_marking_dat = "" @@ -2446,11 +2447,6 @@ GLOBAL_LIST_EMPTY(preferences_datums) for(var/path in marking_list) var/datum/sprite_accessory/S = marking_list[path] if(istype(S)) - // gross copypasta here because mam markings arent a subtype of regular markings despite one containing the other ??? - if(istype(S, /datum/sprite_accessory/body_markings)) - var/datum/sprite_accessory/body_markings/marking = S - if(!(limb_value in marking.covered_limbs)) - continue if(istype(S, /datum/sprite_accessory/mam_body_markings)) var/datum/sprite_accessory/mam_body_markings/marking = S if(!(limb_value in marking.covered_limbs)) diff --git a/code/modules/client/preferences_savefile.dm b/code/modules/client/preferences_savefile.dm index 7c93bec600..f430854575 100644 --- a/code/modules/client/preferences_savefile.dm +++ b/code/modules/client/preferences_savefile.dm @@ -295,11 +295,16 @@ SAVEFILE UPDATING/VERSIONING - 'Simplified', or rather, more coder-friendly ~Car L -= ROLE_SYNDICATE S["be_special"] << L - if(current_version < 51) // rp markings means markings are now stored as a list + if(current_version < 51) // rp markings means markings are now stored as a list, lizard markings now mam like the rest var/marking_type var/species_id = S["species"] var/datum/species/actual_species = GLOB.species_datums[species_id] - if(actual_species.mutant_bodyparts["body_markings"] && S["feature_lizard_body_markings"]) marking_type = "feature_lizard_body_markings" + + // convert lizard markings to lizard markings + if(species_id == SPECIES_LIZARD && S["feature_lizard_body_markings"]) + S["feature_mam_body_markings"] = S["feature_lizard_body_markings"] + + // convert mam body marking data to the new rp marking data if(actual_species.mutant_bodyparts["mam_body_markings"] && S["feature_mam_body_markings"]) marking_type = "feature_mam_body_markings" if(marking_type) @@ -670,7 +675,6 @@ SAVEFILE UPDATING/VERSIONING - 'Simplified', or rather, more coder-friendly ~Car S["feature_lizard_horns"] >> features["horns"] S["feature_lizard_frills"] >> features["frills"] S["feature_lizard_spines"] >> features["spines"] - features["body_markings"] = safe_json_decode(S["feature_lizard_body_markings"]) S["feature_lizard_legs"] >> features["legs"] S["feature_human_tail"] >> features["tail_human"] S["feature_human_ears"] >> features["ears"] @@ -1037,7 +1041,6 @@ SAVEFILE UPDATING/VERSIONING - 'Simplified', or rather, more coder-friendly ~Car WRITE_FILE(S["feature_human_ears"] , features["ears"]) WRITE_FILE(S["feature_lizard_frills"] , features["frills"]) WRITE_FILE(S["feature_lizard_spines"] , features["spines"]) - WRITE_FILE(S["feature_lizard_body_markings"] , safe_json_encode(features["body_markings"])) WRITE_FILE(S["feature_lizard_legs"] , features["legs"]) WRITE_FILE(S["feature_deco_wings"] , features["deco_wings"]) WRITE_FILE(S["feature_horns_color"] , features["horns_color"]) diff --git a/code/modules/mob/dead/new_player/sprite_accessories/body_markings.dm b/code/modules/mob/dead/new_player/sprite_accessories/body_markings.dm index 533e406d57..a6137eb908 100644 --- a/code/modules/mob/dead/new_player/sprite_accessories/body_markings.dm +++ b/code/modules/mob/dead/new_player/sprite_accessories/body_markings.dm @@ -1,40 +1,3 @@ -/****************************************** -************* Lizard Markings ************* -*******************************************/ - -/datum/sprite_accessory/body_markings - icon = 'icons/mob/mutant_bodyparts.dmi' - relevant_layers = list(BODY_ADJ_LAYER) - mutant_part_string = "body_markings" - var/list/covered_limbs = list(HEAD, CHEST, LEG_LEFT, LEG_RIGHT, ARM_LEFT, ARM_RIGHT) - -/datum/sprite_accessory/body_markings/none - name = "None" - icon_state = "none" - relevant_layers = null - -/datum/sprite_accessory/body_markings/dtiger - name = "Dark Tiger Body" - icon_state = "dtiger" - gender_specific = 1 - -/datum/sprite_accessory/body_markings/guilmon - name = "Guilmon" - icon_state = "guilmon" - color_src = MATRIXED - icon = 'modular_citadel/icons/mob/markings_notmammals.dmi' - matrixed_sections = MATRIX_ALL - -/datum/sprite_accessory/body_markings/ltiger - name = "Light Tiger Body" - icon_state = "ltiger" - gender_specific = 1 - -/datum/sprite_accessory/body_markings/lbelly - name = "Light Belly" - icon_state = "lbelly" - gender_specific = 1 - /****************************************** ************ Furry Markings *************** *******************************************/ @@ -227,6 +190,25 @@ icon_state = "xeno" icon = 'modular_citadel/icons/mob/markings_notmammals.dmi' +// sticking old lizard markings here for now +/datum/sprite_accessory/mam_body_markings/dtiger + name = "Dark Tiger Body" + icon_state = "dtiger" + +/datum/sprite_accessory/mam_body_markings/guilmon + name = "Guilmon" + icon_state = "guilmon" + icon = 'modular_citadel/icons/mob/markings_notmammals.dmi' + matrixed_sections = MATRIX_ALL + +/datum/sprite_accessory/mam_body_markings/ltiger + name = "Light Tiger Body" + icon_state = "ltiger" + +/datum/sprite_accessory/mam_body_markings/lbelly + name = "Light Belly" + icon_state = "lbelly" + /****************************************** ************* Insect Markings ************* *******************************************/ diff --git a/code/modules/mob/living/carbon/human/species_types/lizardpeople.dm b/code/modules/mob/living/carbon/human/species_types/lizardpeople.dm index a6cc8e8b8c..41d9ed4fef 100644 --- a/code/modules/mob/living/carbon/human/species_types/lizardpeople.dm +++ b/code/modules/mob/living/carbon/human/species_types/lizardpeople.dm @@ -11,7 +11,7 @@ coldmod = 1.5 heatmod = 0.67 mutant_bodyparts = list("mcolor" = "0F0", "mcolor2" = "0F0", "mcolor3" = "0F0", "tail_lizard" = "Smooth", "mam_snouts" = "Round", - "horns" = "None", "frills" = "None", "spines" = "None", "body_markings" = list(), + "horns" = "None", "frills" = "None", "spines" = "None", "mam_body_markings" = list(), "legs" = "Digitigrade", "taur" = "None", "deco_wings" = "None") attack_verb = "slash" attack_sound = 'sound/weapons/slash.ogg' diff --git a/icons/mob/mutant_bodyparts.dmi b/icons/mob/mutant_bodyparts.dmi index ca047a93bdb32559cae9198f326c8817d86006b0..7b93a3ff732b69c32166f69ee8e197747782f312 100644 GIT binary patch literal 34139 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 literal 35941 zcmd43XIN8Rv@RN&pdiH-lqwcfstu(^6jYF+s1zvyQIQVP5eQZgL_|X=gjN_Ev>txh$>r;CdjQvpBMYsEq89< zgl(UZrxSHW&e-sl?xkT3<4%FcLUQZlyIy$GqnCId?|yY=T~eC%=XE_>QpDeP?28ZXD^YfP#4(=0_!#OC^cczh$(GO@L{UsXXWJztO4vGm0*`BW8W zGebemxO-nKUYS07(YM87@izJCdCz+$hxKDb*+yU2n_Ss;8*_I4cH4l!&47lX&fPDbrdoRfL-3ipW6-=axBVRqk=o3;0G_)AMJ)=pnk zU}C!iuTs{R<`r#;UJE%yk9SiER^9A89&1^aXKAZ$<2QYCq{01!cuU3lbkEF)jXe7fKG>NczLG33NC zr|jJxw_0b_5_YEv^J;nvAQ9 zX%GVCKBfCtD8UFup*Hm6zFz}f;&)UjXM_pb+~S}<df_mzR#ll?9MjfzmZH_%9rQcM&Nn#t8C}(k&ZN1j>*zdjDc)naTU}fG@wGBH zH`}P&G|UuIxucAYui)t;)4$MJt(BPiOO$L3G%LR=+USBn>4n@kT~qoF;!!6l`P@s@ z*h%_w8r=esZ!IkOl!}f>6sbhl`<0flql~V4BIb}!eCf_`*rP-ndqXH%AUmUEfmUo&WRzRq5qz! zto$2JEGuG@`uh)tu?Q6vQ=geQ91aslLtb&u>-k4|Ck?CHCC9#{m^`UQuyiTGI z^Awg7^7_Kc%gT1c3#^kt;P>!R^oO>IpL|W-IkWi+rTEm;)NkLuMN#Sz`2FE0-#~Zw z3&H2_iJge@^8gVMkzd2ZpBN*^@bFP#5fQ4i;oE18SA4y_x5`oTky9d7q28UNA~$Q2 zvN04?-;96ERB$o$mwC29x>?+vJA9jkR^7>uHQRH+)>ew_nQrDi9CbAx58Fk zQ!{>MX6DnZj~!g6nylHz(uUWmD)j41G`ir!hpT;I*Hh89wzgmCB%F$%pkP5kf!y`$ z*G(i5&w)y@^aMt=iiL&6HR#>$(5C3`Q;13CHd5Gf?)fRCzu(r%+FHRkbhtQZl8NX_ z*(b^q)(%7XhP~JbQhwi>(y>%h?C)4nB3te5LP=k;G57JtX_|m&RvpOB40&YZy zDUMse98MW5^(1Wy##2?ZsZ)jwnie^FHvisoZv6%_cZJsqA&_!0ZT$*mr2Z(`N7}<0 z3D8J+e&UI;)H`KmhF#n)ZtDDju=-jxG85y!RRc zr}gtKD%UH@jf8HBJ4z1dwSmzz7N9EL05c>mh2&hmer0jSI?Ft}$?v9L)nWG77?YB( zNx1d#h#eu!{nA*#vsqr;3ggV%j<-H3_O>bykfpMal|#vmCvg$I)ohHGmg0i#8H&lf zhLKKWKhNC4XLMOv!T2Wwee&|;0uPhbNPq5>HwRL=; zXy*{2ZNl=b=K8=?G`!c=X9K-W9_rv zq`_($F0MI~l1C08g<3??5CXDH_>N(9WAa1Et|lB1v#z!D|) zmyk=0SDf4UKYjXiGlVhcutGw=Pi;f1E_^(_z)D5eBWtV3YO6@jZMxleMzH)2p<>4( zhSJFN%EN5W@zBz}43lKxPs);rhQL&`xP}lqlrZ*%g1bc{^h;N;RYK|g0rUYC+s`6~ z6;pn{OH5Xrm8VCFBDDBVj|Q<$=iy9Br6kn&NzNJq&1UUz{UI2aU}fdx)+5Sh({P9+ zQW%SPRxj1{4r=DwD4!sc2>2z^MjE3_H_*}X*n`7S#VV0Dsh;3+8YwjAAc8~``539Cuub&_q?y3Asdr) z{<=Wbwt;~Gw8L4X6D3h<`q#_-7+nr?)^NMBG}RG8QZYuhRLcq&n)d&5hFA8)J7=o( zr`0vP?t??xot_p^$<2Dd&@2^mysWxdq_mA@IyIJTj(~x1tm7VSET&@WF>^_-B;+Yc zWnLQfaC@0<^ygeQE&o@&4DSBC zM(1Jn4HaW4q$NL$maP|ihk&riEqFMqFBZ2wT3B^W`i0yJONDXw)4C8iBLT~vPn_=} zu+M+{Rj>lrdd%68rO4!x7(cyBE)Chgmg24jZA>%~t;eW-O&^i@x~G^pQ(6B|AxzBA zdz^@E4c@tR1|Pfh!3;(vi;R6<_^5h#ZTCe7hpkLXy-fX9)m*T50p;r@?>Z>gOLF?9 zu^zLu4co^Z^Xa7K(^07quR|7-%@@%h#IP$Fp*G`qWF!`IJeU}C+x`J=@NRTH=Fu_E zYwBzf{E1~vS|qtsEeOo>6Pft1N2)^mi95qpyjL8hwf?^O|BguKU#w*~SQpTRKK+b%@bWT@#-gAX_3>YBs*;;Am)+0$FPT*sq9J&n<9dHfc)5A$Jjs-eWRJyTjnMmycemM)c9!2ZH88v8`+FQ1F`l6Za7H z#?wry{;DMw8K+{nn-YqlGncDXD0?p-O#RbdHe!z8w~NiE4$H8ItiUQvz&2^GuHNpA zfRyG#2@9UcA_=KSSQuoA&_rEYp~T`C)W2WZL;{PByu^9fZ9Oclk;!Ae(%d#ww2O#W zQ-~bfD$S0b+>6GwemI>#U!-=|IbJGmHei$8h+!9qNmH8#88;8#`>6HAj^QL0GQ5Ch zx#Rr#Xn2;B#fNh^DYjj8h*hf~0S1WkFv;(v$p|&l6DdKApAqo~?-rFhF$39*dd$ia zj@^u~NCn+bVjeLrY6Q62u+U-rj!XyDUzVfsHLOdk!WC`%Q2tVhW4lMjDY zv8+Z~bf>E+mvmztoSfuovs1?~$bnf@gU_<5RP(X9O;GvEm5fMoBw^|vVX1B zzmZ`=?~MO|V|Xq5a;Ww-e$=Sf|BY!=6s z&vpOt{q9~)2YYp?JYsAG14Cz>^V|_in>@cT*`d$_z_?5){oKNAzouB+ICS^p_m$V_ zvja2u=g(iicc#Ex`*(=Sx8f4N)kz!h58yF4gDEOM=jK5_`newPHJ_WAp5D$RT+az? zNS^ho!`wPhf!Ea3EGR781|vFI{ejkaD6%ws#08Imvrs==XA|welt0Sy-;S*c-Zae{%}yNN zpZ^?A7;aM*fsIQ>Nz1I~T>I&_XTt9qSj}59S&G*Nh_RmXGbU8W@w^4NoG>Ts4$t`^ z6;8_~WK=%y!_XsJ3?#-}aFA0ix2QdR%sOkR+0!<$oxeyu9N9PHR=^k!==z+-p&>bm+QW+32lT z%5sBx4w$2k=zxoO@@?KF)7Zk?eT%}}IV*OrdUDv86k|ue)F?926x-+1HraaHTe8yyrI6|NB?1^X4R<5^d{Kj4#JpxQ^$+ z9co5e{vMN2xc7AL;VYM7g;ni$Yt%pxX+D@Wj%vQrW_cqsjYmsj2rcqo?^bujdE{xF zwnj~O`hPk$`A-vt=iF{%wKhoEk48aXYDr5Ca+++fA;FU#<9K|L^LPalZxzEYwM_8# zJ-*C;IC^IL*SfviuJc06tx`tag?iN88Z`}akr3u;({;-Kl8V~lES zFbrrHYG280{&BRp^58P!uNEuS1Fw?rVdvL@-wIjqHSo=W+SJCBbIJ9>TB}G1wjgM_ zVHKD7uJG5Ui~8lk7hZ>QT`?$MpOX;fhD)CR`qf~fBio{-vK})g@>H44!ha4?YJF}x z%rK=YON>UKgf^Ts!`i@!8szG^U;Gl|CSL2PwEl{Ki$07F6B83d(;40=ALqEHJG)94 z`ACwJ(&^XgNPB3@m>G$FO8+o=_!O`GizB~T^9rqxNzSqThorVM=5Hx2T%5_${U89b zR_qM#`Vfa~1|2!u$sK~M53xOpTD4~UJvK~Pktxkg5)E;vs9!adro!ahj;Tf=KER=y zZg|x?-g+nKgH$)a93MLplGW}}N|ol3T;zatJMWcP|K#;jFt7&&G-_Z2tP{t8obcuc zE8?|Q%3jMV4*L{E{iTjPV$k*&3|bt3W3+_1#7!65u_|2MhPw|6S6f?Km+_sJs)10d zS{w}rc+@NX3@k`vl?!$6h+X20{Bb~5$-KI%19@h9zRlA!s)K2JdcocVI%bXqwRnb6 zlTXCnuztaX3U>t~mopk~FxS*0RxHGqTXYh3HPha5A!d*FYK%3Jggr!E$dFi^U)Oksm z`QfKH_gN?hnrop|q1Z{!}Nh7e!T7tS{=bB?ME)@;y1qOG8krWnekj1(8wN0&3LTN&HKpyMWzIhcU3}ET)lMyDW8m8y>a%~2ix9Q1NqiVkb6sN#%1w{vv8+S>UEF7Nyu+~4A7;FPvr&a%> zHwjT;VFN!I!Veo7$2i_k%{S*p=C?^kSHQV$-<4=Bx5|<}Zq`pHt+wDz2iQJNel@r=TJhZh|ukzau}Z;@koiqVwSPeyY}2UnY}?3B|PVRmiSb z^wux+@fHH#m_62$nCn`3?MR+JZj&H|Xs44FMbvARmGWjf<`0P0@>2Hgz^x{W628I8FL>(nu+^u{Z`Az4-ikjoiTPU0tp8^pNkkdh^1Sj4Vqn#Y7oOYj z@5Kf;5B5Ycgx;NGm%e!BC79PRdg_G{^Wfpay2R~WQ~CAw*H~?RNTsLl!J$nyabFXU zBrUjlU5QaK$m_z!ejH_HmLb03nLqz|M80NJvw6EycyXYp_fkNOi*i4=!ckUcnK|;$ zj=VnZY-mGX`+sS}iqN~&v%!L1oy2CBQ1n>r}l=02xZ(^iyrv&oW3~X==GkR(Z`+K1s_#+ ztXx&DyrT~BV*TJnRxz+6+BkN|%9tr$=c@%al=gb&f)rd9MQmlYaQvvamEHLJiNI?w zd2;ZFeoWHyJ}I`7+?heOIbq~IKaR5cGmgz^0YN!R*slI2C*}F`gaorJmBE3k>xqjy z*Ex+my;0vV$-vPjA0LFHKGRu`!oo=I!bG>;Ju1ny*m1!6CGoMWTSZL|0dW zuQ9y1_m3-2Y6n-o`(E=g+$Mt8cV)*?V4Gz zi~Pw56vsa^6ip^3gG;UPnz`UTk;N2y)8zCR|8I!3NbS zT_LI*Jg%v(zPq2UzJawrT=OtnUVD@QFxg9Y>j2=vKrPO1l+D@hKR6VH^7akCA=z?+ zljeLD?4^uW3x+>` z)AD+7{M9&ZstZW&UCnrm3{nUm^09;`T6LGWEha@cC+T$Z4}#Om&B-|lNdU#8r@<)! zzncT!%WRqs_)fgL?&r57Iy!m;w}6M>AoZ)0{knh74Flr@=PGf$TmzWx{lvV1&f(#U z%3DuH*s)^SLN+5VEa*d&R!j$%<#!F%yFC+n^M93s;WqZ6$ot)a-;tG zo|q03<$)(5#`C(j_ZbsY)5}0ke@|37m9+L7Dz9Az&Z$`$M`3jBhQ>HYf3#OEBE)q3u$Zt8K^fTTjn-kWAXTE3eu#}ti4T2bCks;tx6U>sTcnx;%0H6L${MaTAsQ@EC-;nct9K~_E zoL$#uc39?hkT(41>|ELY<`jkW`=l<#x|6KN#~tE+;I-o@cmuOHh*LYss2!u-jufV~ zlO|D$*VZ2?2;(UTlkl+{IuT(Xmpn)Bu)wOLKNXP)hz|9T{S*_2u;^Cqtyh(A%ch?@ zm)}JNs5D6n{*7&KCrMhhW7yPM)uM|IhgBw#o`vRsba2>z6MH9EXOFNj3TCWaks7&2 z-}8~L6+|Xn{V^w3r5u43izBgS1Im1>v7Be?Cx?yoIpw2oI*5PsI=n$FE{uSuzG>Zv z%ebOyG$t`bufqwdLTv;0_rf5f(DKc*liZshk6>T1@m~mt zyLlu^NLGdwh6R#%`VOj!(ScR`n^(J#`(!WnHXsdnh&a3Z=Gh(Xn?9EKetHDth|dnj zX{5&{i_kF2Cn_E8~|g^ z9#mLarF(jOZh!xbTPcx)1a~Th9njA6uh3>!yvFn2Z{|uI|6)oY9jazS7PCYDVJc6a zEvjXxYk}z$D)zd8h8HHtU9@3z_zG+iJL+}wiuST=uViGG-KoOGYI0)Kd^g0RH7Pbi zglBdPNGp7Nqf$jYuqCE7LPSPydkQh$<{1y=ORSP0i!r=CSO4KD^pS--yi#F4(oI#v z=#OAKlloSl`jpd@KjCwvODEdoT^=rO?8e%DoKk)T$}JxQS2qH(;Md%BPTE%V_mg%V zqX4$eQyymF^4!p^^UIUVY=+#)M?T%@>Y@aO!}l*LN?~G(6Z&2&c~8?iNg0FtV~8)~ z#qd10KGsC3i{`WJRZkXk+I~}3G%h5Js%I7!M~7%#AOFL5t|J;1`bl9p&FKkboLdET zs>mgf?YpPgH{#=#8(m#^ZqLRkm;Cd49)HGV%(Bb(@w-(pUIHCxIAu|~VM!Rp zN`k*p+{tnmedm%ouO1MVu%1An{%QdXnLCW9rlv-y;bwaZyp^2{aHQP4JTOT1s-mIS z->>zNwYwgdOb$0p-#3tdVA7Mi6pj+IA6}CxTurIjHf%B%Q&Cw7W3t{t-53!XmRb%f z$F+Tgtk_|7k=~gSMI|Me7xMQoB08}XWrK!{T=VQsyOp1h`uNk&6_uB3REu9If^M?6 zcbto98|id_hl{DWVbHE5zzrE?=E$*2i@hfTLiDGTc?w+!<>h-I!?=D~gRJ!v-J|EB zEZ+T2=b5?T6(T`2aWQ}__8BeSBxcZOLZ7mV3Vz{BXjiUL z#%#c|1-XmP&R?IgEDZIT!zauFP@j9|)qf~7<{4~yB#nC%?X-SJP~X#?6I9DHzdzX$ zn%?a4k(~)G3R3=8hA{XKQTG3XE`bvOf=T_qRYnY*;j-MlG5z4f*Ov~~0rE+~<4?S5 zX<#&O-wmdaN~L}$i!kcIAdc(wa`SHrvp3t`fT34t(gQ$B9MQFrkTZlAPd zIFM#zLCz0$h^3CDR|}XKLW168MZIw*>B#Pl9aFT*2=Dyhs?=cZrsifrEZMmo*+1!- zr#Oi(wad2{XVvzjXQxz#>-1M^BMUYv%mC5q4f#QFV;ZQ}zXnh_ z=p!92ew6}~{uLbKWhFGXbxX|gEaJ=qG^WGlvC17@qX;}`Fu(}IbSBYbvIykmbXkGd zB(kaRD78+EpfYb>AY<*#nr`M)(^G|jE0KM^ToJVnFUMqdmiclC7nWTM zt95I~Yz|m8XvNh~G?#4*zG|BLbPHOhd@*>)wRPB{ZDh?&St{Q<1+GY@sfVYA*G6~Y zUFm5Z9Ub0`8UKp9E&_2Ts=?UU+`>ZeeC&rnv?Xbc^(gBLhd(0*F4tN zP^?L-Zrx}ZvWSit{AmBMC#|T#!f_a_V`RfHX^S2#I`%UMb?yLDQdEQx6g#0q5q-Y+ zo_ti`K|q+X4&628xMSK*eKo0@(EN;8L>5!19A2ZOZ{ssKwCC}fde-wR@CePJNz!2l zrEcoC+9sH&ghiLk#YD(hyX1dSx&4}@cr|XU=GU+E+YVQa!L)OPEI<_)mF$@RwN$rQ zCW=hAvL)j$O?|*$)DSqI-Qg`z63QO(Xe%BYj?na-@e|n7+shLW9dILy)fOri?l*TY zAk=;B5sHUb@752I79*cji}DtqrSez}tdYPw>8o$;>C^x2GEH$h?I&PoYg-(q{JA1a ztsvc1Tct{zIX6`MSyNTu)0Y5ifsEf@4oTe{l6Jx1v7eC_q(v=pA-#Yz?zTt9z3WNl zxdh2a(^tUQwqn&N58cn!Pphd#$S6gJMmBTBB?p=3nhWklgWLSa5VnlHQykx-ke((h z@R?dk@p;2BXK0e!Gm*r^#NnXSc9(+&>`vr`*W?AH+5p?Uu70b-;YfGORK*S0FTc3_utS6+PkBqV~(EzQvrT6fo}Ow zdy=d+NrsG(9;;uUMNP*bU;)QhR{D~fvAZv?RA1S991K=Y-J2=T<)yA~C@tGd5<7Q3 zI>zch&JydIqP-#1zQI-72S=d0cveAI)@s!lWQqIa|#}{KHz%3fS{Wg%_y``ADvv zf8i>9_vONJC?q8ks1KjN|4%}xcX)!?9vDfjGyeK|mq3LBj2vj6T);IJ_T2C6>eAPH zO`I{zH9xh37YL%p#>RVu0X|?(8a7$hlB_-n!a<2`JTQ#SSyW1VYVP4sQ@o1Ua zA+J8x3I8j8IQLn$*6jfTv{?P{VetS><29^cML>(f!oqs|?FU@;_p@9}iFb4me+?X@lfc3pG5CK+U@?g7&3GByIy%|K6!Zix0ZHHv;@HX-{>;XqHpaB7}aAt~as| zivmljgM&w!nwmJuppw$k7~&WRR?NU%0mt?A5J~}#xUtP z)`V57n&45Y0BP8Jo+o71GbQbprDS>SEuB@xPo|rFy)ND$#?_$BD@z|Iiu#Qu_By$m zkCl!OS+qIKPfr^e3F)-K?M^v4ImyijO&he7R@aRkiHrTnC?qT|FL$7CesHmRW@cwEh=moyQ?|~|=0$G5F0tTCFBR|^LWTAB5I)jQ(!Px?9areSjSVpBvKgfc=Ih<=&CK~L2uiD{)&RUM3&y2WC0ND< zILOyHR*ZWo)4#&j>cWL*njgN5eX>^-N8HfAYv$(*07_;nhjEhDW?APh1qG?U$8RRH zH(eIClnB2i`!KjlSw<(M;rgzI$m%sqL$&;?Z-(D_xNTVQ;-`EG-$t68jb7bYunSg; zVoh6+($NSJ3u!|mD}MDB{L-N>d%iS--l(Aqi&Fx#mzEG^ga|Ec*)4ReheSe?==c>M zJ&)henuidWrt<3x=!kgx`|pH-1n)g{Mg4a=oD4oz>^|g6R9Zd(Ufdr`rggViv_tD@rXn=tJ~MfD_TE%HK6c8pcI*+a#9}-%v;Hot$l<<$_#fNoQD4+U=t>4goL1X%Ko`PG&A!S6PJ+?^-1+P!{-@sKNk&|URkM}qop2a zVP3I+e@kNrO#xxTnSzm$l9G{Y{q}a;;(lkgXI{%x?a-n04wucEWnkZmKokkkF<5kb z^&v@NuzyZFUntQ`tt;6S3|fjt@D2*v?I3Q3tMyvRdmdGM%F`@SfA_&WIEJ$a{*V=h)Tfu_RyMwc+`_&* zw#Le(GYGgIkfN@~S+x6v=Mkz0t+P8`cTH`!KtTS{;ZjV|zb7XXPb3o4LDNc6o|~V) z*7T~NErrWcB?RL8@%R_j%#MFR=7MGK%pzmdBG>$^wSX~}qBOs8Fp!Q64%+w8RNu3~ z7~3ERRKh`v;a<+(8P$a`R_?$Iu-;EFObZ1E4Oy8gAw@*@3HowDNy*M?vcy>&FnKV| zTgmkFevebV=%c_He5nWzw$|T}j{wa8O#($>T?fwD*?`Ha7K*67$IQIURIW+$m&zpj z1KhqTtD46SwvqGbOKO?$9p{!G91!-(HJ8A$An_az&)z#Qpmt^6mGgk`O+!;t0?P-6 zDa%bEtT>-UmM9iCGOJw9&u2?ZOGjnVx=Qcfc6d5zi)ypD9vw`x82zq42hvJK6%~nt zV-hjPor8jcLR=r7EVr$h5I%Bd3e(Txh*LdEU8gCe8UGz&Y}0H(QBLC(-Aad`GlxG# z2*#rSR2{5hM?`>^9ueHC|MtZ5S?;OgSujt(eqBB~x2<0yyrMr3eD*gsyE;w~ z@635l7Aq7q)RLr449xN~<9pO7J#7{9s_D^3cE=a0Y zE$9F8L&H<$$Ks?yB5GfHqjfSS1h>MAmAqZ}LGaC+{#8<8e)0&U^Q@r)H`CnZz#)ppTeIBpqcr>^i zw!6ABx5H(AafbNmF8e^=mhh2i&^p^H>?D+ce!926-}thaB(B9!l=rxb0N$m1aVJ0C znIfCeDe3i+N0NZrCoXhT|##|We6JMb}Dnpme!2utv$CVNv zgEIGl%I);`yJETsk+y?@jQ8mrEbbifVnQ7VQ^AA$3;NrwKjmi}dsiKpm@%O)O6Dc% zpfysO7$o=Lx&u0$44n-vzVaU~Te4)RghNi72kT6QDl zEwbR=EO#+vE-B;I!^qdyG=1anT`38O!l#+oPHWk`w(tr`)v zxh;5+$$0-*2bXT#%oV!qCw{k}yxfIl(>*XC9dTWPPuISqoR;M)Z|MXBQ~}^$2nA0} zgW{M9_II#TOn+_(4s!YZJ7c?_D8vI0vQen2YRW>h0K6I+ot&6T%>gaN5Dah>+7QZm z3#8Ir7F$~%@#@N^jv0vZc1GX>RY55aQSdaG9E%nyY4p){N^ZOY8{##(Ji-%5JnrEQPR?8bmA#KDKA6e-F_f&qlLt}@N zYhyF;wkBsogd-yZQxCPQE%8$xpPhh~0M$#qDxC?Q7$(@Hl)W+DGr=s*PJ&|}WOI;G zwZ;fQHJ+quPPG8UF#A}`FTk2J`!Ojd_2og!=O_o8dwZXOr?`)`Va$}0E@&dHYGKJk ziY54(cxhaV{F#+ICo=Hk(x+5z#|PiK4E&3`MP_qTQ%)6QZ*Gs<@lrqTM^DG}p9|`1 zv-MkhO0D`YCy(817;FB~S@y7=K`#GZQ@8YRfqrF^k!8KssK{$?c)CLQ-t!rl0AUKARGNp=?UQV z%KBSwU#9T?5#T_K^B-Z(<4deup&CeWXdFH)DkjFldqtSJq_J&K-h#9MiGO}hRI;n= zVwsww5Y4=2T5k@A8idO}K4-xJK`=Vus}Ur!dh?{OMgjP5IXUoj?WDaB1N_HNipdGE zIl#kkYDa2oYbzse-v?KF)yK!j2BFbtWs{zlQFb6V=Wv8vPZAT$){H+aE-t>Oa0J|s zdaQs|8r$R5KR>g;D{&+O*Um0OutYcphs!@;fh*$J)=ajR0?#{OQ^3gPacjJVG03U; zIDH*`23Oj`bq$~d;DSHRvuzt=!%>t_754<#L|G5X%u~%y1F#Q1^P&=o~h{#%;k+~v7#6A(}gNuh+(c&61@LiXuqFBc!YT%O9~JngJZ zKlTt%Ghhod%$Ch6`c3R3mjF`$GUxOx6bamv9em++`%mcxRFmxL_po^K)J7hl)rSJPM7e()%VrUf}tkjMy3Ke~P|t^@BKkY;T4} zQ*N$O=45_CK_1&VZ1;o;w=GVhTKu;zOa9B0%w30}sr()@q^Qh)#kC!&TcBfThj{97 z8os~Zr?Y9ntdAqxQJ7W`IDE!0v#NP@Pk(bdFmcvUpQD1t>ghd*jZKGqZLazEr#vsg zp>T>&baXa}iIM2~yB~j(v)oPlV&ETavf-XErlbSYC<=mYd5S_!I|kd1v87}qYVDXA z<maEU!Io*`3sJO~#DorwG$tPckp63Yyy4Bke6W76UTp&yKM(f|`f*2;dyZ#9VJl^B zYB_AEg24QK2`U63oy(y~Ama!$37A9n z!<7~M0@F0Q3wKyDqa>x$9S9p6MmLeT9>S8Hcd*8>uAZKr!$%uJ(eeT{B2d(2y)c(O zp&I1pcX{-lXD@)ciOESrJ)KzX-OSEXhNLRx(!+#6`WO_Yb+#k$JIn9J0u>9fWfFP0 zvlGif^&X3NOPe2+$}yzcjq(B|hPX5r1+RR(UYudmPQ=ldH%{BL1$@(pOR z1oq^te}#FDUnoh%ucDuFXL(uKL@b;Z1o(CGICy^hw>!PYM(LUNC1YT$rHNZrA2>WVfH^%<7u`PzE+pQwUi(VS=vc zhUzJFz~7q4EI+f>(dFueWmXyC-JitceO!s4&mg>RpowzI884-zq&O9b@aE+g_mA{r zEq>R)XlsccAlg7+{-~Nq@6tTqN&QL~(Zs??ahZ^e3EAy(S$)E`qfRJX9u880d!YB{ zL1ov1PhT5tuU!YQ8B`aEBO{K0-lcG{@?}c4bh#>l-TyO2$5qdm>qYhO3D^EC|AW%W zoyqC1u`a{qjE{RmD+;SyM?T#QxKL*Epc-Lc2SEH#L`Fv(**yMk%iSTHQuoOvQIYDr z##^AosKOz3)l0u6vNzSpeSHubth^Gk^~c-hk@pMUm#pcB^1%Lp5W#S|5+s+9Q5iuW z%U!YYcvYJpDZZ35b`~7ic(P}8+#j{lcC$mFI&)h2qNLS@ojNLZm7>lWm?ovUHiMCAw5;TCxg6 z3cXz}#hR|OA*is1^IM7X)Jm|z!xo2)Sz5!zeZ9TGtuyxm8u`!CHI12qm;Oy|0=$sh zhoBibOZMN#R8=5*JnPvy65GsYjft<={y$Qj?u4eg--DXQ{6kj%6S$VkTfe}`90WEn zQbcM18>3K%=7d0L1X7a!1|{16D?0u+I~#ZnrSp&5{96#Wo&WM4iN*cdd(CkBIW^h$ zp(46#O8p=*x0x0Iz%eM6ujelaJ@u9ih2K!}-DIo*DeB_l$55IL2<~yPK-&MHyEvva z5>!4wcj;csm=Y=7mA-QlyFiuN30M?BRs`WrSFbRq^)_F^qtPwVMHYQjO&gfdG4&Pi544>WV3uNKd%ptPI6zgCdQ z$Hi6DP&`T_EzjV@cCVyt_Px=699?6}?3NLZXdlpp>pfrQB&xyqpjGTH5xF)cO*1AQ z#E%8tsaQh*3;-g{5sr8KS~Ry!Zp52USGIPDaSnd${sF980(*>U)}}?H9mrd!+QslxJJO z{@*9~yWN9BH9hGTmzqdClDxVGq;(pS!s$ROP8v=hB86;&WK`+9))Z*`FEB|4e%5V1 zvIDD2LY3XX5g{xv-0BZTy@wrR$j8Kt18!z_ybVmXh+K-O_=4w)?b0TDZw)P9d~A3} z`Q5Ey+d)uEdP9UTj;c^#bN>jcAjtWEMWW;;%3Y%#H-WUdm*&DUom^i^=)HPa^2)lt z1<9YKSb!CvU+!$a0}#afL+KevdDv{GLD|gk7r`EIoBTt;RXXg)rxhPWeTQ`bfC2e1 ztHFDgI^0$t3YpIIb3-bN4y|={bqsEStqoEDt-7h_$ht2EzHA~$sR?lR z^!D!gyzTG@yw2hvb*7VwzZtV%Y1}{G@vH^&j zgCn3e;TUAOGQN_Cz6V#nk7bR8UvUvAx%}MfC-xCM;K=Ne6_WmR5+q-({JP!*cu$nq zpYc5Oxob;%-`e&*ZRd6^%HP7Q@O!_*R{dEr110gV)%*W$X^j6XyZc{T;Fbjj7*?9# ztfRp(vJjE9lWYN%GpU%r7CL2V<*`{E*>#iSYp|~__siMJDY&dZqPKe_I_p#51Zk zI|4N_GKI}Gm!TnBQP$(*<5$yoe0_ZrsF4phf`b98B6p}*r1l|G^Abq-hr7Xoa28AW z7G&83$%EnLFb50*84IY(=5W#1)~|qsl_PDj65y=-04rq#?+p$N+y$IqVUJPBeU7Lv ztu{7>le;Zj7xD&i%WKDuQYE`#DT``$MMXvITW#o6itrqTvRBGJ!YBa2RtBCK=R2&E z+`;R*D*7PN|w%j_6Zl(>2T>NXIf-;oICpN6b+qJ ziMj@BTGS5x>}HBY9D^GKw(~s%kJ)4&c{0ij#2mfr{;V7U3rXr+i$dm7OZo6=0c;?%KP3CZGeag>J$5_{HtQWt-X1Tn9r-5tbEu1|#pz|>tQ49KffNvy z=-~9KR`aO^<#2}NQyN`AjcyQtqtodzYjwOqaASjGX%D@WygCfgYlm{8PDw=+#a z{8Krzq|B^5pLK3_hPREYBrhIMd>O9QU|cym2zphO z_Jd`iUFmXFKRM7|h5M%LF5fQCXR{fgOZ|+`G>)FNnQZE)w4GwuMDpX)nz?MJ4AbS% zXta5|ohvN$^5x5&bD(I%$1{@T@D&iNG{CX|=xm+Dh$!;eM*(Lp?GB?yoz(D=&BD7r znrOQ=qV7)0~z{F9e#f%y zT`LfF7nGKs=s&B*S~3Lz;^(h|BFwV4u!I7zSGOp5-4%aYkVj8+05bB?;&V#S3(`V) zQPHJ-9U${z5e~7qGBml(=jEFe!r@TK9+qu!3sh)s_FTI|5TPUFAR zI!pgH?caR6mO3gHl=mwuS^$pDJmT4xWcG~_+URosKV;nhTiQiL3o~ZG6&U=fOqJ`8 zc#%VcK?d4RgroDBl({?f8Q<2Ix;nuO7_R2);`Fy&Q(0Xj|0l`qI|G=$7-ogi*Ok3p zN!9no^Ig15!vv8U2|4j9W`|)RzXmM;2rSG5lu%L6CUrPJTnLN%=PkVo_!C%vp za^coRP@T*&NYN{-TPl7UDWAhSU-8Vj%Xg%ux)npZ9gLM~`P4y4VUCr8g^JD+??Rah z*DgB*yaFuGltAw;;$*-5D?p1db?Rd}bE+2_;$gE4v4XB>Bzd{6okVAuiSh!sRqrzh zwV_#!H%v13xA3(`9p;C|+t}DNz-ls1#w^0}tR~#=r0+{nbiNP713))Nb=i$(EMIbA z`8g@-@J9t2O_u*7pWHeobER!;)LH-e)YI3otchql)7;Rkeh&;20iXb3JH#;{qyweB zXFK}nBVYbOjzP!rsVSlEfdJDLav6Iza%ckZc(6Fpsa)l9g$tuhqSOYxkTF){#Zd_ZjK`Hn^z+mv+m=`bi2Cv?e_hMpG z!Y1QSIek<#Bd<~M${EevDup@4yLQ&NkAoezYNGeNbEp~a9bG@1tDJj>_f_2OANqGc zYL8mK8PUl0xOD!?@#hUx%`xhYx)`PND{|FwNfb>&}Y z+m||Uot(}tRKCE5#SWaAjh2wk{UuM^&~-ApDH$EZMr zy(MAUqaKUJcDGb>2x=0^td{kI>|-yH<}DUjCfbTHeEJ$skv8AT?_^IqW7IWMF4sn! z<}$=v8&X0&mn8!!!}=vYgC3nM7aQZT8q=`(_{RRO(Ay$i9WJ!q?NQl3TM&F<5X|j^x08+5O z<37}+1nkK(TiHpODC#X*7)Nb|u$ybpj8fS$w!8$wCP=nF$OJ_L0wI`OXKfXonFpTA z8Zdx_)Uag|czbhvg$oWpus$jv<1Yu4c+oPDHGX%+24AYx&}B*T(3c3*4BT2TYdgEE zr)PRm=AHB~ItT@dbHFS$Z9BdIVF8C!j0%!`eNuYMC9(J(6e1aIu||)%i*dMGnn93k z$~zv(z~PlSl^dA>5&x{<@6o>G5mq!t+g~PjawBa>d$%dEZFJ2S?($_p+;W!R;taz8 z&(3m{#Tg&iQ?$kIY4>%)yarcp^Lu<1gVO?CPG3zxX#%w970VPn6J3&ML&hd{@Q1FE z#S~_f(|t?32W?vmB_iQRB^-FH{kjlG*Unsfh+h*Hj*XV^UxgKsay~YPjXs=QLUV(l zUB)klg$BtE#)eq-@$1a(I_*3xo7#NUlkT@91GO;!A@im7014A)^oc*~seKL+ z2ub3qnvr3qYc_j|%|ME&B~w$F!y1VYYXpk}&%kr^%xbKjqM0&!us?aw(~_^SP$bp6 zcBI2auXh#HU4ZtLboYP0vZ&R+OH07rR0)nZbSrewxsS1iPgnUTBL%_ih=Uz7eoCW( zOjDtbBCN0}ZJ0QT7JS5}7xM7$S_z=O6wxfN;sUlMxyZh$6M<*-A%s)6G8qN_&Ch+g zZzjLkQsR9JSNc4UT1#@~WXbzk;r-qsrkvqb<$T<60>{B5i>O+-qEK)Y2a_N&xJ1;d zG(gedOWRg#lVk^c!MXK1pasus?K@uT>0|5Y_lk46*9Z$-C`yMf6G?^x1 zw65^o9xxJMTp&H^R>9jH$+|!o`XXa1pmn0Rz~Vb_U_vY~u~2oFQkkZxX9{Qyo>=IE#AF;?z&m(0 zvbqXob~*1zN5v$LD@vFsTChG=jFR-C!qZ-Ud6GA{8GeG8lMq1AK$hLb6!tcs^NhH# zY2)CwGXdI_3D{OnsvFnI_&BD)u=x&1E84>F1WA#n(4U49x(le`pcU&>!$2hewoyj? z`dp+8Bd!!cpX-H(jwqS#u$i^;B@3x`i(6<#Uas)ttS2pjFDZyaztWF36-i~ntmi%(+vxA*6DSF?#o1&rcm$T{kgsL}E)`>WUj3+mnpfJ66ZB_sFeWg-$hrwA z;jA|_Fm%nH2o2biZW=A|(tBwqDtEH$sRq$Z6sf^NpwbJ>-kKz6BN!^R;!6{==0Mc( zbBCZ6t2SU7xXT}6!cL-#S-f$HPntDKyeWh3kAA?KE|NqU6PW>DUrbr)Y*I$7i0fBy z$FF`OX7pP=Q`~@wenZ_@z|j!~b?Nor2oB{Ydes?eD*95TeSOo5ji6s4Hf@7DyNSxg zw*T3R76xCMN3{^^?M3n`cIp=?d!$?yq1Eoa&aQ?0|7oSOsHCF8*dGinMci_7;i3q$NB%STN|E~q=W#Suv)`|$qt@8w9|Xfl2=RHJY=OeYJuPNM0V3J?ftmlj~9@m09(A}I+;Z;rZt1} z{=5Btx=^i3aLlG94e}*(V-9XfNCid>71fcvC+r&)9UYdqyQ7JgT-MD{DxJ2OU%VIo*XSAeY0Eb3u;;}CvCc~=6}s&- z0%*^SE6jFB7uDfVNLIsUK07Njw7>97XoL4NLWIJXiw>Qx^zIGq6K#~9plJ~)HS*`S z8*mLc1Mc(=r6oLJTY+wX<(<&Rnny*UBhOJ5mcqC}L1yOhGxj>d_n!)Numqd9$t7`m z&yQOYp&0a;7*AAqX9PIPlwOh6!S$~16p{{5*LS>UJB|+inKD*<1GoPz*)eJvFNi-s z{aWXSw_3#FU5tGw!U(sv%o0mTlY+R`_(B)(X8sc=@$)h39?1*?6gaSCg%5k4vWGkZ z;r8~EKp<#Eg62)m9@VOh(aMSOm;|<8`rd(>7Te~6Uvt-ecOLV1Jems}*Icbiuo<`! z{XcgXf(qw?mlF=?*S#L36E|FcX$;ndk?zszWfK6^YHoYVar7v51hC; zjgaXDj=`W%>T>Nw3qwXSoB2j}`mp^UKugy~UF16TDk{EsgoXB&9w96gzCJ7urXKlv zc5|gVt>x|bJHNFzZcdtoaM7bEM0}O{R!jYHc(xP7;-yl@XW2Yqb^ogsjeCR7EgPv@ zcV1M_S_)Cj9-jV#gLD36rC0}Kf32P6O!OQ2u=yY+EA;jRBf0;b^#LobR0i4gN1g8v zeYf@>t$4yZ530D}mmQK>^jkogXc{RqS^vV^p1&aD|AR)hr{A{9T=^IN^tK@6G~goK zIMxma8%ymBpaCCR8=q`PiJ?021Dw^?LV1I9lrlelkK`2{rNd|Ts=DEq`8yXM&OLb4 zI3?k|27i|$VvqJI090ZzK!s>xw{Y2_nr|qU-7Y_`XLnB9AHsr-pEe( zKMXnaYOO(j^cH^U>iXqh<`GAtn@ze`zH~;YyF6;CXT`^6Ku^*HqR4Z~^Pe)-W1T;n z9oc=^NmzmHt8iMIQ}XArs9ig(R=E1vw|D|@YmXb*I1H-r%zVOvK}o$0R?>#7EUajM zMv`2AMXc-uTG6qAo%$VSCv?=<5%n>4^h+0O3pKY7^K#tL!%2cq6_|&fZec;POKRCLvTj`y(sIRbb4U6+M9l`va!KlOWA_ z`@c2Wd2NUQ=iv! z>GgYior`eT$VM1>BB6Eb(rv?>7-|AuZLnwP5d%vkyxK5`J@7Ng)h`FBXO8d0$7jeG*9 zcEa1s;4kk)R)XA;UE66w-r)A!hXjxq0IU$0Te2vk4(Gtpy(Nk$yoo~WKn|#W1}qge zolASF9P5|94|!<7i4M_NMv;KQ=n-al;w654N{DrZ_g7XrQ@rmV*#YL(ti}>MTMZQw zmO+=>c^;|qjYx51NU}G*gPrfR7D+;w95S=UKiEv7dVGjjqGbZydg%!z#18u*d40hs z!G3U#Z=S;9lk3Hv@k7=RUXzt(_G%y!-Y=+;L_&h_l)htbM5j|iYSt5nTvepy1;10) zM0$57NVoDSRN_h0gRl;tw=zsbWkFObf|-PPzky$#6SwDy_P%6#cdBITjQ4|uT3$QF z%!|jZ6e%;VF%9wk3)>J(FI!JZb95Pos`e@??-IYZ+z7a!<_Q-xg1~MW-}@v)!94gx zw-!+ju`k(%2G2r*u(>9XPS|*P`+rVZVVb)Sjw!P8j>g~g%rUF0DWP|qh0UZgl~K{d ze(sYG?$ys{WELQ3%1;%x#ECGG3D6JjT?;hvB+DSnIY!I#dmoT;%S+ng_mm~do@)Lunr%MJ5QggHeGkPl zT-N~B8%u(>%+azneH(emFMH`CXXQBh_ga94RY)Mx;&NqQ>EwC%KMKx#tX{`N_)#l9z&P5xyL0YS#__&4#+=~87dw!Zi2e66 zrt5}}F-Hl9Hw+H6QqNvr_aAhZqv&*-oljRf$uFn z#adigMhY-{=qxv5|0^?HZ3Cro6{f6T@^j^=Gs8O{AtTcpG;k5D1koDtr2X zTZ7~8ViW1&KW8XYDKOj__$!viIyvf?8^2ybIT(2}`gC1k+kN_RC#-kjD*n9qUw=9_ zaNO{bOzPGzQUmr_&)lr^6!apU@~L!OvS5qK@_s#FJ})t=tK>^Y9W}#uJSOf} zjy_qHw0G{;Lp%Rrg}=|w5)R+sv1O-LR=yq1#eAe&?~#<&enX}2=pSu3Cob-09|mWc@R@=pq&L)w}d#(lHKe_AnZ1L0j8qIlMZ(tibM z6Y&}~h0pXT+SMg%L}}XfTzpUMDZ{i5SNz|I*uY043>wa2t&%M921)-40ON;%z+;=l zG^{0F2QZF&e82UHQfV!86s9bGA&8yEVKJVx2nzHH;I%Vd8pd7jr@dMVd_beFb|`Mq zn)rst%)q8SBcF9&Je%FRw*8x^bbK_{>uB zuc&P=+056mhRi2IMbZtp8(48O#H-QEaRgewSXQcApSW_*e}B#m-$^CBS5g z`pTXV`V&ADR^DmpY+3U-GjvaOQ+TS-OsI44_25XH*nRXm8&p-i`RZqCR|4jF^LHHG z&$MWwEl5q5>6YNrJhD84UPxoV(9`xKPak>HuudN+XRj5t6<`c70rg)4_Rb2VS)A`! z&g0HNRy<3yu6kWeNn2^R`K3YHM$pKxH!a7g+RECltsf2sGs~Xj@DH^WVeA;)FQ>5f zv#)2J;^0y)3r|gJg#*CeV279mw9-tUi++~pci|M?&r+)YF)W`^Kw;JX!ic)ZGQU6JATgs*s?C4n-v9A zl(SNz9cfS;IF-+&rHUGsKva4fE|{YmA;R3kNmz9x4Gu}?m?RQZ@6Yf zb}PVSh(*XreCxfElQ*Gtzbt{fb4^CXhY$q&84mp=;K;&9SU~-#$*;73HQI0MAo8Xz=T+J})fyfF9f(U^ny*EjxlYU!o$6A;lZliYqrhku>; zP`b!+LJN8~tr-YST9A7k$>QfFN>fEDG2Ma+=x8mz(yztIB9XBhUGsmN9wTC&zRF9 zR8P)zxz;H(pm?hq?8pn%^h@cDi9Sm2;H{?wJ5}}0`}G=(A+{Qk8*z?>TC<(i?sGnh zGi&q^5xn?U>;N-xJm8#zcV@mlC>g$5F#FuKPJ$TtF=gW&;iCaEb-0v=Y?(q5*N!6~ zS+fWbm`Ji*=Bl8B-6mSJ&K{@2SKqRorB$g?OC;E!5O!Ccg%u}oBv^h5z!}2&Q?>l( zA3$x1jx!CLJT$0$O4f;EZVMf&efnws(YYt%YYW+{nR80Qd!-TIM&aii$jA=gyCYRH z=8-DPNJRvR<2|GLb!+PU^TyaU+SU9ES*i;KfyZSH?`a4%_)Aw|SrIpcVvmmaQfxW7 z?aUkSAD9B+13GuMlOpE%_PurhQCb z80lNYCFa{TR39_Pb;RF9zpANSFOzqa6KwB&t0zUJ(m{(9(1=vnEOVlsr%tRX0P=*m zusxKyJ#O;3tJAwBRgSp_Bi%HoitAs^(XFaQYi%}TQJF8~SDakII|?MT8=(4b(*YGH zDFS95>4_8s7DtEb?lz}bt75NwF$j2U!1W&R^Ah?W9@*|=nR$*76TEQI7PV(xvezB8 z99HnSwHgCV|L#SJ#e0UwCWy~PuL+90;y;h~F8V6^N+Xjed;gj2{LF(gjb8(aiYWIp zaen(Q(&RhOnaQVVK_cocoWWmY=;0CwDBojmADWT9D}pkD1HI;8TCiz z`16oV5q99M{?5tTZa{B~O#riYKYII5VdLpVI}9n{i~z*udw)Id2t!wm!6N>=oiLh} z*O(bb{VIVUc*TTlRC@Zb?N!xAO2EY0v+gL9_AQ1Lrt-9y3el%LfFR3wo~Vv`$hpv3 z7E9s+cDtke#t>WfCZumelk>o_vgl*Dv<@`nH;VTw<0_>hiZ`@>T4z9xyv%fhg(N@p zgD^zqoKkLRokS`l4NK0!lKEammAffG>{22?5p7SDOg)GdU7oU?gsSw`*RQ%X@=&_i z$3bQ(nLA^dwbS)Kn$jLKo`acLr#)V7e0G}={ms+bTUY}=VBU&!*(7Cc$-Q~Kj zT_PNQDbLS-uaW5_x?C2th{!!&8+yo6xPd+}@P}oaJSF6@2enum#VjHid3xhBD>e?# ziEHT7Vvbohig#9p=7`t!Jitv>=rJw~v5}342@XCnb8KV_#=0@l6AyG|x0f~~siytb z4S)W|Qq8bufT~F%NS|A3@2%%iD0ct5KjF=R_o}y z$sd&LnD#%=GaxS5CY8t>0k|Ev_5!n;A`RmnebAJ|!Hf$`h#3{%7l4m%=sQ(@L@oH9 z@$H{j(?JBH<7VId9)J)UxFUVOVb}EI>fePZpy;pID;EO3>s2*^2TD-BSJnjdTmV4} z4ooMwvq-@=eLDAeBeMTFph(CAFvkFsn6}hzmWev^BJ447E$0Dp4$KEY6tAvTxhw%O z^ZPz1_EszK{flSvr84Z}$fIG;H$pBFSnD(QvcC2{sdWu=t z4`c<1ETlDxUqDAH__FmbAR|LTYO!&vU|j|zx{ ztCPoNGI6Z=9w8@Dn%8xWT5z`5Dd5EK5NsC#WzluEyL(8#f!gkVZlLdg1L9$X?u+LU zx`rU1@-SjT5G|Rc4(I9J@Ny&7i$NBiN+)aI;fNeT%rm`;0!w4|J*Gp{)Dw5sYbzPpG|L;$PR&z@DSR}jHP{Zv%e%&W~LX>$tT3rqZH1b z`I%?wL!jF;atIaXATwN@!vd_HSXO4?*Y*r3q@ZrSIBZEz-K~|$#oa-kMe62@LD?4+ z%t^x}+c5~B7tiF->uxo2FYWdbo8z+85;G`zNIvagP^jH4$Q!H_s&gnn@0gM};wmeo zcAGzFrjBs{mVU3{gFFvuu%M;A`ugn=Isc&01zGC z-CAjVRh%8O(mK@(tS0e8ePCA~LPw{nb9f+wjdCbPF+m~EO(mf@12jMmqBFY2Mq zd}h}{bB^vFMX4MHZbP+1vOT9Yk`^o3?>JqJq+JKCg;JBusLN}f1@ zIVp-wtbmvj0}ayCc740hzd{jLa%$tVTy5~(smE8Ch`w(g)1wv*FlA0Ztl*C;#CAJk z%8}ISqtm5{P90YXC>-fo>}MpW`tf~D>91b!(f7v~GIcS%Lx0jjyasCsHU*%@F zFM|HCfw|Eo#z(uXtZZ~f&&BVN2v*uzuAT`DoIeov5+rgipLwxpTY<>h+0=XK!j|2I zJ7WeDJmA*`gr#bYTTz#b=Ku$_&yP+5-4Kv|CsSCZYUq15pxvXvED<#zLHy8Ey#v0X zCkAUrms;5^n{d)nHzceTcL18F5}34wBKt9$9>xL={qWlO!(%=!Sg0S`KxMnw{Fr2IA^l6idg9+h`d+9zw=2H$-T6}hE(GE zSmRbttxCaL^I^yfZtI?%UEkC2#d^WYGq7tjnkjP;2KJvQ&U3AlPa&%MEW=Jvx zT9UCTWtaD&4w~I5<@R*+g*L*DBF>U=DZ)*$@yXDny&FtU5@A-CS7g^gML(?^ABcR1 zK!@=A7~rcCaOD&D!d>4%6^`^yMKp=0xpoE$y|$&Xx5kXIF{2n_+-ZbFqWoA}bBKq7 z*!g;5oUj4yBcVZ~X}0FtVxgueVj#H(1%@0jXyP_>M(jJ6KZT!%yl#Ob2Gbw|F&ccQ z>tN`b%uW1a6JGI)9U}7~(?)(9%_hn-c1zY`kg?A8n+7u0KdyA$^WW)?w-Zz-R1k=v zpK*l72l@GpkbsG^g1$ncwDx34q%Nsbgn}5fbR5qf*H%?EqJ+kk@6qm}b`Fn_eW`Rs z-@V1#8w01eHs@NexQVOqt|P7C;O>YK7086ay<%Ws zAe|Jgmz4&InEBptYy`{<)IRNbT60jsuO%6BNS5E0xrL(hAGAUzm*6DJGO(mO8UIAqgrm>(f(SO!rFV^Oml z<8)sHfv?@Ekk11JyXn~-z}bM6B%gG&yYWjz=D7ki3h0d#`6EoH1BYREG0o&N90+}{ zqtSE;Y7d*N{gSoic;ncNeLrxc-xTLe?zjn*u;t=yL&oyS0@!Pzl|oKtm$_d0cpLI zN$ImqaPHC4P!9MH6W~8?{{F!{p`tU@VC@ijb$87s+gzI+TQXxjt}lgkLC-nTn>&9N zuE@w2eFV6jEx!H)^bn82`if|2rU5Qbf*sl4vz6%5NF`(a{`7H%z#+W(;bZiLLg0Cj zv}qe_y!SX$E|pzA1YUGfzO^<^GLh1JFA<>E#<%O@A5?IIk)$ba{P%j$nc5&^Ni#Si zM9^=0%XUTv$&i#(?h0Y)ia0{}I1Wc-7Wj@8!n1W@4qBC!*(Z__JPVm9l|TU{CvaLq z@U&T>;J>e97}?fTiC8})_5@9}U9NRyuw2T!kmATj9j49^@T3leBv$NS@$PgNxrc(K>EH4$jk6pG584R5%K^_NR~mQTm|{L zU@;$?DB;GFI)^-bg%FDz-$2~Em1ws~tg4RaIVW{T^=C)MzkWJK?CdlQGaS#&hB5r; z>92k9TOnT3o%{Wm)AwW$nV+QfKW-N$7B9PtO;B6529LdY3ow3jK=K0C09m|>8Cnpu zSB-UUXO7zC>R^lD6IR|clMpB)l(lx3Px#0Ei|*Xp(_`JUNd{ngM2g&XVG z>aUX$K15v}V0(4zypo1^7v&=~`NOxpZi$wVB=>8~)|n(1CDT5qO_G)qPi|`!Wo~*V zv-vbAlsa1?!PqM{V$64Ku1pKz>=}3-=a0&L%mKJ&7*qc*3RJS23FCy(nM!Fi}Bcsz$N~aeLRaaLtdYRt3GshY!3F18|FhP731BR`)Hh}i zexSfUvbx$VA!zSP9OAB)dXF;PQHmgT>sWIf*l|crAPy9diVV&4Yc#W`;nG;EQ<`n>C$04%BDirkX?N|ZuI!Pa*1=%0%506b!^_wT;USG zQ%d_bs`M=L(j&o#fr+**G2)4x-gx6MNl2W#{l)2dQ;|_m?}&j#tgQ&W_UzcUUr0bkl=@Qp zhF{v7^Yf$6eGIn0SQ^Jgjta7z{kr>R_xqoz6#}I@=6=eIR(By+7&iOdOKd`2%5^cA zPWTh(Jf_BbyL6`ore$jRk;uD3701}lh5BYArAB6vqw||7>i$82X<@h`_T;+4XtAqX z6~zY4GiByZp7+5$xISdSf!juL=)G@3vMvmLB6spi$bvvRm8ba**C0+I?hwtc>KL_T zbC2!5PSN*!htSlvH8pXzI(>9@zv&9w+?s@u`%SXD4dCa<#T-u?JlvAqB~HEg*(yd1 zkK^!jDSh8zJYBHsi$Ecu$w@%5PUlIEp#841WvBtN^f!!teqc~g*dmVKXlcBzTBw-! z7NPkNHUGY7&5SYra9_h=4EyRiW#y-g&@n#Q-{v`a%AP&<+e!(>Jb*0uqRoD|LC*rM zbEW+2=Y+#IO54e|akv)?Epd-M>PX~cO@>Q18wUW-QZAXUTbxWwVVWuu?nH23kQXnk zQ=9GU;TN|41?a+-v3^FN9_dXYu0Z$2W!u50MPOWo*Xj&?wOelojKV<`??LucM#kE70|5ziMF5i#!gn z!25?y-5xUwIhfpH(8QZc$eM~|+}H}OVrSV5$j|F#FixHJ^UF`@?HB^4|E6$1U}@^5 zgnJ8mBui10OA-ymvomc5jaz{=+$ZCrPU*h9>HsQHrQiV!u395S08r%`%H@%mv3%?$NSlMPKkCk}4+fWm=R==&DmoL6r-=o3^`VqiwET zJ&`6QP+6O5E@0{uPt_G#dgqmf*>a}NX#L}iT<0K$pW*=N2^IET)Vp1wJfwTUAz|_; z*}Wj>=Mvt$tCN*~o7f3VY*I?|&eM}avy)NauHA&zZmr^6K@aTh`q|eA2 zgLORq*~f9=+wD%wehw2aeCQ<{Y=;Q$y$K%n9}hSBUP&$`VfvQ5Yj@KcLHq9Y3P)UGfvCS4zSXmhtKAw3GY1Tvph=(3aRy_?26iH9R6TJQO?*e&cOPKPh-qJ6FTi+p2Qu%B zHf?36!zTrlKn%Vd9R>+$sByLrv{6i(7j&wSK5<&eI6$|ESuwuWTezauxdk3wSPf1u z^swp6%VlibyD+O;;tacfnuJ^I=QVJIBxYeE4K>@N0V#H~buTs{fm0@j4d`cB8}m;P z_RzD7aRch+A8<$XYBo06UAA3$(s%l(J3x3h+bfE`dEP84A`L6d%DZ<_Jf-8VjIjE z<-`~4hrI;H=N)MEQ$y75m75_mcKuGIs3?TT>H7rsT<CtG|p<(520o{pqh``}^LYK7Dc}WSH$k^sG~Nnd%{Q408Tl?Ajz+rc(fqt4N?7 zQS?pUgTD>+kJW52muMHhoyBdm9(D{})-}276N_xXE5xyJfIcwBAmG0EU?j!a!=M^3 z?fGOxLKi&HumH^FSn)nxZqw&KK@97!VCg5V5&FNP&=(=iraAIwE~o41z%+f2nbnTG I?JgJo3wV#~i2wiq diff --git a/modular_citadel/icons/mob/mam_markings.dmi b/modular_citadel/icons/mob/mam_markings.dmi index 3fe7f0060e14d65557c90ab29931d36e924a2142..05cc1731fd5ac293d1093363fed6b7969fa6ad6e 100644 GIT binary patch delta 14010 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 delta 12768 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

>axY;GRjwDnx+ zgtF4hXykp>oqIi`JA#yY$o<+kJN$H#rOebwX>t3hld|UNvgMjEkyg5rY(7bm z^KCOCuOU(Z#L6Ju?XcCQG#@ARXe$w|e&7=4sew8ltmZq}bv;x@NO})Sg{AI4w`s>qfN?hR~PPnG^3t-`5smKvrBckWXT(FA5x9(z+SBecvj>1H+3l{nkE?B z1F4%!uACKUrE4hCrjEU)3cgoj9k_lLS#iiTnMeXkOs=kLEa7SUj%WGmLM4;n495um zOv%wG2`Ps~PXT-a%)|L{)XH8_g7sa`;a3j2lb-NN_}d?%foRLzyCHs z#_|WuR)~-X-{oo4a`R1CMU#)@9l9?-`4R&Ish;*qywu5+|CxU7ZO+IBwrP08`<2F> zz4y+pMqZy=VMcQgUm8E=n{K_p1R62ihUJ@N$c{OO^Dz2b6NIp}N#NhczmvO< zrk^!GF(AF9vQRI)Aof>bN$D*Yqtxq6>$klXmP@M|%~!{sDU8nTKn45X`4gbGSO3oa z@k;24pY~F+)hbV2w7wesNDml)H1p3O-$=*BP&Cwjxp56TW>0TBGuCyGgDuV~G-C+a z0en9>=a+=&je5_dYOdC{1LS2mcC(eQC&P=C`8TQ4&)cR%xcf|!}ykZ22Lr82|7vWL8%YL>;K`4|mvmbC6>~M9W^S*ycJzcdv*s7tXid@O%Fk)NiLuq9Ej z-6iRz&CPyR?YUrRMd5VfZftcD2yB6mKyZz}O))~kwFaSr9vwGo?I zG|oajy>o#E={wzaJT5^Dlg9MHvyB*~R(OUmRaceJ_my>LR~<6`Qpc9$_e|ZRV$VQ> z-i?#wokGVoIT6wkLq9QIi4}Gtf81*lSZLxHQ2zKip%Pee=sT*!9Yc-%+f0@fMAs3N zfTXbFL+HQw=N&}s|HGF0{}z<|;aN@rz<(nia{T+h+pzz?lKy`dPR3utiKl7q4N(sm zOQrKE5@@ z#o)QqW=`>^-;eF9cM!I~c&5vQ-$Y}Jq3|YeqAxw>6d;qYpk<8PpN*W;8(xeygz!E; zA=LH^l5uBGN1ko*tb%J2-wgj}T6#@zFXIvGg!VQ$v#@ijZnL|M3s4 z4BxVl$ao1goMhUrN8f7CtVL6wxn4!+UCqUkgHrWPYJ?bBY&ec1_N_S;gCey;z zGGA}Osal)wjm;oEw@n>V0>fG3#wKU{LS}z=jGSamGJw>#^yfprrR%VsK7&2dd|07m H75qN{1H}x{ From 3c7137f95186b1b12c2b18ab8e7001793e24a4c4 Mon Sep 17 00:00:00 2001 From: Timothy Teakettle <59849408+timothyteakettle@users.noreply.github.com> Date: Wed, 5 May 2021 18:19:02 +0100 Subject: [PATCH 118/259] what if we didnt break 90% of the game --- code/__HELPERS/mobs.dm | 1 - code/_globalvars/lists/flavor_misc.dm | 3 +-- code/modules/admin/create_mob.dm | 1 - code/modules/client/preferences.dm | 15 +++++---------- code/modules/client/preferences_savefile.dm | 2 +- code/modules/mining/lavaland/necropolis_chests.dm | 1 - 6 files changed, 7 insertions(+), 16 deletions(-) diff --git a/code/__HELPERS/mobs.dm b/code/__HELPERS/mobs.dm index 46c75e702b..c6c8c0bced 100644 --- a/code/__HELPERS/mobs.dm +++ b/code/__HELPERS/mobs.dm @@ -175,7 +175,6 @@ "ears" = "None", "frills" = pick(GLOB.frills_list), "spines" = pick(GLOB.spines_list), - "body_markings" = pick(GLOB.body_markings_list), "legs" = pick("Plantigrade","Digitigrade"), "caps" = pick(GLOB.caps_list), "insect_wings" = pick(GLOB.insect_wings_list), diff --git a/code/_globalvars/lists/flavor_misc.dm b/code/_globalvars/lists/flavor_misc.dm index 0affa50a72..d94c677a42 100644 --- a/code/_globalvars/lists/flavor_misc.dm +++ b/code/_globalvars/lists/flavor_misc.dm @@ -17,7 +17,6 @@ GLOBAL_LIST_EMPTY(undershirt_f) //stores only undershirt name //Socks GLOBAL_LIST_EMPTY_TYPED(socks_list, /datum/sprite_accessory/underwear/socks) //stores socks indexed by name //Lizard Bits (all datum lists indexed by name) -GLOBAL_LIST_EMPTY(body_markings_list) GLOBAL_LIST_EMPTY(tails_list_lizard) GLOBAL_LIST_EMPTY(animated_tails_list_lizard) GLOBAL_LIST_EMPTY(snouts_list) @@ -298,7 +297,7 @@ GLOBAL_LIST_INIT(roundstart_languages, get_roundstart_languages()) //locked parts are those that your picked species requires to have //unlocked parts are those that anyone can choose on customisation regardless //parts not in unlocked, but in all, are thus locked -GLOBAL_LIST_INIT(all_mutant_parts, list("tail_lizard" = "Tail", "mam_tail" = "Tail", "tail_human" = "Tail", "snout" = "Snout", "frills" = "Frills", "spines" = "Spines", "body_markings" = "Body Markings", "mam_body_markings" = "Species Markings" , "mam_ears" = "Ears", "ears" = "Ears", "mam_snouts" = "Snout", "legs" = "Legs", "deco_wings" = "Decorative Wings", "insect_wings" = "Insect Wings", "insect_fluff" = "Insect Fluff", "taur" = "Tauric Body", "insect_markings" = "Insect Markings", "wings" = "Wings", "arachnid_legs" = "Arachnid Legs", "arachnid_spinneret" = "Spinneret", "arachnid_mandibles" = "Mandibles", "xenohead" = "Caste Head", "xenotail" = "Tail", "xenodorsal" = "Dorsal Spines", "ipc_screen" = "Screen", "ipc_antenna" = "Antenna", "meat_type" = "Meat Type", "horns" = "Horns")) +GLOBAL_LIST_INIT(all_mutant_parts, list("tail_lizard" = "Tail", "mam_tail" = "Tail", "tail_human" = "Tail", "snout" = "Snout", "frills" = "Frills", "spines" = "Spines", "mam_body_markings" = "Species Markings" , "mam_ears" = "Ears", "ears" = "Ears", "mam_snouts" = "Snout", "legs" = "Legs", "deco_wings" = "Decorative Wings", "insect_wings" = "Insect Wings", "insect_fluff" = "Insect Fluff", "taur" = "Tauric Body", "insect_markings" = "Insect Markings", "wings" = "Wings", "arachnid_legs" = "Arachnid Legs", "arachnid_spinneret" = "Spinneret", "arachnid_mandibles" = "Mandibles", "xenohead" = "Caste Head", "xenotail" = "Tail", "xenodorsal" = "Dorsal Spines", "ipc_screen" = "Screen", "ipc_antenna" = "Antenna", "meat_type" = "Meat Type", "horns" = "Horns")) GLOBAL_LIST_INIT(unlocked_mutant_parts, list("horns", "insect_fluff")) //parts in either of the above two lists that require a second option that allows them to be coloured diff --git a/code/modules/admin/create_mob.dm b/code/modules/admin/create_mob.dm index 0679d9ffac..9a74b63040 100644 --- a/code/modules/admin/create_mob.dm +++ b/code/modules/admin/create_mob.dm @@ -41,7 +41,6 @@ H.dna.features["horns"] = pick(GLOB.horns_list) H.dna.features["frills"] = pick(GLOB.frills_list) H.dna.features["spines"] = pick(GLOB.spines_list) - H.dna.features["body_markings"] = pick(GLOB.body_markings_list) H.dna.features["insect_wings"] = pick(GLOB.insect_wings_list) H.dna.features["deco_wings"] = pick(GLOB.deco_wings_list) H.dna.features["insect_fluff"] = pick(GLOB.insect_fluffs_list) diff --git a/code/modules/client/preferences.dm b/code/modules/client/preferences.dm index 0194301134..f311d1910a 100644 --- a/code/modules/client/preferences.dm +++ b/code/modules/client/preferences.dm @@ -124,7 +124,7 @@ GLOBAL_LIST_EMPTY(preferences_datums) var/eye_type = DEFAULT_EYES_TYPE //Eye type var/split_eye_colors = FALSE var/datum/species/pref_species = new /datum/species/human() //Mutant race - var/list/features = list("mcolor" = "FFFFFF", "mcolor2" = "FFFFFF", "mcolor3" = "FFFFFF", "tail_lizard" = "Smooth", "tail_human" = "None", "snout" = "Round", "horns" = "None", "horns_color" = "85615a", "ears" = "None", "wings" = "None", "wings_color" = "FFF", "frills" = "None", "deco_wings" = "None", "spines" = "None", "body_markings" = list(), "legs" = "Plantigrade", "insect_wings" = "Plain", "insect_fluff" = "None", "insect_markings" = "None", "arachnid_legs" = "Plain", "arachnid_spinneret" = "Plain", "arachnid_mandibles" = "Plain", "mam_body_markings" = list(), "mam_ears" = "None", "mam_snouts" = "None", "mam_tail" = "None", "mam_tail_animated" = "None", "xenodorsal" = "Standard", "xenohead" = "Standard", "xenotail" = "Xenomorph Tail", "taur" = "None", "genitals_use_skintone" = FALSE, "has_cock" = FALSE, "cock_shape" = DEF_COCK_SHAPE, "cock_length" = COCK_SIZE_DEF, "cock_diameter_ratio" = COCK_DIAMETER_RATIO_DEF, "cock_color" = "ffffff", "cock_taur" = FALSE, "has_balls" = FALSE, "balls_color" = "ffffff", "balls_shape" = DEF_BALLS_SHAPE, "balls_size" = BALLS_SIZE_DEF, "balls_cum_rate" = CUM_RATE, "balls_cum_mult" = CUM_RATE_MULT, "balls_efficiency" = CUM_EFFICIENCY, "has_breasts" = FALSE, "breasts_color" = "ffffff", "breasts_size" = BREASTS_SIZE_DEF, "breasts_shape" = DEF_BREASTS_SHAPE, "breasts_producing" = FALSE, "has_vag" = FALSE, "vag_shape" = DEF_VAGINA_SHAPE, "vag_color" = "ffffff", "has_womb" = FALSE, "balls_visibility" = GEN_VISIBLE_NO_UNDIES, "breasts_visibility"= GEN_VISIBLE_NO_UNDIES, "cock_visibility" = GEN_VISIBLE_NO_UNDIES, "vag_visibility" = GEN_VISIBLE_NO_UNDIES, "ipc_screen" = "Sunburst", "ipc_antenna" = "None", "flavor_text" = "", "silicon_flavor_text" = "", "ooc_notes" = "", "meat_type" = "Mammalian", "body_model" = MALE, "body_size" = RESIZE_DEFAULT_SIZE, "color_scheme" = OLD_CHARACTER_COLORING) + var/list/features = list("mcolor" = "FFFFFF", "mcolor2" = "FFFFFF", "mcolor3" = "FFFFFF", "tail_lizard" = "Smooth", "tail_human" = "None", "snout" = "Round", "horns" = "None", "horns_color" = "85615a", "ears" = "None", "wings" = "None", "wings_color" = "FFF", "frills" = "None", "deco_wings" = "None", "spines" = "None", "legs" = "Plantigrade", "insect_wings" = "Plain", "insect_fluff" = "None", "insect_markings" = "None", "arachnid_legs" = "Plain", "arachnid_spinneret" = "Plain", "arachnid_mandibles" = "Plain", "mam_body_markings" = list(), "mam_ears" = "None", "mam_snouts" = "None", "mam_tail" = "None", "mam_tail_animated" = "None", "xenodorsal" = "Standard", "xenohead" = "Standard", "xenotail" = "Xenomorph Tail", "taur" = "None", "genitals_use_skintone" = FALSE, "has_cock" = FALSE, "cock_shape" = DEF_COCK_SHAPE, "cock_length" = COCK_SIZE_DEF, "cock_diameter_ratio" = COCK_DIAMETER_RATIO_DEF, "cock_color" = "ffffff", "cock_taur" = FALSE, "has_balls" = FALSE, "balls_color" = "ffffff", "balls_shape" = DEF_BALLS_SHAPE, "balls_size" = BALLS_SIZE_DEF, "balls_cum_rate" = CUM_RATE, "balls_cum_mult" = CUM_RATE_MULT, "balls_efficiency" = CUM_EFFICIENCY, "has_breasts" = FALSE, "breasts_color" = "ffffff", "breasts_size" = BREASTS_SIZE_DEF, "breasts_shape" = DEF_BREASTS_SHAPE, "breasts_producing" = FALSE, "has_vag" = FALSE, "vag_shape" = DEF_VAGINA_SHAPE, "vag_color" = "ffffff", "has_womb" = FALSE, "balls_visibility" = GEN_VISIBLE_NO_UNDIES, "breasts_visibility"= GEN_VISIBLE_NO_UNDIES, "cock_visibility" = GEN_VISIBLE_NO_UNDIES, "vag_visibility" = GEN_VISIBLE_NO_UNDIES, "ipc_screen" = "Sunburst", "ipc_antenna" = "None", "flavor_text" = "", "silicon_flavor_text" = "", "ooc_notes" = "", "meat_type" = "Mammalian", "body_model" = MALE, "body_size" = RESIZE_DEFAULT_SIZE, "color_scheme" = OLD_CHARACTER_COLORING) var/custom_speech_verb = "default" //if your say_mod is to be something other than your races var/custom_tongue = "default" //if your tongue is to be something other than your races @@ -517,9 +517,7 @@ GLOBAL_LIST_EMPTY(preferences_datums) // rp marking selection // assume you can only have mam markings or regular markings or none, never both var/marking_type - if(parent.can_have_part("body_markings")) - marking_type = "body_markings" - else if(parent.can_have_part("mam_body_markings")) + if(parent.can_have_part("mam_body_markings")) marking_type = "mam_body_markings" if(marking_type) dat += APPEARANCE_CATEGORY_COLUMN @@ -535,7 +533,7 @@ GLOBAL_LIST_EMPTY(preferences_datums) var/actual_name = GLOB.bodypart_names[num2text(marking_list[1])] // get the actual name from the bitflag representing the part the marking is applied to var/color_marking_dat = "" var/number_colors = 1 - var/datum/sprite_accessory/S = (marking_type == "mam_body_markings") ? GLOB.mam_body_markings_list[marking_list[2]] : GLOB.body_markings_list[marking_list[2]] + var/datum/sprite_accessory/S = GLOB.mam_body_markings_list[marking_list[2]] if(S && S.matrixed_sections && S.matrixed_sections != MATRIX_NONE) // if it has nothing initialize it to white if(length(marking_list) == 2) @@ -555,7 +553,7 @@ GLOBAL_LIST_EMPTY(preferences_datums) dat += "

" for(var/mutant_part in GLOB.all_mutant_parts) - if(mutant_part == "body_markings" || mutant_part == "mam_body_markings") + if(mutant_part == "mam_body_markings") continue if(parent.can_have_part(mutant_part)) if(!mutant_category) @@ -1766,8 +1764,6 @@ GLOBAL_LIST_EMPTY(preferences_datums) pref_species = new newtype() //let's ensure that no weird shit happens on species swapping. custom_species = null - if(!parent.can_have_part("body_markings")) - features["body_markings"] = list() if(!parent.can_have_part("mam_body_markings")) features["mam_body_markings"] = list() if(parent.can_have_part("mam_body_markings")) @@ -2145,7 +2141,7 @@ GLOBAL_LIST_EMPTY(preferences_datums) features["xenodorsal"] = new_dors //every single primary/secondary/tertiary colouring done at once - if("xenodorsal_primary","xenodorsal_secondary","xenodorsal_tertiary","xhead_primary","xhead_secondary","xhead_tertiary","tail_primary","tail_secondary","tail_tertiary","insect_markings_primary","insect_markings_secondary","insect_markings_tertiary","body_markings_primary","body_markings_secondary","body_markings_tertiary","insect_fluff_primary","insect_fluff_secondary","insect_fluff_tertiary","ears_primary","ears_secondary","ears_tertiary","frills_primary","frills_secondary","frills_tertiary","ipc_antenna_primary","ipc_antenna_secondary","ipc_antenna_tertiary","taur_primary","taur_secondary","taur_tertiary","snout_primary","snout_secondary","snout_tertiary","spines_primary","spines_secondary","spines_tertiary", "mam_body_markings_primary", "mam_body_markings_secondary", "mam_body_markings_tertiary") + if("xenodorsal_primary","xenodorsal_secondary","xenodorsal_tertiary","xhead_primary","xhead_secondary","xhead_tertiary","tail_primary","tail_secondary","tail_tertiary","insect_markings_primary","insect_markings_secondary","insect_markings_tertiary","insect_fluff_primary","insect_fluff_secondary","insect_fluff_tertiary","ears_primary","ears_secondary","ears_tertiary","frills_primary","frills_secondary","frills_tertiary","ipc_antenna_primary","ipc_antenna_secondary","ipc_antenna_tertiary","taur_primary","taur_secondary","taur_tertiary","snout_primary","snout_secondary","snout_tertiary","spines_primary","spines_secondary","spines_tertiary", "mam_body_markings_primary", "mam_body_markings_secondary", "mam_body_markings_tertiary") var/the_feature = features[href_list["preference"]] if(!the_feature) features[href_list["preference"]] = "FFFFFF" @@ -2442,7 +2438,6 @@ GLOBAL_LIST_EMPTY(preferences_datums) if(selected_limb) var/limb_value = text2num(GLOB.bodypart_values[selected_limb]) var/list/marking_list = GLOB.mam_body_markings_list - if(marking_type == "body_markings") marking_list = GLOB.body_markings_list var/list/snowflake_markings_list = list() for(var/path in marking_list) var/datum/sprite_accessory/S = marking_list[path] diff --git a/code/modules/client/preferences_savefile.dm b/code/modules/client/preferences_savefile.dm index f430854575..ca993be7c4 100644 --- a/code/modules/client/preferences_savefile.dm +++ b/code/modules/client/preferences_savefile.dm @@ -605,7 +605,7 @@ SAVEFILE UPDATING/VERSIONING - 'Simplified', or rather, more coder-friendly ~Car var/savefile/S = new /savefile(path) if(!S) return FALSE - features = list("mcolor" = "FFFFFF", "mcolor2" = "FFFFFF", "mcolor3" = "FFFFFF", "tail_lizard" = "Smooth", "tail_human" = "None", "snout" = "Round", "horns" = "None", "horns_color" = "85615a", "ears" = "None", "wings" = "None", "wings_color" = "FFF", "frills" = "None", "deco_wings" = "None", "spines" = "None", "body_markings" = "None", "legs" = "Plantigrade", "insect_wings" = "Plain", "insect_fluff" = "None", "insect_markings" = "None", "arachnid_legs" = "Plain", "arachnid_spinneret" = "Plain", "arachnid_mandibles" = "Plain", "mam_body_markings" = "Plain", "mam_ears" = "None", "mam_snouts" = "None", "mam_tail" = "None", "mam_tail_animated" = "None", "xenodorsal" = "Standard", "xenohead" = "Standard", "xenotail" = "Xenomorph Tail", "taur" = "None", "genitals_use_skintone" = FALSE, "has_cock" = FALSE, "cock_shape" = DEF_COCK_SHAPE, "cock_length" = COCK_SIZE_DEF, "cock_diameter_ratio" = COCK_DIAMETER_RATIO_DEF, "cock_color" = "ffffff", "cock_taur" = FALSE, "has_balls" = FALSE, "balls_color" = "ffffff", "balls_shape" = DEF_BALLS_SHAPE, "balls_size" = BALLS_SIZE_DEF, "balls_cum_rate" = CUM_RATE, "balls_cum_mult" = CUM_RATE_MULT, "balls_efficiency" = CUM_EFFICIENCY, "has_breasts" = FALSE, "breasts_color" = "ffffff", "breasts_size" = BREASTS_SIZE_DEF, "breasts_shape" = DEF_BREASTS_SHAPE, "breasts_producing" = FALSE, "has_vag" = FALSE, "vag_shape" = DEF_VAGINA_SHAPE, "vag_color" = "ffffff", "has_womb" = FALSE, "balls_visibility" = GEN_VISIBLE_NO_UNDIES, "breasts_visibility"= GEN_VISIBLE_NO_UNDIES, "cock_visibility" = GEN_VISIBLE_NO_UNDIES, "vag_visibility" = GEN_VISIBLE_NO_UNDIES, "ipc_screen" = "Sunburst", "ipc_antenna" = "None", "flavor_text" = "", "silicon_flavor_text" = "", "ooc_notes" = "", "meat_type" = "Mammalian", "body_model" = MALE, "body_size" = RESIZE_DEFAULT_SIZE, "color_scheme" = OLD_CHARACTER_COLORING) + features = list("mcolor" = "FFFFFF", "mcolor2" = "FFFFFF", "mcolor3" = "FFFFFF", "tail_lizard" = "Smooth", "tail_human" = "None", "snout" = "Round", "horns" = "None", "horns_color" = "85615a", "ears" = "None", "wings" = "None", "wings_color" = "FFF", "frills" = "None", "deco_wings" = "None", "spines" = "None", "legs" = "Plantigrade", "insect_wings" = "Plain", "insect_fluff" = "None", "insect_markings" = "None", "arachnid_legs" = "Plain", "arachnid_spinneret" = "Plain", "arachnid_mandibles" = "Plain", "mam_body_markings" = "Plain", "mam_ears" = "None", "mam_snouts" = "None", "mam_tail" = "None", "mam_tail_animated" = "None", "xenodorsal" = "Standard", "xenohead" = "Standard", "xenotail" = "Xenomorph Tail", "taur" = "None", "genitals_use_skintone" = FALSE, "has_cock" = FALSE, "cock_shape" = DEF_COCK_SHAPE, "cock_length" = COCK_SIZE_DEF, "cock_diameter_ratio" = COCK_DIAMETER_RATIO_DEF, "cock_color" = "ffffff", "cock_taur" = FALSE, "has_balls" = FALSE, "balls_color" = "ffffff", "balls_shape" = DEF_BALLS_SHAPE, "balls_size" = BALLS_SIZE_DEF, "balls_cum_rate" = CUM_RATE, "balls_cum_mult" = CUM_RATE_MULT, "balls_efficiency" = CUM_EFFICIENCY, "has_breasts" = FALSE, "breasts_color" = "ffffff", "breasts_size" = BREASTS_SIZE_DEF, "breasts_shape" = DEF_BREASTS_SHAPE, "breasts_producing" = FALSE, "has_vag" = FALSE, "vag_shape" = DEF_VAGINA_SHAPE, "vag_color" = "ffffff", "has_womb" = FALSE, "balls_visibility" = GEN_VISIBLE_NO_UNDIES, "breasts_visibility"= GEN_VISIBLE_NO_UNDIES, "cock_visibility" = GEN_VISIBLE_NO_UNDIES, "vag_visibility" = GEN_VISIBLE_NO_UNDIES, "ipc_screen" = "Sunburst", "ipc_antenna" = "None", "flavor_text" = "", "silicon_flavor_text" = "", "ooc_notes" = "", "meat_type" = "Mammalian", "body_model" = MALE, "body_size" = RESIZE_DEFAULT_SIZE, "color_scheme" = OLD_CHARACTER_COLORING) S.cd = "/" if(!slot) diff --git a/code/modules/mining/lavaland/necropolis_chests.dm b/code/modules/mining/lavaland/necropolis_chests.dm index 48e8a4c338..acceb331ab 100644 --- a/code/modules/mining/lavaland/necropolis_chests.dm +++ b/code/modules/mining/lavaland/necropolis_chests.dm @@ -994,7 +994,6 @@ H.dna.features["wings"] = "None" H.dna.features["frills"] = "None" H.dna.features["spines"] = "Long" - H.dna.features["body_markings"] = "Dark Tiger Body" H.dna.features["legs"] = "Digitigrade" H.dna.features["taur_body"] = "None" H.left_eye_color = "fee5a3" From ea071bd0312ef3716f13850016c3db3d13cbca51 Mon Sep 17 00:00:00 2001 From: Timothy Teakettle <59849408+timothyteakettle@users.noreply.github.com> Date: Wed, 5 May 2021 18:28:55 +0100 Subject: [PATCH 119/259] comment --- .../mob/dead/new_player/sprite_accessories/body_markings.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/dead/new_player/sprite_accessories/body_markings.dm b/code/modules/mob/dead/new_player/sprite_accessories/body_markings.dm index a6137eb908..278a31959f 100644 --- a/code/modules/mob/dead/new_player/sprite_accessories/body_markings.dm +++ b/code/modules/mob/dead/new_player/sprite_accessories/body_markings.dm @@ -13,7 +13,7 @@ gender_specific = 0 icon = 'modular_citadel/icons/mob/mam_markings.dmi' recommended_species = list("mammal", "xeno", "slimeperson", "podweak") - matrixed_sections = MATRIX_ALL + matrixed_sections = MATRIX_ALL // this value is used if there is no value in covered_limbs, don't rely on it, it's a backup value var/list/covered_limbs = list(HEAD, CHEST, LEG_LEFT, LEG_RIGHT, ARM_LEFT, ARM_RIGHT) /datum/sprite_accessory/mam_body_markings/none From e5646404d7896aaff0e96920fddcc4059dedcc4a Mon Sep 17 00:00:00 2001 From: Artur Date: Wed, 5 May 2021 21:34:53 +0300 Subject: [PATCH 120/259] Fixes virus bottles being white --- code/modules/reagents/chemistry/machinery/pandemic.dm | 2 +- code/modules/reagents/reagent_containers.dm | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/reagents/chemistry/machinery/pandemic.dm b/code/modules/reagents/chemistry/machinery/pandemic.dm index 36e102be72..ef5f8e74f2 100644 --- a/code/modules/reagents/chemistry/machinery/pandemic.dm +++ b/code/modules/reagents/chemistry/machinery/pandemic.dm @@ -207,7 +207,7 @@ to_chat(usr, "ERROR: Cannot replicate virus strain.") return A = A.Copy() - var/list/data = list("viruses" = list(A)) + var/list/data = list("donor"=null,"viruses"=list(A),"blood_DNA"="REPLICATED", "bloodcolor" = BLOOD_COLOR_SYNTHETIC, "blood_type"="SY","resistances"=null,"trace_chem"=null,"mind"=null,"ckey"=null,"gender"=null,"real_name"=null,"cloneable"=null,"factions"=null) var/obj/item/reagent_containers/glass/bottle/B = new(drop_location()) B.name = "[A.name] culture bottle" B.desc = "A small bottle. Contains [A.agent] culture in synthblood medium." diff --git a/code/modules/reagents/reagent_containers.dm b/code/modules/reagents/reagent_containers.dm index be631513bd..9b8ff7b262 100644 --- a/code/modules/reagents/reagent_containers.dm +++ b/code/modules/reagents/reagent_containers.dm @@ -26,7 +26,7 @@ create_reagents(volume, reagent_flags, reagent_value) if(spawned_disease) var/datum/disease/F = new spawned_disease() - var/list/data = list("blood_DNA" = "UNKNOWN DNA", "blood_type" = "SY","viruses"= list(F)) + var/list/data = list("donor"=null,"viruses"=list(F),"blood_DNA"="REPLICATED", "bloodcolor" = BLOOD_COLOR_SYNTHETIC, "blood_type"="SY","resistances"=null,"trace_chem"=null,"mind"=null,"ckey"=null,"gender"=null,"real_name"=null,"cloneable"=null,"factions"=null) reagents.add_reagent(/datum/reagent/blood, disease_amount, data) add_initial_reagents() From d39a60dd6b87e1df5289edd8c386a13695428783 Mon Sep 17 00:00:00 2001 From: Timothy Teakettle <59849408+timothyteakettle@users.noreply.github.com> Date: Wed, 5 May 2021 21:24:07 +0100 Subject: [PATCH 121/259] casually list the matrixes for several hundred sprites --- .../sprite_accessories/Citadel_Snowflake.dm | 2 + .../sprite_accessories/body_markings.dm | 43 ++++++++++++++++++- .../new_player/sprite_accessories/synthliz.dm | 6 +-- 3 files changed, 47 insertions(+), 4 deletions(-) diff --git a/code/modules/mob/dead/new_player/sprite_accessories/Citadel_Snowflake.dm b/code/modules/mob/dead/new_player/sprite_accessories/Citadel_Snowflake.dm index f58788d9af..860c299baf 100644 --- a/code/modules/mob/dead/new_player/sprite_accessories/Citadel_Snowflake.dm +++ b/code/modules/mob/dead/new_player/sprite_accessories/Citadel_Snowflake.dm @@ -12,6 +12,7 @@ name = "DataShark" icon_state = "datashark" ckeys_allowed = list("rubyflamewing") + covered_limbs = list(HEAD = MATRIX_RED_GREEN, CHEST = MATRIX_GREEN, LEG_LEFT = MATRIX_GREEN, LEG_RIGHT = MATRIX_GREEN, ARM_LEFT = MATRIX_GREEN, ARM_RIGHT = MATRIX_GREEN) //Sabresune /datum/sprite_accessory/ears/mam_ears/sabresune @@ -39,6 +40,7 @@ name = "Sabresune" icon_state = "sabresune" ckeys_allowed = list("poojawa") + covered_limbs = list(HEAD = MATRIX_RED_GREEN, CHEST = MATRIX_RED_GREEN, LEG_LEFT = MATRIX_RED_GREEN, LEG_RIGHT = MATRIX_RED_GREEN, ARM_LEFT = MATRIX_RED_GREEN, ARM_RIGHT = MATRIX_RED_GREEN) //Lunasune /datum/sprite_accessory/ears/mam_ears/lunasune diff --git a/code/modules/mob/dead/new_player/sprite_accessories/body_markings.dm b/code/modules/mob/dead/new_player/sprite_accessories/body_markings.dm index 278a31959f..d6da8be86e 100644 --- a/code/modules/mob/dead/new_player/sprite_accessories/body_markings.dm +++ b/code/modules/mob/dead/new_player/sprite_accessories/body_markings.dm @@ -27,87 +27,107 @@ /datum/sprite_accessory/mam_body_markings/redpanda name = "Redpanda" icon_state = "redpanda" + covered_limbs = list(HEAD = MATRIX_RED_BLUE, CHEST = MATRIX_RED_GREEN, LEG_LEFT = MATRIX_RED_GREEN, LEG_RIGHT = MATRIX_RED_GREEN, ARM_LEFT = MATRIX_RED_GREEN, ARM_RIGHT = MATRIX_RED_GREEN) /datum/sprite_accessory/mam_body_markings/bat name = "Bat" icon_state = "bat" + covered_limbs = list(HEAD = MATRIX_RED_GREEN, CHEST = MATRIX_ALL, LEG_LEFT = MATRIX_RED_BLUE, LEG_RIGHT = MATRIX_RED_BLUE, ARM_LEFT = MATRIX_RED, ARM_RIGHT = MATRIX_RED) /datum/sprite_accessory/mam_body_markings/bee name = "Bee" icon_state = "bee" icon = 'modular_citadel/icons/mob/markings_notmammals.dmi' + covered_limbs = list(HEAD = MATRIX_RED_GREEN, CHEST = MATRIX_GREEN, LEG_LEFT = MATRIX_GREEN, LEG_RIGHT = MATRIX_GREEN, ARM_LEFT = MATRIX_GREEN, ARM_RIGHT = MATRIX_GREEN) /datum/sprite_accessory/mam_body_markings/belly name = "Belly" icon_state = "belly" icon = 'modular_citadel/icons/mob/markings_notmammals.dmi' + covered_limbs = list(HEAD = MATRIX_RED_GREEN, CHEST = MATRIX_GREEN, LEG_LEFT = MATRIX_RED, LEG_RIGHT = MATRIX_RED) /datum/sprite_accessory/mam_body_markings/bellyslim name = "Bellyslim" icon_state = "bellyslim" icon = 'modular_citadel/icons/mob/markings_notmammals.dmi' + covered_limbs = list(HEAD = MATRIX_RED_GREEN, CHEST = MATRIX_RED_GREEN, LEG_LEFT = MATRIX_RED, LEG_RIGHT = MATRIX_RED, ARM_LEFT = MATRIX_RED, ARM_RIGHT = MATRIX_RED) /datum/sprite_accessory/mam_body_markings/cow name = "Bovine" icon_state = "bovine" + covered_limbs = list(HEAD = MATRIX_ALL, CHEST = MATRIX_RED_GREEN, LEG_LEFT = MATRIX_ALL, LEG_RIGHT = MATRIX_ALL, ARM_LEFT = MATRIX_RED_GREEN, ARM_RIGHT = MATRIX_RED_GREEN) /datum/sprite_accessory/mam_body_markings/corgi name = "Corgi" icon_state = "corgi" + covered_limbs = list(HEAD = MATRIX_RED_GREEN, CHEST = MATRIX_RED_GREEN, LEG_LEFT = MATRIX_RED_GREEN, LEG_RIGHT = MATRIX_RED_GREEN, ARM_LEFT = MATRIX_RED_GREEN, ARM_RIGHT = MATRIX_RED_GREEN) /datum/sprite_accessory/mam_body_markings/corvid name = "Corvid" icon_state = "corvid" + covered_limbs = list(HEAD = MATRIX_RED_GREEN, CHEST = MATRIX_RED_GREEN, LEG_LEFT = MATRIX_ALL, LEG_RIGHT = MATRIX_ALL, ARM_LEFT = MATRIX_RED, ARM_RIGHT = MATRIX_RED) /datum/sprite_accessory/mam_body_markings/dalmation name = "Dalmation" icon_state = "dalmation" + covered_limbs = list(HEAD = MATRIX_RED_GREEN, CHEST = MATRIX_RED_GREEN, LEG_LEFT = MATRIX_RED_GREEN, LEG_RIGHT = MATRIX_RED_GREEN, ARM_LEFT = MATRIX_RED_GREEN, ARM_RIGHT = MATRIX_RED_GREEN) /datum/sprite_accessory/mam_body_markings/deer name = "Deer" icon_state = "deer" + covered_limbs = list(HEAD = MATRIX_RED_GREEN, CHEST = MATRIX_RED_GREEN, LEG_LEFT = MATRIX_GREEN_BLUE, LEG_RIGHT = MATRIX_GREEN_BLUE, ARM_LEFT = MATRIX_GREEN, ARM_RIGHT = MATRIX_GREEN) /datum/sprite_accessory/mam_body_markings/dog name = "Dog" icon_state = "dog" + covered_limbs = list(HEAD = MATRIX_RED_BLUE, CHEST = MATRIX_ALL, LEG_LEFT = MATRIX_GREEN_BLUE, LEG_RIGHT = MATRIX_GREEN_BLUE, ARM_LEFT = MATRIX_ALL, ARM_RIGHT = MATRIX_ALL) /datum/sprite_accessory/mam_body_markings/eevee name = "Eevee" icon_state = "eevee" + covered_limbs = list(HEAD = MATRIX_RED_GREEN, CHEST = MATRIX_GREEN) /datum/sprite_accessory/mam_body_markings/fennec name = "Fennec" icon_state = "Fennec" + covered_limbs = list(HEAD = MATRIX_RED_GREEN, CHEST = MATRIX_RED_GREEN, LEG_LEFT = MATRIX_RED_GREEN, LEG_RIGHT = MATRIX_RED_GREEN, ARM_LEFT = MATRIX_RED_GREEN, ARM_RIGHT = MATRIX_RED_GREEN) /datum/sprite_accessory/mam_body_markings/fox name = "Fox" icon_state = "fox" + covered_limbs = list(HEAD = MATRIX_RED_GREEN, CHEST = MATRIX_RED_GREEN, LEG_LEFT = MATRIX_RED_GREEN, LEG_RIGHT = MATRIX_RED_GREEN, ARM_LEFT = MATRIX_RED_BLUE, ARM_RIGHT = MATRIX_RED_BLUE) /datum/sprite_accessory/mam_body_markings/frog name = "Frog" icon_state = "frog" icon = 'modular_citadel/icons/mob/markings_notmammals.dmi' + covered_limbs = list(HEAD = MATRIX_RED_GREEN, CHEST = MATRIX_GREEN, LEG_LEFT = MATRIX_GREEN, LEG_RIGHT = MATRIX_GREEN, ARM_LEFT = MATRIX_GREEN, ARM_RIGHT = MATRIX_GREEN) /datum/sprite_accessory/mam_body_markings/goat name = "Goat" icon_state = "goat" + covered_limbs = list(HEAD = MATRIX_RED, CHEST = MATRIX_RED, LEG_LEFT = MATRIX_RED_BLUE, LEG_RIGHT = MATRIX_RED_BLUE, ARM_LEFT = MATRIX_RED_BLUE, ARM_RIGHT = MATRIX_RED_BLUE) /datum/sprite_accessory/mam_body_markings/handsfeet name = "Handsfeet" icon_state = "handsfeet" icon = 'modular_citadel/icons/mob/markings_notmammals.dmi' + covered_limbs = list(HEAD = MATRIX_RED, CHEST = MATRIX_RED, LEG_LEFT = MATRIX_RED_GREEN, LEG_RIGHT = MATRIX_RED_GREEN, ARM_LEFT = MATRIX_RED_GREEN, ARM_RIGHT = MATRIX_RED_GREEN) /datum/sprite_accessory/mam_body_markings/hawk name = "Hawk" icon_state = "hawk" + covered_limbs = list(HEAD = MATRIX_RED_GREEN, CHEST = MATRIX_RED_GREEN, LEG_LEFT = MATRIX_ALL, LEG_RIGHT = MATRIX_ALL, ARM_LEFT = MATRIX_RED, ARM_RIGHT = MATRIX_RED) /datum/sprite_accessory/mam_body_markings/husky name = "Husky" icon_state = "husky" + covered_limbs = list(HEAD = MATRIX_RED_GREEN, CHEST = MATRIX_RED_GREEN, LEG_LEFT = MATRIX_ALL, LEG_RIGHT = MATRIX_ALL, ARM_LEFT = MATRIX_RED_GREEN, ARM_RIGHT = MATRIX_RED_GREEN) /datum/sprite_accessory/mam_body_markings/hyena name = "Hyena" icon_state = "hyena" + covered_limbs = list(HEAD = MATRIX_ALL, CHEST = MATRIX_ALL, LEG_LEFT = MATRIX_RED_GREEN, LEG_RIGHT = MATRIX_RED_GREEN, ARM_LEFT = MATRIX_RED_GREEN, ARM_RIGHT = MATRIX_RED_GREEN) /datum/sprite_accessory/mam_body_markings/insect name = "Insect" @@ -117,97 +137,118 @@ /datum/sprite_accessory/mam_body_markings/lab name = "Lab" icon_state = "lab" + covered_limbs = list(HEAD = MATRIX_RED, CHEST = MATRIX_RED, LEG_LEFT = MATRIX_RED, LEG_RIGHT = MATRIX_RED, ARM_LEFT = MATRIX_RED, ARM_RIGHT = MATRIX_RED) /datum/sprite_accessory/mam_body_markings/orca name = "Orca" icon_state = "orca" + covered_limbs = list(HEAD = MATRIX_RED_GREEN, CHEST = MATRIX_RED_GREEN, LEG_LEFT = MATRIX_RED_GREEN, LEG_RIGHT = MATRIX_RED_GREEN, ARM_LEFT = MATRIX_RED_GREEN, ARM_RIGHT = MATRIX_RED_GREEN) /datum/sprite_accessory/mam_body_markings/otie name = "Otie" icon_state = "otie" + covered_limbs = list(HEAD = MATRIX_ALL, CHEST = MATRIX_ALL, LEG_LEFT = MATRIX_ALL, LEG_RIGHT = MATRIX_ALL, ARM_LEFT = MATRIX_ALL, ARM_RIGHT = MATRIX_ALL) /datum/sprite_accessory/mam_body_markings/otter name = "Otter" icon_state = "otter" + covered_limbs = list(HEAD = MATRIX_ALL, CHEST = MATRIX_GREEN) /datum/sprite_accessory/mam_body_markings/panther name = "Panther" icon_state = "panther" + covered_limbs = list(HEAD = MATRIX_RED_GREEN, CHEST = MATRIX_RED_GREEN, LEG_LEFT = MATRIX_RED_GREEN, LEG_RIGHT = MATRIX_RED_GREEN, ARM_LEFT = MATRIX_RED_GREEN, ARM_RIGHT = MATRIX_RED_GREEN) /datum/sprite_accessory/mam_body_markings/plain name = "Plain" icon_state = "plain" icon = 'modular_citadel/icons/mob/markings_notmammals.dmi' + covered_limbs = list(HEAD = MATRIX_RED, CHEST = MATRIX_RED, LEG_LEFT = MATRIX_RED, LEG_RIGHT = MATRIX_RED, ARM_LEFT = MATRIX_RED, ARM_RIGHT = MATRIX_RED) /datum/sprite_accessory/mam_body_markings/possum name = "Possum" icon_state = "possum" + covered_limbs = list(HEAD = MATRIX_RED_GREEN, CHEST = MATRIX_RED_GREEN, LEG_LEFT = MATRIX_RED_BLUE, LEG_RIGHT = MATRIX_RED_BLUE, ARM_LEFT = MATRIX_RED_BLUE, ARM_RIGHT = MATRIX_RED_BLUE) /datum/sprite_accessory/mam_body_markings/raccoon name = "Raccoon" icon_state = "raccoon" + covered_limbs = list(HEAD = MATRIX_ALL, CHEST = MATRIX_RED_GREEN, LEG_LEFT = MATRIX_ALL, LEG_RIGHT = MATRIX_ALL, ARM_LEFT = MATRIX_RED_GREEN, ARM_RIGHT = MATRIX_RED_GREEN) /datum/sprite_accessory/mam_body_markings/sergal name = "Sergal" icon_state = "sergal" + covered_limbs = list(HEAD = MATRIX_RED_GREEN, CHEST = MATRIX_RED_GREEN) /datum/sprite_accessory/mam_body_markings/pede name = "Scolipede" icon_state = "scolipede" icon = 'modular_citadel/icons/mob/markings_notmammals.dmi' + covered_limbs = list(HEAD = MATRIX_GREEN, CHEST = MATRIX_GREEN_BLUE, LEG_LEFT = MATRIX_GREEN, LEG_RIGHT = MATRIX_GREEN, ARM_LEFT = MATRIX_GREEN, ARM_RIGHT = MATRIX_GREEN) /datum/sprite_accessory/mam_body_markings/shark name = "Shark" icon_state = "shark" + covered_limbs = list(HEAD = MATRIX_RED_GREEN, CHEST = MATRIX_RED, LEG_LEFT = MATRIX_RED, LEG_RIGHT = MATRIX_RED_GREEN, ARM_LEFT = MATRIX_RED_GREEN, ARM_RIGHT = MATRIX_RED_GREEN) /datum/sprite_accessory/mam_body_markings/shepherd name = "Shepherd" icon_state = "shepherd" + covered_limbs = list(HEAD = MATRIX_ALL, CHEST = MATRIX_ALL, LEG_LEFT = MATRIX_RED_GREEN, LEG_RIGHT = MATRIX_RED_GREEN, ARM_LEFT = MATRIX_RED, ARM_RIGHT = MATRIX_RED) /datum/sprite_accessory/mam_body_markings/skunk name = "Skunk" icon_state = "skunk" + covered_limbs = list(HEAD = MATRIX_RED_GREEN, CHEST = MATRIX_RED_GREEN, LEG_LEFT = MATRIX_RED_GREEN, LEG_RIGHT = MATRIX_RED_GREEN, ARM_LEFT = MATRIX_RED, ARM_RIGHT = MATRIX_RED) /datum/sprite_accessory/mam_body_markings/tajaran name = "Tajaran" icon_state = "tajaran" + covered_limbs = list(HEAD = MATRIX_RED_GREEN, CHEST = MATRIX_RED_GREEN, LEG_LEFT = MATRIX_RED, LEG_RIGHT = MATRIX_RED, ARM_LEFT = MATRIX_RED, ARM_RIGHT = MATRIX_RED) /datum/sprite_accessory/mam_body_markings/tiger name = "Tiger" icon_state = "tiger" + covered_limbs = list(HEAD = MATRIX_ALL, CHEST = MATRIX_ALL, LEG_LEFT = MATRIX_ALL, LEG_RIGHT = MATRIX_ALL, ARM_LEFT = MATRIX_RED_BLUE, ARM_RIGHT = MATRIX_RED_BLUE) /datum/sprite_accessory/mam_body_markings/turian name = "Turian" icon_state = "turian" icon = 'modular_citadel/icons/mob/markings_notmammals.dmi' + covered_limbs = list(HEAD = MATRIX_RED_GREEN, CHEST = MATRIX_RED, LEG_LEFT = MATRIX_RED, LEG_RIGHT = MATRIX_RED, ARM_LEFT = MATRIX_RED, ARM_RIGHT = MATRIX_RED) /datum/sprite_accessory/mam_body_markings/wolf name = "Wolf" icon_state = "wolf" + covered_limbs = list(HEAD = MATRIX_ALL, CHEST = MATRIX_ALL, LEG_LEFT = MATRIX_RED_BLUE, LEG_RIGHT = MATRIX_RED_BLUE, ARM_LEFT = MATRIX_RED_BLUE, ARM_RIGHT = MATRIX_RED_BLUE) /datum/sprite_accessory/mam_body_markings/xeno name = "Xeno" icon_state = "xeno" icon = 'modular_citadel/icons/mob/markings_notmammals.dmi' + covered_limbs = list(HEAD = MATRIX_BLUE, CHEST = MATRIX_GREEN, LEG_LEFT = MATRIX_GREEN, LEG_RIGHT = MATRIX_GREEN, ARM_LEFT = MATRIX_GREEN, ARM_RIGHT = MATRIX_GREEN) // sticking old lizard markings here for now /datum/sprite_accessory/mam_body_markings/dtiger name = "Dark Tiger Body" icon_state = "dtiger" + covered_limbs = list(HEAD = MATRIX_RED, CHEST = MATRIX_RED, LEG_LEFT = MATRIX_RED, LEG_RIGHT = MATRIX_RED, ARM_LEFT = MATRIX_RED, ARM_RIGHT = MATRIX_RED) /datum/sprite_accessory/mam_body_markings/guilmon name = "Guilmon" icon_state = "guilmon" icon = 'modular_citadel/icons/mob/markings_notmammals.dmi' - matrixed_sections = MATRIX_ALL + covered_limbs = list(HEAD = MATRIX_RED_BLUE, CHEST = MATRIX_GREEN_BLUE, LEG_LEFT = MATRIX_BLUE, LEG_RIGHT = MATRIX_BLUE, ARM_LEFT = MATRIX_GREEN_BLUE, ARM_RIGHT = MATRIX_GREEN_BLUE) /datum/sprite_accessory/mam_body_markings/ltiger name = "Light Tiger Body" icon_state = "ltiger" + covered_limbs = list(HEAD = MATRIX_RED, CHEST = MATRIX_RED, LEG_LEFT = MATRIX_RED, LEG_RIGHT = MATRIX_RED, ARM_LEFT = MATRIX_RED, ARM_RIGHT = MATRIX_RED) /datum/sprite_accessory/mam_body_markings/lbelly name = "Light Belly" icon_state = "lbelly" + covered_limbs = list(HEAD = MATRIX_RED, CHEST = MATRIX_RED, LEG_LEFT = MATRIX_RED, LEG_RIGHT = MATRIX_RED, ARM_LEFT = MATRIX_RED, ARM_RIGHT = MATRIX_RED) /****************************************** ************* Insect Markings ************* diff --git a/code/modules/mob/dead/new_player/sprite_accessories/synthliz.dm b/code/modules/mob/dead/new_player/sprite_accessories/synthliz.dm index bc4d4dd00d..22015a9e92 100644 --- a/code/modules/mob/dead/new_player/sprite_accessories/synthliz.dm +++ b/code/modules/mob/dead/new_player/sprite_accessories/synthliz.dm @@ -32,20 +32,20 @@ icon = 'modular_citadel/icons/mob/synthliz_body_markings.dmi' name = "Synthetic Lizard - Pecs" icon_state = "synthlizpecs" - matrixed_sections = MATRIX_GREEN + covered_limbs = list(CHEST = MATRIX_GREEN) /datum/sprite_accessory/mam_body_markings/synthliz/synthliz_pecslight icon = 'modular_citadel/icons/mob/synthliz_body_markings.dmi' name = "Synthetic Lizard - Pecs Light" icon_state = "synthlizpecslight" - matrixed_sections = MATRIX_GREEN_BLUE + covered_limbs = list(CHEST = MATRIX_GREEN_BLUE) /datum/sprite_accessory/mam_body_markings/synthliz recommended_species = list("synthliz") icon = 'modular_citadel/icons/mob/synthliz_body_markings.dmi' name = "Synthetic Lizard - Plates" icon_state = "synthlizscutes" - matrixed_sections = MATRIX_GREEN + covered_limbs = list(CHEST = MATRIX_GREEN) //Synth tails /datum/sprite_accessory/tails/mam_tails/synthliz From 9cf04467a7e627ec87e82b120077049a479a7608 Mon Sep 17 00:00:00 2001 From: SandPoot Date: Wed, 5 May 2021 17:55:30 -0300 Subject: [PATCH 122/259] upload files --- code/_onclick/hud/radial.dm | 1 - code/modules/mob/living/carbon/human/human.dm | 11 ++++++++ .../mob/living/carbon/human/human_defines.dm | 2 ++ code/modules/mob/living/silicon/examine.dm | 1 - .../mob/living/silicon/robot/examine.dm | 3 +++ .../modules/mob/living/silicon/robot/robot.dm | 15 +++++++++++ .../mob/living/silicon/robot/robot_defines.dm | 2 ++ code/modules/mob/living/silicon/silicon.dm | 4 +-- code/modules/tooltip/tooltip.dm | 27 +++++++++++++++++-- code/modules/tooltip/tooltip.html | 6 ++--- 10 files changed, 63 insertions(+), 9 deletions(-) diff --git a/code/_onclick/hud/radial.dm b/code/_onclick/hud/radial.dm index 929e01c6d9..7d22b70cbc 100644 --- a/code/_onclick/hud/radial.dm +++ b/code/_onclick/hud/radial.dm @@ -13,7 +13,6 @@ GLOBAL_LIST_EMPTY(radial_menus) icon_state = "radial_slice" var/choice var/next_page = FALSE - var/tooltips = FALSE /obj/screen/radial/slice/MouseEntered(location, control, params) . = ..() diff --git a/code/modules/mob/living/carbon/human/human.dm b/code/modules/mob/living/carbon/human/human.dm index c2014cbe41..f636ae76ab 100644 --- a/code/modules/mob/living/carbon/human/human.dm +++ b/code/modules/mob/living/carbon/human/human.dm @@ -1083,6 +1083,17 @@ . = ..() set_species(race) +/mob/living/carbon/human/get_tooltip_data() + var/t_He = p_they(TRUE) + var/t_is = p_are() + . = list() + var/skipface = (wear_mask && (wear_mask.flags_inv & HIDEFACE)) || (head && (head.flags_inv & HIDEFACE)) + if(skipface || get_visible_name() == "Unknown") + . += "You can't make out what species they are." + else + . += "[t_He] [t_is] a [dna.custom_species ? dna.custom_species : dna.species.name]" + SEND_SIGNAL(src, COMSIG_PARENT_EXAMINE, usr, .) + /mob/living/carbon/human/species/abductor race = /datum/species/abductor diff --git a/code/modules/mob/living/carbon/human/human_defines.dm b/code/modules/mob/living/carbon/human/human_defines.dm index 9f80b5a933..102f3df65d 100644 --- a/code/modules/mob/living/carbon/human/human_defines.dm +++ b/code/modules/mob/living/carbon/human/human_defines.dm @@ -77,6 +77,8 @@ var/last_fire_update var/hardcore_survival_score = 0 + tooltips = TRUE + /// Unarmed parry data for human /datum/block_parry_data/unarmed/human parry_respect_clickdelay = TRUE diff --git a/code/modules/mob/living/silicon/examine.dm b/code/modules/mob/living/silicon/examine.dm index 7de281de5f..0840ea1191 100644 --- a/code/modules/mob/living/silicon/examine.dm +++ b/code/modules/mob/living/silicon/examine.dm @@ -1,5 +1,4 @@ /mob/living/silicon/examine(mob/user) //Displays a silicon's laws to ghosts - . = ..() if(laws && isobserver(user)) . += "[src] has the following laws:" for(var/law in laws.get_law_list(include_zeroth = TRUE)) diff --git a/code/modules/mob/living/silicon/robot/examine.dm b/code/modules/mob/living/silicon/robot/examine.dm index 6ac1d410eb..45a3d15635 100644 --- a/code/modules/mob/living/silicon/robot/examine.dm +++ b/code/modules/mob/living/silicon/robot/examine.dm @@ -48,6 +48,9 @@ . += "It doesn't seem to be responding." if(DEAD) . += "It looks like its system is corrupted and requires a reset." + + SEND_SIGNAL(src, COMSIG_PARENT_EXAMINE, usr, .) + . += "*---------*" . += ..() diff --git a/code/modules/mob/living/silicon/robot/robot.dm b/code/modules/mob/living/silicon/robot/robot.dm index 38f93f9ffc..47f9a794cf 100644 --- a/code/modules/mob/living/silicon/robot/robot.dm +++ b/code/modules/mob/living/silicon/robot/robot.dm @@ -1326,3 +1326,18 @@ var/datum/computer_file/program/robotact/program = modularInterface.get_robotact() if(program) program.force_full_update() + +/mob/living/silicon/robot/get_tooltip_data() + var/t_He = p_they(TRUE) + var/t_is = p_are() + . = list() + var/borg_type = module ? module : "Default" +//This isn't even used normally, but if that ever changes, just uncomment this +/* var/obj/item/borg_chameleon/chameleon = locate() in src + if(!chameleon) + chameleon = locate() in src.module + if(chameleon?.active) + borg_type = "Engineering" +*/ + . += "[t_He] [t_is] a [borg_type] unit" + SEND_SIGNAL(src, COMSIG_PARENT_EXAMINE, usr, .) diff --git a/code/modules/mob/living/silicon/robot/robot_defines.dm b/code/modules/mob/living/silicon/robot/robot_defines.dm index f44552f1ab..fe22ec1236 100644 --- a/code/modules/mob/living/silicon/robot/robot_defines.dm +++ b/code/modules/mob/living/silicon/robot/robot_defines.dm @@ -125,3 +125,5 @@ var/sleeper_g var/sleeper_r var/sleeper_nv + + tooltips = TRUE diff --git a/code/modules/mob/living/silicon/silicon.dm b/code/modules/mob/living/silicon/silicon.dm index b2b27c7d70..8af55370bb 100644 --- a/code/modules/mob/living/silicon/silicon.dm +++ b/code/modules/mob/living/silicon/silicon.dm @@ -59,8 +59,8 @@ /mob/living/silicon/ComponentInitialize() . = ..() - AddElement(/datum/element/flavor_text, _name = "Silicon Flavor Text", _save_key = "silicon_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, _name = "Silicon Flavor Text", _always_show = TRUE, _save_key = "silicon_flavor_text") + AddElement(/datum/element/flavor_text, "", "Temporary Flavor Text", "This should be used only for things pertaining to the current round!", _always_show = TRUE) 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/silicon/med_hud_set_health() diff --git a/code/modules/tooltip/tooltip.dm b/code/modules/tooltip/tooltip.dm index ab7dc91739..6f29875c20 100644 --- a/code/modules/tooltip/tooltip.dm +++ b/code/modules/tooltip/tooltip.dm @@ -51,7 +51,7 @@ Notes: /datum/tooltip/proc/show(atom/movable/thing, params = null, title = null, content = null, theme = "default", special = "none") if (!thing || !params || (!title && !content) || !owner || !isnum(world.icon_size)) - return 0 + return FALSE if (!init) //Initialize some vars init = 1 @@ -83,7 +83,7 @@ Notes: if (queueHide) hide() - return 1 + return TRUE /datum/tooltip/proc/hide() @@ -122,4 +122,27 @@ Notes: if(user.client && user.client.tooltips) user.client.tooltips.hide() +/atom/movable + var/tooltips = FALSE +/atom/movable/proc/get_tooltip_data() + return + +/atom/movable/MouseEntered(location, control, params) + . = ..() + if(tooltips) + if(!QDELETED(src)) + var/list/examine_list = examine(src) + var/get_tooltip_data = get_tooltip_data() + if(length(get_tooltip_data)) + examine_list = get_tooltip_data + var/examine_data = examine_list.Join("
") + openToolTip(usr, src, params, title = name, content = examine_data) + +/atom/movable/MouseExited(location, control, params) + . = ..() + closeToolTip(usr) + +/client/MouseDown(object, location, control, params) + closeToolTip(usr) + . = ..() diff --git a/code/modules/tooltip/tooltip.html b/code/modules/tooltip/tooltip.html index 60bd358031..2743bc03d5 100644 --- a/code/modules/tooltip/tooltip.html +++ b/code/modules/tooltip/tooltip.html @@ -65,12 +65,12 @@ .hisgrace .wrap {border-color: #7C1414;} .hisgrace .content {color: #15D512; border-color: #9D1414; background-color: #861414;} - + /* TG: Themes */ /* ScreenUI */ .midnight .wrap {border-color: #2B2B33;} .midnight .content {color: #6087A0; border-color: #2B2B33; background-color: #36363C;} - + .plasmafire .wrap {border-color: #21213D;} .plasmafire .content {color: #FFA800 ; border-color: #21213D; background-color:#1D1D36;} @@ -85,7 +85,7 @@ .clockwork .wrap {border-color: #170800;} .clockwork .content {color: #B18B25; border-color: #000000; background-color: #5F380E;} - + From bee9d9c047e5ca258f1ff55b473c84e0a2c13af0 Mon Sep 17 00:00:00 2001 From: Timothy Teakettle <59849408+timothyteakettle@users.noreply.github.com> Date: Wed, 5 May 2021 22:29:21 +0100 Subject: [PATCH 123/259] support for the ridiculous thing i just did --- code/modules/client/preferences.dm | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/code/modules/client/preferences.dm b/code/modules/client/preferences.dm index f311d1910a..b6b134cb1a 100644 --- a/code/modules/client/preferences.dm +++ b/code/modules/client/preferences.dm @@ -530,22 +530,24 @@ GLOBAL_LIST_EMPTY(preferences_datums) var/list/reverse_markings = reverseList(markings) for(var/list/marking_list in reverse_markings) var/marking_index = markings.Find(marking_list) // consider changing loop to go through indexes over lists instead of using Find here - var/actual_name = GLOB.bodypart_names[num2text(marking_list[1])] // get the actual name from the bitflag representing the part the marking is applied to + var/limb_value = marking_list[1] + var/actual_name = GLOB.bodypart_names[num2text(limb_value)] // get the actual name from the bitflag representing the part the marking is applied to var/color_marking_dat = "" var/number_colors = 1 - var/datum/sprite_accessory/S = GLOB.mam_body_markings_list[marking_list[2]] - if(S && S.matrixed_sections && S.matrixed_sections != MATRIX_NONE) + var/datum/sprite_accessory/mam_body_markings/S = GLOB.mam_body_markings_list[marking_list[2]] + var/matrixed_sections = S.covered_limbs[limb_value] + if(S && matrixed_sections) // if it has nothing initialize it to white if(length(marking_list) == 2) marking_list += list(list("#FFFFFF","#FFFFFF","#FFFFFF")) // just assume its 3 colours if it isnt it doesnt matter we just wont use the other values // we know it has one matrixed section at minimum color_marking_dat += "   " // if it has a second section, add it - if(S.matrixed_sections == MATRIX_RED_BLUE || S.matrixed_sections == MATRIX_GREEN_BLUE || S.matrixed_sections == MATRIX_RED_GREEN || S.matrixed_sections == MATRIX_ALL) + if(matrixed_sections == MATRIX_RED_BLUE || matrixed_sections == MATRIX_GREEN_BLUE || matrixed_sections == MATRIX_RED_GREEN || matrixed_sections == MATRIX_ALL) color_marking_dat += "   " number_colors = 2 // if it has a third section, add it - if(S.matrixed_sections == MATRIX_ALL) + if(matrixed_sections == MATRIX_ALL) color_marking_dat += "   " number_colors = 3 color_marking_dat += "
Change
" From c8ebe720ec2e2188853c85ca1c955bb88ec99231 Mon Sep 17 00:00:00 2001 From: zerothebigboy Date: Wed, 5 May 2021 18:25:05 -0400 Subject: [PATCH 124/259] k --- _maps/shuttles/pirate_default.dmm | 434 +++++++++++++++++++-------- code/game/objects/items/cards_ids.dm | 1 - code/modules/events/pirates.dm | 3 +- 3 files changed, 303 insertions(+), 135 deletions(-) diff --git a/_maps/shuttles/pirate_default.dmm b/_maps/shuttles/pirate_default.dmm index 532f3b7697..89240bf009 100644 --- a/_maps/shuttles/pirate_default.dmm +++ b/_maps/shuttles/pirate_default.dmm @@ -5,7 +5,7 @@ faction = list("pirate"); icon_state = "standard_lethal" }, -/turf/closed/wall/r_wall/syndicate/pirate, +/turf/closed/wall/r_wall/syndicate/pirate/nodiagonal, /area/shuttle/pirate) "ab" = ( /obj/structure/grille, @@ -73,13 +73,13 @@ /obj/machinery/light/small{ dir = 8 }, -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = -24 - }, /obj/machinery/atmospherics/components/unary/vent_pump/on, /obj/machinery/atmospherics/components/unary/vent_pump/on, /obj/effect/decal/cleanable/dirt, +/obj/machinery/airalarm/syndicate{ + dir = 4; + pixel_x = -24 + }, /turf/open/floor/pod/dark, /area/shuttle/pirate) "am" = ( @@ -111,23 +111,25 @@ /obj/machinery/light/small{ dir = 4 }, -/obj/machinery/airalarm/all_access{ +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/airalarm/syndicate{ dir = 8; pixel_x = 24 }, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/obj/effect/decal/cleanable/dirt, /turf/open/floor/pod/dark, /area/shuttle/pirate) "as" = ( /obj/machinery/door/airlock/hatch{ - name = "Port Gun Battery" + aiControlDisabled = 1; + name = "Port Gun Battery"; + req_access_txt = "150" }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/effect/decal/cleanable/dirt, /obj/structure/barricade/wooden/crude{ layer = 3.13 }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/pod/dark, /area/shuttle/pirate) "at" = ( @@ -163,12 +165,15 @@ /area/shuttle/pirate) "az" = ( /obj/machinery/door/airlock/hatch{ - name = "Starboard Gun Battery" + aiControlDisabled = 1; + name = "Starboard Gun Battery"; + req_access_txt = "150" }, /obj/effect/decal/cleanable/dirt, /obj/structure/barricade/wooden/crude{ layer = 3.13 }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/pod/dark, /area/shuttle/pirate) "aA" = ( @@ -237,11 +242,9 @@ /turf/open/floor/plasteel, /area/shuttle/pirate) "aF" = ( -/obj/machinery/computer/shuttle/pirate{ - req_access_txt = "150" - }, /obj/effect/turf_decal/bot, /obj/effect/decal/cleanable/dirt, +/obj/machinery/computer/shuttle/pirate, /turf/open/floor/pod/dark, /area/shuttle/pirate) "aG" = ( @@ -262,14 +265,14 @@ /turf/open/floor/mineral/plastitanium/red, /area/shuttle/pirate) "aH" = ( -/obj/machinery/airalarm/all_access{ - dir = 1; - pixel_y = -24 - }, /obj/effect/turf_decal/stripes/line{ dir = 1 }, /obj/effect/decal/cleanable/dirt, +/obj/machinery/airalarm/syndicate{ + dir = 1; + pixel_y = -24 + }, /turf/open/floor/mineral/plastitanium/red, /area/shuttle/pirate) "aI" = ( @@ -389,6 +392,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/mineral/plastitanium/red, /area/shuttle/pirate) "aQ" = ( @@ -403,10 +407,6 @@ /turf/open/floor/pod/dark, /area/shuttle/pirate) "aR" = ( -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = -24 - }, /obj/machinery/light/small{ dir = 8 }, @@ -531,6 +531,8 @@ /obj/effect/turf_decal/bot, /obj/effect/decal/cleanable/blood/old, /obj/effect/decal/cleanable/dirt, +/obj/item/clothing/under/rank/medical/doctor/blue, +/obj/item/clothing/shoes/sneakers/white, /turf/open/floor/pod/dark, /area/shuttle/pirate) "aY" = ( @@ -566,6 +568,9 @@ dir = 1 }, /obj/effect/decal/cleanable/dirt, +/obj/structure/sign/poster/official/high_class_martini{ + pixel_x = -32 + }, /turf/open/floor/plasteel, /area/shuttle/pirate) "aZ" = ( @@ -575,6 +580,9 @@ dir = 1 }, /obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, /turf/open/floor/plasteel, /area/shuttle/pirate) "ba" = ( @@ -670,13 +678,13 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, -/obj/machinery/airalarm/all_access{ - pixel_y = 24 - }, /obj/effect/decal/cleanable/dirt, /obj/machinery/light{ dir = 1 }, +/obj/machinery/airalarm/syndicate{ + pixel_y = 24 + }, /turf/open/floor/mineral/plastitanium/red, /area/shuttle/pirate) "bi" = ( @@ -721,6 +729,9 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, /turf/open/floor/mineral/plastitanium/red, /area/shuttle/pirate) "bn" = ( @@ -732,6 +743,9 @@ /obj/effect/turf_decal/stripes/corner{ dir = 4 }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, /turf/open/floor/mineral/plastitanium/red, /area/shuttle/pirate) "bo" = ( @@ -743,11 +757,14 @@ dir = 1 }, /obj/effect/decal/cleanable/dirt, +/obj/structure/sign/poster/official/medical_green_cross{ + pixel_x = 32 + }, /turf/open/floor/pod/dark, /area/shuttle/pirate) "bq" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, /obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/dark, /area/shuttle/pirate) "br" = ( @@ -775,6 +792,9 @@ dir = 1 }, /obj/effect/decal/cleanable/dirt, +/obj/structure/sign/departments/cargo{ + pixel_x = -32 + }, /turf/open/floor/mineral/plastitanium/red, /area/shuttle/pirate) "bv" = ( @@ -869,6 +889,10 @@ }, /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/stripes/line, +/obj/structure/sign/departments/examroom{ + pixel_x = -32; + pixel_y = -32 + }, /turf/open/floor/mineral/plastitanium/red, /area/shuttle/pirate) "bD" = ( @@ -882,11 +906,11 @@ /turf/open/floor/mineral/plastitanium/red, /area/shuttle/pirate) "bE" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/stripes/corner, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, /turf/open/floor/mineral/plastitanium/red, /area/shuttle/pirate) "bF" = ( @@ -897,6 +921,10 @@ /obj/effect/turf_decal/stripes/line{ dir = 6 }, +/obj/structure/sign/directions/dorms{ + dir = 1; + pixel_y = -22 + }, /turf/open/floor/mineral/plastitanium/red, /area/shuttle/pirate) "bG" = ( @@ -927,20 +955,20 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 5 }, -/obj/machinery/airalarm/all_access{ - dir = 1; - pixel_y = -24 - }, /obj/effect/decal/cleanable/dirt, /obj/item/chair/stool, /obj/machinery/light, +/obj/machinery/airalarm/syndicate{ + dir = 1; + pixel_y = -24 + }, /turf/open/floor/plasteel/dark, /area/shuttle/pirate) "bJ" = ( +/obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 1 }, -/obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel/dark, /area/shuttle/pirate) "bK" = ( @@ -951,16 +979,16 @@ /turf/open/floor/plasteel/dark, /area/shuttle/pirate) "bL" = ( -/obj/machinery/door/airlock/hatch{ - aiDisabledIdScanner = 1; - name = "Spirits Lounge"; - req_access_txt = "150" - }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /obj/effect/decal/cleanable/dirt, /obj/machinery/door/firedoor, +/obj/machinery/door/airlock/hatch{ + aiControlDisabled = 1; + name = "Spirits Lounge"; + req_access_txt = "150" + }, /turf/open/floor/pod/dark, /area/shuttle/pirate) "bM" = ( @@ -976,6 +1004,7 @@ }, /obj/machinery/computer/camera_advanced/shuttle_docker/syndicate/pirate{ dir = 4; + req_access = "150"; x_offset = -3; y_offset = 7 }, @@ -1042,10 +1071,6 @@ /area/shuttle/pirate) "bT" = ( /obj/structure/table/reinforced, -/obj/machinery/airalarm/all_access{ - dir = 1; - pixel_y = -24 - }, /obj/effect/decal/cleanable/dirt, /obj/item/reagent_containers/glass/bottle/bicaridine{ pixel_x = -6; @@ -1064,6 +1089,7 @@ pixel_x = -6 }, /obj/item/clipboard{ + layer = 2.99; pixel_x = 16; pixel_y = 4 }, @@ -1084,6 +1110,10 @@ pixel_y = 7 }, /obj/machinery/light, +/obj/machinery/airalarm/syndicate{ + dir = 1; + pixel_y = -24 + }, /turf/open/floor/pod/dark, /area/shuttle/pirate) "bU" = ( @@ -1111,8 +1141,8 @@ /obj/effect/decal/cleanable/dirt, /obj/machinery/door/firedoor, /obj/machinery/door/airlock/hatch{ - aiDisabledIdScanner = 1; - name = "Captain's Quaters"; + aiControlDisabled = 1; + name = "Captain's Quarters"; req_access_txt = "150" }, /turf/open/floor/pod/dark, @@ -1137,6 +1167,13 @@ }, /obj/effect/turf_decal/bot, /obj/effect/decal/cleanable/dirt, +/obj/structure/sign/directions/medical{ + dir = 4; + pixel_y = 22 + }, +/obj/structure/sign/directions/supply{ + pixel_y = 30 + }, /turf/open/floor/pod/dark, /area/shuttle/pirate) "ca" = ( @@ -1168,6 +1205,13 @@ /obj/machinery/light{ dir = 1 }, +/obj/structure/sign/directions/command{ + dir = 1; + pixel_y = 22 + }, +/obj/structure/sign/directions/engineering{ + pixel_y = 30 + }, /turf/open/floor/pod/dark, /area/shuttle/pirate) "cd" = ( @@ -1197,12 +1241,9 @@ /turf/open/floor/wood, /area/shuttle/pirate) "ch" = ( -/obj/machinery/airalarm/all_access{ - pixel_y = 24 - }, /obj/effect/decal/cleanable/dirt, -/obj/machinery/light{ - dir = 1 +/obj/machinery/airalarm/syndicate{ + pixel_y = 24 }, /turf/open/floor/wood, /area/shuttle/pirate) @@ -1255,7 +1296,7 @@ dir = 8 }, /obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/manifold4w/supply/visible, +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, /turf/open/floor/mineral/plastitanium/red, /area/shuttle/pirate) "cn" = ( @@ -1276,6 +1317,9 @@ /obj/structure/closet/crate/large, /obj/effect/turf_decal/bot, /obj/effect/decal/cleanable/dirt, +/obj/structure/sign/poster/contraband/random{ + pixel_x = -32 + }, /turf/open/floor/pod/dark, /area/shuttle/pirate) "co" = ( @@ -1295,21 +1339,15 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/blood/old, -/obj/effect/turf_decal/stripes/red/line{ - dir = 4 - }, /turf/open/floor/plasteel/dark, /area/shuttle/pirate) "cr" = ( -/obj/machinery/airalarm/all_access{ +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/airalarm/syndicate{ pixel_y = 24 }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/wood, +/turf/open/floor/plasteel/dark, /area/shuttle/pirate) "cs" = ( /obj/effect/turf_decal/stripes/line{ @@ -1348,13 +1386,14 @@ /obj/machinery/recharger, /obj/item/gun/energy/laser{ pixel_x = -3; - pixel_y = 6 + pixel_y = 2 }, /obj/item/gun/energy/laser{ - pixel_y = 3 + pixel_y = -1 }, /obj/item/gun/energy/laser{ - pixel_x = 2 + pixel_x = 2; + pixel_y = -4 }, /obj/effect/decal/cleanable/dirt, /obj/structure/sign/poster/contraband/random{ @@ -1368,16 +1407,12 @@ }, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/blood/old, -/turf/open/floor/wood, -/area/shuttle/pirate) -"cw" = ( /obj/structure/chair/wood/normal{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, /turf/open/floor/wood, /area/shuttle/pirate) -"cx" = ( +"cw" = ( /obj/structure/table/wood, /obj/item/storage/box/matches, /obj/item/reagent_containers/food/drinks/bottle/rum{ @@ -1391,6 +1426,14 @@ }, /obj/item/clothing/mask/cigarette/cigar, /obj/effect/decal/cleanable/dirt, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/machinery/light, +/obj/structure/sign/poster/contraband/random{ + pixel_x = 32 + }, /turf/open/floor/wood, /area/shuttle/pirate) "cy" = ( @@ -1399,34 +1442,38 @@ }, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/blood/old, -/obj/machinery/firealarm{ - pixel_y = 24 - }, /turf/open/floor/wood, /area/shuttle/pirate) "cz" = ( -/obj/effect/mob_spawn/human/pirate{ - dir = 4 - }, /obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/box/red, -/turf/open/floor/plasteel/dark, +/turf/closed/wall/r_wall/syndicate/pirate/nodiagonal, /area/shuttle/pirate) "cA" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 1 }, /obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/red/line{ - dir = 4 +/obj/effect/mob_spawn/human/pirate{ + dir = 1 + }, +/obj/effect/turf_decal/box/red, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/machinery/light, +/obj/structure/sign/poster/contraband/random{ + pixel_x = -32 }, /turf/open/floor/plasteel/dark, /area/shuttle/pirate) "cB" = ( -/obj/structure/closet/secure_closet/personal, -/obj/item/bedsheet/pirate, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, +/obj/effect/mob_spawn/human/pirate{ + dir = 1 + }, +/obj/effect/turf_decal/box/red, +/turf/open/floor/plasteel/dark, /area/shuttle/pirate) "cC" = ( /obj/effect/decal/cleanable/dirt, @@ -1513,6 +1560,17 @@ /obj/item/flashlight/seclite{ pixel_x = -10 }, +/obj/item/crowbar/red{ + pixel_x = -20; + pixel_y = 2 + }, +/obj/item/crowbar/red{ + pixel_x = -16; + pixel_y = -4 + }, +/obj/structure/sign/poster/contraband/random{ + pixel_y = -32 + }, /turf/open/floor/pod/dark, /area/shuttle/pirate) "cK" = ( @@ -1539,17 +1597,11 @@ /turf/open/floor/pod/dark, /area/shuttle/pirate) "cL" = ( -/obj/effect/mob_spawn/human/pirate{ - dir = 4 - }, +/obj/structure/closet/secure_closet/personal, +/obj/item/bedsheet/pirate, /obj/effect/decal/cleanable/dirt, -/obj/structure/sign/poster/contraband/random{ - pixel_x = -32 - }, -/obj/effect/turf_decal/box/red, -/obj/machinery/firealarm{ - pixel_y = 24 - }, +/obj/item/bedsheet/pirate, +/obj/item/storage/backpack/satchel, /turf/open/floor/plasteel/dark, /area/shuttle/pirate) "cM" = ( @@ -1573,13 +1625,13 @@ /obj/structure/cable/yellow{ icon_state = "1-2" }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/firedoor, /obj/machinery/door/airlock/hatch{ - aiDisabledIdScanner = 1; + aiControlDisabled = 1; name = "Engineering"; req_access_txt = "150" }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/firedoor, /turf/open/floor/pod/dark, /area/shuttle/pirate) "cP" = ( @@ -1614,10 +1666,6 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 8 }, -/obj/machinery/airalarm/all_access{ - dir = 8; - pixel_x = 24 - }, /obj/effect/decal/cleanable/blood/old, /obj/effect/decal/cleanable/dirt, /obj/machinery/firealarm{ @@ -1626,6 +1674,10 @@ /obj/machinery/light{ dir = 1 }, +/obj/machinery/airalarm/syndicate{ + dir = 8; + pixel_x = 24 + }, /turf/open/floor/mineral/plastitanium/red, /area/shuttle/pirate) "cT" = ( @@ -1645,12 +1697,12 @@ /obj/structure/window/reinforced{ dir = 4 }, +/obj/structure/sign/poster/official/safety_eye_protection{ + pixel_x = -32 + }, /turf/open/floor/pod/dark, /area/shuttle/pirate) "cW" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, /obj/effect/decal/cleanable/dirt, /obj/machinery/firealarm{ pixel_y = 24 @@ -1668,16 +1720,17 @@ /obj/effect/turf_decal/stripes/white/line{ dir = 8 }, -/obj/machinery/power/port_gen/pacman{ - anchored = 1 - }, /obj/effect/decal/cleanable/dirt, -/obj/item/wrench, /obj/machinery/atmospherics/pipe/simple/supply/visible{ - dir = 4 + dir = 6 }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plating, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/sign/warning/electricshock{ + pixel_y = 32 + }, +/turf/open/floor/pod/light, /area/shuttle/pirate) "cY" = ( /obj/effect/decal/cleanable/dirt, @@ -1710,12 +1763,12 @@ dir = 6 }, /obj/effect/decal/cleanable/dirt, +/obj/structure/sign/poster/official/safety_internals{ + pixel_x = 32 + }, /turf/open/floor/mineral/plastitanium/red, /area/shuttle/pirate) "dc" = ( -/obj/machinery/airalarm/all_access{ - pixel_y = 24 - }, /obj/effect/decal/cleanable/dirt, /obj/machinery/light{ dir = 1 @@ -1723,6 +1776,9 @@ /obj/effect/turf_decal/bot, /obj/machinery/meter, /obj/machinery/atmospherics/pipe/manifold4w/supply/visible, +/obj/machinery/airalarm/syndicate{ + pixel_y = 24 + }, /turf/open/floor/pod/light, /area/shuttle/pirate) "dd" = ( @@ -1730,6 +1786,9 @@ dir = 8 }, /obj/effect/turf_decal/box, +/obj/structure/sign/departments/engineering{ + pixel_y = 32 + }, /turf/open/floor/pod/light, /area/shuttle/pirate) "de" = ( @@ -1752,6 +1811,9 @@ /obj/structure/rack, /obj/effect/turf_decal/bot, /obj/effect/decal/cleanable/dirt, +/obj/structure/sign/warning/fire{ + pixel_x = 32 + }, /turf/open/floor/plating, /area/shuttle/pirate) "dg" = ( @@ -1816,6 +1878,9 @@ dir = 6 }, /obj/effect/turf_decal/stripes/line, +/obj/structure/cable{ + icon_state = "0-4" + }, /turf/open/floor/pod/light, /area/shuttle/pirate) "dn" = ( @@ -1828,6 +1893,9 @@ }, /obj/machinery/meter, /obj/effect/turf_decal/stripes/line, +/obj/structure/cable{ + icon_state = "4-8" + }, /turf/open/floor/pod/light, /area/shuttle/pirate) "do" = ( @@ -1835,6 +1903,9 @@ /obj/effect/turf_decal/stripes/corner{ dir = 1 }, +/obj/structure/cable{ + icon_state = "2-8" + }, /turf/open/floor/pod/light, /area/shuttle/pirate) "dp" = ( @@ -1846,8 +1917,8 @@ /area/shuttle/pirate) "dq" = ( /obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/visible{ - dir = 5 +/obj/machinery/atmospherics/pipe/manifold/supply/visible{ + dir = 8 }, /turf/open/floor/pod/light, /area/shuttle/pirate) @@ -1886,16 +1957,15 @@ "dv" = ( /obj/effect/decal/cleanable/oil, /obj/effect/decal/cleanable/dirt, -/obj/structure/sign/poster/official/wtf_is_co2{ - pixel_x = -32; - pixel_y = -32 - }, /obj/effect/turf_decal/stripes/line{ dir = 4 }, /obj/structure/window/reinforced{ dir = 4 }, +/obj/structure/sign/poster/official/wtf_is_co2{ + pixel_y = -32 + }, /turf/open/floor/mineral/plastitanium/red, /area/shuttle/pirate) "dw" = ( @@ -1904,7 +1974,7 @@ /obj/machinery/atmospherics/components/unary/portables_connector/visible{ dir = 1 }, -/turf/open/space/basic, +/turf/open/floor/pod/light, /area/shuttle/pirate) "dx" = ( /obj/effect/decal/cleanable/dirt, @@ -1916,14 +1986,26 @@ /area/shuttle/pirate) "dy" = ( /obj/effect/decal/cleanable/dirt, +/obj/machinery/power/port_gen/pacman{ + anchored = 1 + }, +/obj/item/wrench, +/obj/effect/turf_decal/bot, /obj/effect/turf_decal/stripes/line{ dir = 8 }, -/turf/open/floor/pod/light, +/obj/structure/cable, +/turf/open/floor/plating, /area/shuttle/pirate) "dz" = ( /obj/effect/decal/cleanable/blood/old, /obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/sign/poster/contraband/random{ + pixel_y = -32 + }, /turf/open/floor/pod/light, /area/shuttle/pirate) "dA" = ( @@ -1933,6 +2015,15 @@ /obj/effect/decal/cleanable/vomit/old, /obj/effect/decal/cleanable/dirt, /obj/structure/closet/crate/large, +/obj/item/stack/sheet/mineral/plastitanium{ + amount = 20 + }, +/obj/item/clothing/gloves/color/fyellow/old{ + pixel_y = 2 + }, +/obj/item/clothing/gloves/color/fyellow/old{ + pixel_y = -2 + }, /turf/open/floor/pod/light, /area/shuttle/pirate) "dC" = ( @@ -1947,13 +2038,90 @@ /obj/structure/shuttle/engine/propulsion/right, /turf/open/floor/plating, /area/shuttle/pirate) +"kI" = ( +/obj/structure/sign/barsign, +/turf/closed/wall/r_wall/syndicate/pirate/nodiagonal, +/area/shuttle/pirate) +"mq" = ( +/obj/machinery/porta_turret/syndicate/energy/pirate{ + dir = 8; + faction = list("pirate"); + icon_state = "standard_lethal" + }, +/turf/closed/wall/r_wall/syndicate/pirate/nodiagonal, +/area/shuttle/pirate) +"ol" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/shuttle/pirate) +"pw" = ( +/obj/machinery/porta_turret/syndicate/energy/pirate{ + dir = 4; + faction = list("pirate"); + icon_state = "standard_lethal" + }, +/turf/closed/wall/r_wall/syndicate/pirate/nodiagonal, +/area/shuttle/pirate) +"sE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/red/line{ + dir = 8 + }, +/turf/open/floor/wood, +/area/shuttle/pirate) +"un" = ( +/obj/effect/turf_decal/stripes/red/line{ + dir = 8 + }, +/turf/open/floor/wood, +/area/shuttle/pirate) +"vT" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/shuttle/pirate) +"yP" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/directions/dorms{ + pixel_y = -22 + }, +/turf/open/floor/plasteel/dark, +/area/shuttle/pirate) "BD" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/stripes/line{ dir = 6 }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, /turf/open/floor/mineral/plastitanium/red, /area/shuttle/pirate) +"HH" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/shuttle/pirate) (1,1,1) = {" af @@ -1969,10 +2137,10 @@ af af af af -af ae aj -aA +aj +mq af af af @@ -2029,8 +2197,8 @@ ag ai al as -aB -aS +ol +vT aZ bq bI @@ -2050,10 +2218,10 @@ aj aj aj am -aj +kI aC aB -aS +HH br bJ bV @@ -2077,7 +2245,7 @@ aD aB ba bs -bK +yP aj ch cw @@ -2102,7 +2270,7 @@ bt bK aj cy -cx +aj aj cD cT @@ -2217,7 +2385,7 @@ dc dq dz aj -ae +aj "} (13,1,1) = {" af @@ -2387,8 +2555,8 @@ bn BD bT aj -cf -cB +sE +un cM ck ck @@ -2453,10 +2621,10 @@ af af af af -af ae aj -an +aj +pw af af af diff --git a/code/game/objects/items/cards_ids.dm b/code/game/objects/items/cards_ids.dm index 3cceb56796..df7d6467f0 100644 --- a/code/game/objects/items/cards_ids.dm +++ b/code/game/objects/items/cards_ids.dm @@ -556,7 +556,6 @@ /obj/item/card/id/pirate access = list(ACCESS_SYNDICATE) - /obj/item/card/id/captains_spare name = "captain's spare ID" desc = "The spare ID of the High Lord himself." diff --git a/code/modules/events/pirates.dm b/code/modules/events/pirates.dm index 88f6aa931b..b873f25316 100644 --- a/code/modules/events/pirates.dm +++ b/code/modules/events/pirates.dm @@ -206,6 +206,7 @@ icon_screen = "syndishuttle" icon_keyboard = "syndie_key" light_color = LIGHT_COLOR_RED + req_access = list(ACCESS_SYNDICATE) possible_destinations = "pirateship_away;pirateship_home;pirateship_custom" /obj/machinery/computer/camera_advanced/shuttle_docker/syndicate/pirate @@ -214,7 +215,7 @@ shuttleId = "pirateship" lock_override = CAMERA_LOCK_STATION shuttlePortId = "pirateship_custom" - x_offset = 9 + x_offset = 7 y_offset = 0 see_hidden = FALSE From 90930494d66573a0b770dafb18d0fd9f2ea049b3 Mon Sep 17 00:00:00 2001 From: zerothebigboy Date: Wed, 5 May 2021 18:43:11 -0400 Subject: [PATCH 125/259] k --- _maps/shuttles/pirate_default.dmm | 15 ++++++++------- code/modules/events/pirates.dm | 4 ++-- 2 files changed, 10 insertions(+), 9 deletions(-) diff --git a/_maps/shuttles/pirate_default.dmm b/_maps/shuttles/pirate_default.dmm index 89240bf009..56d0ca606f 100644 --- a/_maps/shuttles/pirate_default.dmm +++ b/_maps/shuttles/pirate_default.dmm @@ -404,6 +404,9 @@ }, /obj/effect/turf_decal/box, /obj/effect/decal/cleanable/dirt, +/obj/machinery/light{ + dir = 8 + }, /turf/open/floor/pod/dark, /area/shuttle/pirate) "aR" = ( @@ -641,6 +644,9 @@ }, /obj/effect/turf_decal/box, /obj/effect/decal/cleanable/dirt, +/obj/machinery/light{ + dir = 4 + }, /turf/open/floor/pod/dark, /area/shuttle/pirate) "bf" = ( @@ -999,9 +1005,6 @@ /turf/open/floor/pod/dark, /area/shuttle/pirate) "bN" = ( -/obj/machinery/light/small{ - dir = 8 - }, /obj/machinery/computer/camera_advanced/shuttle_docker/syndicate/pirate{ dir = 4; req_access = "150"; @@ -1013,9 +1016,6 @@ /turf/open/floor/pod/dark, /area/shuttle/pirate) "bO" = ( -/obj/machinery/light/small{ - dir = 4 - }, /obj/machinery/computer/monitor/secret{ dir = 8 }, @@ -1480,6 +1480,7 @@ /obj/effect/turf_decal/bot, /obj/structure/closet/crate/large, /obj/machinery/jukebox{ + anchored = 0; desc = "Formally known as the SSDD, the Space Shanty Delivery Device is employed by various rings of the piracy scene for its capability of raising crew morale with its inspiring tunes. Unfortunately, this one doesn't seem as if it has many records pertaining to its designated topic on hand."; name = "\improper Space Shanty Delivery Device"; req_one_access = null @@ -1824,7 +1825,7 @@ movement_force = list("KNOCKDOWN" = 0, "THROW" = 0); name = "Pirate Ship"; port_direction = 2; - width = 17 + width = 23 }, /obj/docking_port/stationary{ dwidth = 11; diff --git a/code/modules/events/pirates.dm b/code/modules/events/pirates.dm index b873f25316..d284146ea3 100644 --- a/code/modules/events/pirates.dm +++ b/code/modules/events/pirates.dm @@ -215,8 +215,8 @@ shuttleId = "pirateship" lock_override = CAMERA_LOCK_STATION shuttlePortId = "pirateship_custom" - x_offset = 7 - y_offset = 0 + x_offset = 11 + y_offset = 1 see_hidden = FALSE /obj/docking_port/mobile/pirate From 2b91cabd6e3ae6ed1b642a1109bc0a79b2ddd608 Mon Sep 17 00:00:00 2001 From: Changelogs Date: Thu, 6 May 2021 00:17:03 +0000 Subject: [PATCH 126/259] Automatic changelog compile [ci skip] --- html/changelog.html | 6 ------ 1 file changed, 6 deletions(-) diff --git a/html/changelog.html b/html/changelog.html index 19efdd3168..c8b088fd02 100644 --- a/html/changelog.html +++ b/html/changelog.html @@ -760,12 +760,6 @@
  • Prevents heat from going through reinforced plasma glass.
- -

04 March 2021

-

LetterN updated:

-
    -
  • removes bsql
  • -
GoonStation 13 Development Team From a269e8bf03f7f6d21267f71fe9fb2f7979469a36 Mon Sep 17 00:00:00 2001 From: Timothy Teakettle <59849408+timothyteakettle@users.noreply.github.com> Date: Thu, 6 May 2021 01:51:17 +0100 Subject: [PATCH 127/259] migration fix --- code/modules/client/preferences_savefile.dm | 23 +++++++++++++++++---- 1 file changed, 19 insertions(+), 4 deletions(-) diff --git a/code/modules/client/preferences_savefile.dm b/code/modules/client/preferences_savefile.dm index ca993be7c4..1166920c9f 100644 --- a/code/modules/client/preferences_savefile.dm +++ b/code/modules/client/preferences_savefile.dm @@ -311,13 +311,28 @@ SAVEFILE UPDATING/VERSIONING - 'Simplified', or rather, more coder-friendly ~Car var/old_marking_value = S[marking_type] var/list/color_list = list("#FFFFFF","#FFFFFF","#FFFFFF") - if(S["feature_mcolor"]) color_list[1] = S["feature_mcolor"] - if(S["feature_mcolor2"]) color_list[2] = S["feature_mcolor2"] - if(S["feature_mcolor3"]) color_list[3] = S["feature_mcolor3"] + if(S["feature_mcolor"]) color_list[1] = S["feature_mcolor"] else color_list[1] = "#FFFFFF" + if(S["feature_mcolor2"]) color_list[2] = S["feature_mcolor2"] else color_list[2] = "#FFFFFF" + if(S["feature_mcolor3"]) color_list[3] = S["feature_mcolor3"] else color_list[3] = "#FFFFFF" var/marking_list = list() for(var/part in list(ARM_LEFT, ARM_RIGHT, LEG_LEFT, LEG_RIGHT, CHEST, HEAD)) - marking_list += list(list(part, old_marking_value, color_list.Copy())) + var/list/copied_color_list = color_list.Copy() + var/datum/sprite_accessory/mam_body_markings/S = GLOB.mam_body_markings_list[old_marking_value] + if(length(S.covered_limbs) && S.covered_limbs[part]) + var/matrixed_sections = S.covered_limbs[part] + // just trust me this is fine + switch(matrixed_sections) + if(MATRIX_GREEN) + color_list[1] = color_list[2] + if(MATRIX_BLUE) + color_list[1] = color_list[3] + if(MATRIX_RED_BLUE) + color_list[2] = color_list[3] + if(MATRIX_GREEN_BLUE) + color_list[1] = color_list[2] + color_list[2] = color_list[3] + marking_list += list(list(part, old_marking_value, copied_color_list)) S[marking_type] = safe_json_encode(marking_list) From 6bd5707a631a80720981d8745d874568947edc4a Mon Sep 17 00:00:00 2001 From: SandPoot Date: Thu, 6 May 2021 02:50:32 -0300 Subject: [PATCH 128/259] found it --- code/game/atoms_movable.dm | 3 +++ code/modules/tooltip/tooltip.dm | 3 --- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/code/game/atoms_movable.dm b/code/game/atoms_movable.dm index fbda722e4f..aafa77b878 100644 --- a/code/game/atoms_movable.dm +++ b/code/game/atoms_movable.dm @@ -55,6 +55,9 @@ ///Internal holder for emissive blocker object, do not use directly use blocks_emissive var/atom/movable/emissive_blocker/em_block + /// Should we use tooltips, if the thing does not have the code implemented `get_tooltip_data()`, it will default to examine(src) + var/tooltips = FALSE + /atom/movable/Initialize(mapload) . = ..() diff --git a/code/modules/tooltip/tooltip.dm b/code/modules/tooltip/tooltip.dm index 6f29875c20..1d22af26ac 100644 --- a/code/modules/tooltip/tooltip.dm +++ b/code/modules/tooltip/tooltip.dm @@ -122,9 +122,6 @@ Notes: if(user.client && user.client.tooltips) user.client.tooltips.hide() -/atom/movable - var/tooltips = FALSE - /atom/movable/proc/get_tooltip_data() return From 6414b371f89e2b5e1395f53c1ee146f8fdf7c9d1 Mon Sep 17 00:00:00 2001 From: SandPoot Date: Thu, 6 May 2021 03:03:46 -0300 Subject: [PATCH 129/259] fancy description for the proc --- code/modules/tooltip/tooltip.dm | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/code/modules/tooltip/tooltip.dm b/code/modules/tooltip/tooltip.dm index 1d22af26ac..fd45ea37d9 100644 --- a/code/modules/tooltip/tooltip.dm +++ b/code/modules/tooltip/tooltip.dm @@ -122,6 +122,15 @@ Notes: if(user.client && user.client.tooltips) user.client.tooltips.hide() +/** + * # `get_tooltip_data()` + * + * If set, will return a list for the tooltip (that will also be put together in a `Join()`) + * However, if returning `null`, falls back to default behavior, which is `examine(src)`, and it will definitely include + * images since it is the default behavior + * + * Though no tooltips will be created for atoms that have `tooltips = FALSE` +*/ /atom/movable/proc/get_tooltip_data() return From 6ac964b35a4f6627e61baec762dd43008359498b Mon Sep 17 00:00:00 2001 From: silicons <2003111+silicons@users.noreply.github.com> Date: Thu, 6 May 2021 01:52:35 -0700 Subject: [PATCH 130/259] e --- .vscode/launch.json | 12 ++++ .vscode/settings.json | 18 +++++- .vscode/tasks.json | 55 +++++++++++++++++++ .../effects/effect_system/effects_foam.dm | 4 ++ .../environmental/LINDA_system.dm | 2 +- 5 files changed, 87 insertions(+), 4 deletions(-) create mode 100644 .vscode/launch.json create mode 100644 .vscode/tasks.json diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000000..543058728f --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,12 @@ +{ + "version": "0.2.0", + "configurations": [ + { + "type": "byond", + "request": "launch", + "name": "Launch DreamSeeker", + "preLaunchTask": "Build All", + "dmb": "${workspaceFolder}/${command:CurrentDMB}" + } + ] +} diff --git a/.vscode/settings.json b/.vscode/settings.json index f290e9f369..849a5165e1 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -6,8 +6,11 @@ "typescript.tsdk": "./tgui/.yarn/sdks/typescript/lib", "typescript.enablePromptUseWorkspaceTsdk": true, "search.exclude": { - "tgui/.yarn": true, - "tgui/.pnp.*": true + "**/.yarn": true, + "**/.pnp.*": true + }, + "editor.codeActionsOnSave": { + "source.fixAll.eslint": true }, "workbench.editorAssociations": [ { @@ -17,5 +20,14 @@ ], "files.eol": "\n", "gitlens.advanced.blame.customArguments": ["-w"], - "tgstationTestExplorer.project.resultsType": "json" + "tgstationTestExplorer.project.resultsType": "json", + "[javascript]": { + "editor.rulers": [80] + }, + "[typescript]": { + "editor.rulers": [80] + }, + "[scss]": { + "editor.rulers": [80] + } } diff --git a/.vscode/tasks.json b/.vscode/tasks.json new file mode 100644 index 0000000000..b7d12f0527 --- /dev/null +++ b/.vscode/tasks.json @@ -0,0 +1,55 @@ +{ + "version": "2.0.0", + "tasks": [ + { + "type": "process", + "command": "tools/build/build", + "windows": { + "command": ".\\tools\\build\\build.bat" + }, + "options": { + "env": { + "DM_EXE": "${config:dreammaker.byondPath}" + } + }, + "problemMatcher": [ + "$dreammaker", + "$tsc", + "$eslint-stylish" + ], + "group": { + "kind": "build", + "isDefault": true + }, + "dependsOn": "dm: reparse", + "label": "Build All" + }, + { + "type": "dreammaker", + "dme": "tgstation.dme", + "problemMatcher": [ + "$dreammaker" + ], + "group": "build", + "label": "dm: build - tgstation.dme" + }, + { + "type": "shell", + "command": "tgui/bin/tgui", + "windows": { + "command": ".\\tgui\\bin\\tgui.bat" + }, + "problemMatcher": [ + "$tsc", + "$eslint-stylish" + ], + "group": "build", + "label": "tgui: build" + }, + { + "command": "${command:dreammaker.reparse}", + "group": "build", + "label": "dm: reparse" + } + ] +} diff --git a/code/game/objects/effects/effect_system/effects_foam.dm b/code/game/objects/effects/effect_system/effects_foam.dm index 640675bea5..f6261c7b80 100644 --- a/code/game/objects/effects/effect_system/effects_foam.dm +++ b/code/game/objects/effects/effect_system/effects_foam.dm @@ -309,6 +309,10 @@ /obj/structure/foamedmetal/resin/Initialize() . = ..() + neutralize_air() + addtimer(CALLBACK(src, .proc/neuralize_air), 5) // yeah this sucks, maybe when auxmos is out + +/obj/structure/foamedmetal/resin/proc/neutralize_air() if(isopenturf(loc)) var/turf/open/O = loc O.ClearWet() diff --git a/code/modules/atmospherics/environmental/LINDA_system.dm b/code/modules/atmospherics/environmental/LINDA_system.dm index 4f057ca9be..2267ebf1d1 100644 --- a/code/modules/atmospherics/environmental/LINDA_system.dm +++ b/code/modules/atmospherics/environmental/LINDA_system.dm @@ -44,7 +44,7 @@ return FALSE /turf/proc/ImmediateCalculateAdjacentTurfs() - var/canpass = CANATMOSPASS(src, src) + var/canpass = CANATMOSPASS(src, src) var/canvpass = CANVERTICALATMOSPASS(src, src) for(var/direction in GLOB.cardinals_multiz) var/turf/T = get_step_multiz(src, direction) From 97dcfd0750ec3e054ac76323a7811a1301d25535 Mon Sep 17 00:00:00 2001 From: silicons <2003111+silicons@users.noreply.github.com> Date: Thu, 6 May 2021 02:02:25 -0700 Subject: [PATCH 131/259] Update effects_foam.dm --- code/game/objects/effects/effect_system/effects_foam.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/objects/effects/effect_system/effects_foam.dm b/code/game/objects/effects/effect_system/effects_foam.dm index f6261c7b80..bb8cad4fbc 100644 --- a/code/game/objects/effects/effect_system/effects_foam.dm +++ b/code/game/objects/effects/effect_system/effects_foam.dm @@ -310,7 +310,7 @@ /obj/structure/foamedmetal/resin/Initialize() . = ..() neutralize_air() - addtimer(CALLBACK(src, .proc/neuralize_air), 5) // yeah this sucks, maybe when auxmos is out + addtimer(CALLBACK(src, .proc/neutralize_air), 5) // yeah this sucks, maybe when auxmos is out /obj/structure/foamedmetal/resin/proc/neutralize_air() if(isopenturf(loc)) From cb1e2f3730ff836a53ec5b0ffae20126224075a1 Mon Sep 17 00:00:00 2001 From: silicons <2003111+silicons@users.noreply.github.com> Date: Thu, 6 May 2021 02:09:06 -0700 Subject: [PATCH 132/259] thing --- code/datums/components/radioactive.dm | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/code/datums/components/radioactive.dm b/code/datums/components/radioactive.dm index 4c418bb8dc..f41396ad67 100644 --- a/code/datums/components/radioactive.dm +++ b/code/datums/components/radioactive.dm @@ -52,8 +52,15 @@ return strength -= strength / hl3_release_date if(strength <= RAD_BACKGROUND_RADIATION) - qdel(src) + addtimer(CALLBACK(src, .proc/check_dissipate), 5 SECONDS) + return PROCESS_KILL +/datum/component/radioactive/proc/check_dissipate() + if(strength <= RAD_BACKGROUND_RADIATION) + qdel(src) + return + if(!(datum_flags & DF_ISPROCESSING)) // keep going + START_PROCESSING(SSradiation, src) /datum/component/radioactive/proc/glow_loop(atom/movable/master) var/filter = master.get_filter("rad_glow") From cd0a0bbe5cded4687529bddcc40eeb50bc3df83d Mon Sep 17 00:00:00 2001 From: silicons <2003111+silicons@users.noreply.github.com> Date: Thu, 6 May 2021 03:02:46 -0700 Subject: [PATCH 133/259] Update healing.dm --- .../code/modules/reagents/chemistry/reagents/healing.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modular_citadel/code/modules/reagents/chemistry/reagents/healing.dm b/modular_citadel/code/modules/reagents/chemistry/reagents/healing.dm index de27723508..2cdaef9c91 100644 --- a/modular_citadel/code/modules/reagents/chemistry/reagents/healing.dm +++ b/modular_citadel/code/modules/reagents/chemistry/reagents/healing.dm @@ -217,6 +217,6 @@ /datum/reagent/fermi/zeolites/reaction_obj(obj/O, reac_volume) var/datum/component/radioactive/contamination = O.GetComponent(/datum/component/radioactive) - if(contamination && reac_volume >= 5 && purity >= 0.7) //you need at least 0.7 purity to instantly purge all contam on an object. + if(contamination && purity >= 0.7) //you need at least 0.7 purity to instantly purge all contam on an object. qdel(contamination) - return + ..() From 5eae6a3e43a1f595d8327077a99337e346ae2167 Mon Sep 17 00:00:00 2001 From: Fabian Date: Thu, 6 May 2021 21:53:11 +0200 Subject: [PATCH 134/259] I WILL NEVER STOP TRYING TO CHANGE THE MALF AI SOUNDS Due to unforeseen circumstances I will be shitting my pants --- sound/ambience/antag/Malf.ogg | Bin 167899 -> 258308 bytes sound/announcer/classic/aimalf.ogg | Bin 77453 -> 241608 bytes 2 files changed, 0 insertions(+), 0 deletions(-) diff --git a/sound/ambience/antag/Malf.ogg b/sound/ambience/antag/Malf.ogg index feea5fbf199eab4274e014a69764e521a0c085fb..c84ec5ecff0b356ff3a3cdf754ec3917fa81105e 100644 GIT binary patch literal 258308 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 Kg;fyf>i+>k2&(=7 literal 167899 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

2SlvBF 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%0AfFc;vI!0)J1E+U@>JogoI*P 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

A< zMNVDex*lUX&&k-zt4WQJ_RS1xS?;6Qj7m2^J!foI?WCcJHb_g4h}5T{56c-IaGN6X` zBeR?vWcSh>^8z0F|2@`MM!@!p!Nmd~`4Kq%0V&oOKhzg?u~S+~1vSF=f?JUDH3;-^ zNVJLk9sUGfe$LI#wOR;${==`S%L9NtJjGSu*u4%Wof$by+_5p9 z$)+$5i{KgV>|Yd(zOWe7Ocx-nJMIV$)-zizzKUwo?eXiMRsS;7dHr=uoE_oQz)1i= z`0a8NpHN`|+@M;R5`k<+S=#L4hR)zPDy`n3>%<>AJ?0}x?;1iaF8$$FM2P|^9au33Xh8PoOxhTHCP_W;djDnYyg`4EL8QS&}VnkRHJ@}=%zn@l92 z_DNj@Ub^ij@F3+k?a=o;7Y?3!Ys49A9L_zMI@?+cpXXkAu#ji-DXt8&ZvBH!C;!#E zvxin+^(}d|FW_F0eSq~Hmm*v7OQwi2!j=}LARuAO`45K03bojN)G!ts+ayz$cp0QB z=6KYoX<+T}GDG_Cj)w8nx)5F59fH>0x{6k3yk1__{^#xNbGKM1wZBEcJaQ!RAa&K< zLmj32Hy}V57DmCg=fB4GD9PF=_chMXB`9fhFxv>g@6-(jlA?LVE?N!Q?_zOHk7OS=j1QFhbA#9L*tL%Ncsu+hcJ#}}NBsxMJ( z{YzW?X_YwyT3VQTkGnafQfg<(Og7iKXVY|rqBa;Ki$9ec~`WY%R@c@v-M19`wyksnH6Q z&4^`X`Oo%h9M=Ep{B#{U`6g;BuTXQYIlJXbGP$Vf&TYhhdujR=C_Fi=Ht2N8mls|c zve>$nXDji$NXwWkmIQ0aM_yuPQ7(+q+?Rn4XVc()l>ShLsdF-~U>F9FyN-aHtqdEq z8I8EOxqvYRK9bw$6}G3*U~@it%b9>sLQ_~?7>HDLuJHnM9G0?>e84YE0|ZlclRC%QdxzQ9@fjGph52o(Hs|nz?EDGBN z2?s!_^fU8J_5%{29FW+d;l(9jaQL_uPx@a%W&a1Q1fu?5bNF9MF?d$ggkDwYi=m39 zl9IB4wwj8PlDzhpcNL=kU(ml2H92ET3k6wO8ABtJSO41J-iRzDINr!wD&i>|L+Z!M z($pufiRMWmsnMT%Tbt9LyNK@H9+6npWHhgiUKS544%^80!UNj8@8Nwh)#Co%9#}?Ez9tiT?)|Q{i5T0aCbYRHCgtRwj{wy%PQkUAW7?JQA*E8f)&wY|XXEWjZV$WN5qcm2g zZJB%f8?*FepE~ED73z#SAB2iWH-)_y#k8tF88aAZ&qwU4GuO|RIG{#!&ujHXiTiE` zXu1%ht zu&icK)Y@OafGu;&mF)8Gr7D>o^R>odOH0MpHy7rf7M4kh0%_wsDg*y3hEQGV+s-)D&H|G5Hl80ZejPCl=N zVqW0#2y!n$_4ND}_GE_ec%q@u3U^J^d$~`4JwGoA{r9(eVe+?-)kl=tKc&MGyImrC zk@jOJs|zAPWR?z`!FSp)PwZwS&YzsPu=FDx{Bgo@2J3QL-#xe|GcN6tZrFeKh-`j( zfjM$jQX~~EzR$Ikbo@~PHF~~O{3hYv^v$bX1K8erzdXd##fozhHZH%uziD+|c8*pz z{UR?uZt4&?q*Kogj+Ln_(OdSo8h!pQ(vJ0)`Nzu8*J~CM%m4mG)l9wW+_efb=zP$6 zE@wYc>(h`dYqOW1Ts|hS3yq+W)Y%B$7q-VH?xkfyt zaF8d`gGWPN0+P_%=@4cffI`4*~pb!2SShH)u z*p>&f*vE(0^AKZr;x0RoTUZq1K%AxpIu%zZEO9&rcF0RXtB37QOfJ#qL6LVDm8hhJ?V(tWMkXIM5>Ft!4E%@Oj0~ zPXJmm@Xw2)f$;7fs?+k}mL&IJzLZWVIr4moT#DIoW3k7#p46kVTW4}QHqNnfvkaek zfngYeCsV?v83yQ&Yz(r1yg0|%#Q<7 zoimQ_t>jV5%Di(fpM0*g$$V#DUwK76oOx%L{VSPJSXCVS9#dx5l4TzEO!)%BypwF# zUnV`B(>dAJ@#>ouwfI@Rgz`Ck331@f7#n2Yphxv=hIkuFBaNeySPUM+$h}B3x>8uS z8VF3M0uZ_yd1<*9ttftPd65-gATm6#<*vlEp(JB!v&F6Szs>uutSUTB!m$&|mGw_3 zzdSX*`<_r|Vo)j#r7IC~tgB(C8x^k`ZQgI{rZ944RD|<%j5Fm zx$gp)(!U7hnHyG-1BU@f%BS1yOxTPRQzdsaeadiw%Lc&s`GYdC~O=l0-dMGO}Uy}bNlBXqBSqTty8h9Aa6u{ zyh>sF?4r_#%Z}S+SkT}(fm@;j$FL_0z+$S;p)P3Nhc=_FHq`>N^w?`EWlt`mZ zb=D)N1K*;5WU|57xOioEctkY2j}Cl<+j{-JWh?c@`Z;-Pfo0PWuaX^|^p0ewAJ`V^d&86`B0g(2bPf^k^#Q3OR8PI-$8)0Dn zmXWCn#8u?M?2Vo|0T2K;ntz=gXI5EM#xQ8mu5pLvRh7q)TT8zw0Um0z#_niz*OTUP zbdJhnK9g_VX&%%fBzybH#%gEI~?CS=_h=Zy)pOa!QJvknX7vON6?45 zu%p}s1#1Xgy-2VW$N0-Fkvv?A5Z#dLNxJecK1r{_>;Rq&{4$b4tkO!wFNZFL1`F*S zo6Q@e!FltJhevpok6dR}%tiM#^+t_gd2x5Vk^P%%=dq2g$Kct-eZgi>U+ZPZ(&hXk z91r_^QvJHXnM-h2$#F@lZyIq)_A-ZRWrk}Wie+hIKNgtK*}bleK>X(#W8@gaLJt^%U&>Cw^^o6JU&7D6(o_CxAT){}=N-zy(ENJ0u zKtPF13464K%1I`UAQ}X%tQfxjMjtT$BM!u}Kr4~eqC5oD29Y7n)^TFk4o$T+N2CR2p^&d(yERI*z38B667 zNB4oCG;C|5h4Ndl{wmLxaf?_*59kZY-b%(?r@v#Or=LdeJyPs1Bn)>(lu({nTlG>| zMKJ0*y|i8=KfF3QYESCfV5gH-g3 zWo!x5jB)+p$rU)OjGcMs+ow!E@2bxGo8hG;^KSRmr>DU&pxN98-E*OO?HE`ny^bTeR9u-{jwC6Fay5rA!vr`DLi*o0Vr zP{ovJdO6J%eLEu!A2gR6DMMth0kpVx6DyP^OuQnN`^U&7Ti!X`t>kaT)1CiHlT&H5 z!=%ys%8Tv~kI^_nH=jCZ53E8rs197(xt?~FS_&KQwezA#DG;$T$=n+%H>ApNVcjx| z5fptqRmW4xsL|u!9fkEEApG-xCm&cXb@6xy7>W6OKV%*GBU5YA=q!M%f4TVQhkJ#D zi#aagCbO#Ha6RS8$F-P<&xFN(RQ}%|KCm671qR8y{dT_%5bQFOqNdUrpN~o%dVYp> z*4@t%?J^}!RbfpmB#6(?3i+N-ch++oscR20%;8Z;xNeX!+2TFi;;jWA#4e3;*0X+6 zMy>G*BF3blc2o=kEVM;XqGNf;VVM#IR~?pr_y$LF2lcos8*>v;9~qkchOGIEipLla z&Ep+xv>W({q?YQVxyn@C9hp6=KA%?~To|zPvssQl0Y7%c`8>idYzh#OZ)i6E*QwBPtqb_FPFoN4?9yn=)fT z%}qf{rTjs_-N;(8q1Ruvu#(E}-}gGg{I8$^v*5Rq;YE42CZ<`s4WEF|{e3Baea$*| zhxfeukc*5_^RWtf`@;YjUBoE`MBGbO!v|t5M0RhI#InBY55a)=eMEG3^ZG-JkM30C263^NZmV6DUIr z`X217t4$6Oy9u}LD&3EqmM9*oYeX2{B%zXzol4fZpG4}H-pZzThjo-NPIP@h(Pj#1 zh(U@NY7EsW48DMic-tH6hx9-)D+ZpU4rOMk0{ZbEL^1}>9_Nqh!^KW9VKrAt-!JCw z2hyy6%eJkFh4%Xj8|1KN8gD1^PjqTiWyVYr#S0Rc- zQo4I<%+!iYkIxo0hhDj84quq{h4Mk~RH8+U6W(kMo*Jtm8!!Z(VtK86a&W#t)hPKq zU5h)uGuu{_^P-B@PavsOy`X@x`ai*c)=RNZPo+7^BXfhoB7Sdmng0?W5B?HdX}BE4 zSdKv{S6*+?!WR*N{~_wEg4%4uZXMi;l%mCoeYh7dP>K~P6n86D++B+ncPU+KTB>*dHr=ZNUHk5Gy~sReP8%fi0$eyUxR`^B-W=cjn-5f)1wU+_ zJt4u;ipFutqfdP`zzie*DGC`j!v7~sgq8lUFu{*Hl_z#IQiN1KepWUy(N|YhQCC+} z(zmiwQZP1EQBzTPZ=|oU_VME2fQ)utGH+V-k6|9%_|xEWC!zxJR{ip8jDt z#?>l$t|*=Q;8jpaD(!2XnMEJt?xC&K`PC_=3eD*m;rBmb@!C} z7js-Ng7m;IiQj+ZFIysYiDAL|?;Jy(BW_j>{cbaz?0Xcy*3IWayHez=oYU{?In#fu z$&b=$Bd}k7K>~x)chk>pYK{1+m*5-Cr5BMN1ag4){TXqKo;~Z6ixsjvfu2V8AGY*3 zEdOdj`+As7H7U${3o z*xxtJm$<;90VpUGgBhgfJz~{LLER$S6ZP`r%uZy-9o)T?glji)y$ar(F2lE`N%#c6 z3H{Tz6;~q>&I!}?1qm=T92h2Z!i3*3SU;T>*4JF`aY4)36@nf*j5i~#XnA4TZX~}J zQL7YfC*St{2fn1A{E#B?FxuXnXEVZiNkJ~*F-6UKJPpZq%sN{1_{`3Abp5+hLtm#M z`6OS_lyDaU89XKx7w@}@rGRnmQgwcp^DO2S={wW(pTDHVu8k(JCG01NF`EjojnWil zn=AT`--kD#133<+uk%V18O~@urO82$uO0t@KJ@l&yO4K*ZdEk55IVd z9dB1~ow+TQ(5-2+mAy%kkkKwghMF@a{fxCrM+<#-a+`){8Wv<7%~L136fuGA~8hx8*vaI_|WDDKPqi`>amDz8jUg3+yzBWA)8JF-N3A5H6t*%Lq zwnYWmq=BQO7&&t0l@%1I2&DEp3(v&I`hwt`8J=nFT-F^}2tfm=sSx}ZJKkuqy5L|s zc;Gc~Cfz^xCQT0`1MLAs(|{i%YzR*bWrynzSH+_W-lSE40olP;(v$YinP3dF^m+Q3qX%%t!Z5o|(R zkG4+Y+wr&O+*9v>ldRxeY`--_Q=iu7Fsddk>!^`AuDT@k$G^9x#Lg6%elVc` z#6;O#6r{Lr%x?ZNQtC^^cwFlE-Hw|CH(a_7c(i$L64SkDF`NElV(0lu2KH*B%u^#! zX)iC1nHn1P0gQDQZ#4Fw8)648!Z?@$7$a*FxgPVss78vXNNgWrRvYQ0@+GobeWPDc z7en3O;=EbcTHFdWprWJFn<{FFRSckurd^C_Tk~#Rz_Il_rb|u{AF=3(GOtwlj8#B6 zkEbek;Zqd&1LCsbrLKrkM1EW6pQ6W1#Ja|C6)UB*m9tC+xM~I6?^Q1#n!Cra>Prt6=E=hH`DK-a%PNX+7)E`Sj;S~WeBz64z%4Q_g zwGUsB0%N{DBx7YOcD(tONU~SsWnn^7$@6=}t-%7NfBRpJ7QZJljr(5UwO;qTnq)bK zjt4(<533s<_2R$%%PwbMBDeek&#t!0RRL#7QA8Pe%w7Z~-Q?PMFBXVhWW`(pS7Y1s z;3$YofTs!Niz|>Qn_hYfH^%4SyP-Hy>M)H9JlCZ{DSP}{(f5fEd?`z zytr9=*>Cekta$buH13GL&kI=hXv60ecSU0kZ28i}^(q<*>!)w7uH;1TN zyS$)<0Z$E9|jdRwcqOeYipZZOeG=8o4Mp-{LV6>! z%f8)b@5((*rLJid$A0wF{mE$W+O-FJU!m&3E~KMk|L7(VISE0GHH*1t6%-^R>|7a( zv1)UtA_eH@V>3Jtv-Z?PEkn1oN@JD?W+s4L2$mUdv^Qu#mt!e@7flYBCqcRB>bg-(yCl8Q zGH1LSzj{=FMu+LcyS^K(^c4ZH46qp4>#cEj{BQn-w8%JQ_^@+w)xOx(`^}UF2h}0k z|CC;jqZ>D*14GvI-u5;*SJQT`N&(sh0g0F*oG`s}pL8}y$J-zWDAHiLqbTABxCj35 zP3pY10zrS&CVKy!y0UZqA1dsebnrW?aeAuo%ocL{^Uv{Qk%@0hAfPrQ67%*Z?Cgc< z>7?rH8k-)Zu*gqL=4t+@ckkh{D*Z?D9AzjLCTpGTbk-pC8vs^2pf)Wk6OG^MO{yU) z0ZyI?Ii{b-?d&R1PnFGQ>b1DeTI-|Lep{}Pve z3>R68ty&vki8JSI9vPmiRqv}Ob}J2Z*~GAzrb4@e0%}C4JWZVUr&j7SF4!C?;)9Qj z;OU0Ij+!3tKF-UNr9692)-=`E^Sfeb2_>`fSxKjG=5`jf`qgt;)|+9kMj61ex5|L) z4;m-Q2U1drABxi^sv@H>nfj2+1W}oD=s%yFDxN@CTbh+xT+yP5J&@)T`!z;sn)6~> z)79@L$6?zrhtUsXHfCYXJJ>h)){v?M=DSGE)GLoJ?wC2Q(ywH{GcBrS@b^g+#PZph zOk%Ul5=(*x<4Q!5$gw;);&QsB;aM`MvUu56%Y@y}hh;Y10ZFg5q6ZNG-Do-oz5!{Y zNw4`O-q${U51@9Pr_0ZO6*#m^m1Kur8=d$JliL3__(mIGxbNqoIXu5rPqnB;aFjOl zv5Gf@2S9?tt&J2seb+WYe)9fU)yZtwEw( z?U;=@ErY=2l`(dnRCGpPVy<{ay)=t zX-Oi;v%4my>F$p$bBMl-e%4-|3SULwlG78gFXZZU>6WPrx(B?HSleo-fXUP9ANY)m zlZ*-;-I2;D?%v@T-{ce(RU_QC4zCOVt!7wOe1PR>f6z%SVLu`2{G#`{80&H})SQsC zd*^wa6X*cfD$6=}5*x15GEZ`>KG#_@!Zl?#OYG$xd?8^LIKW6MkZS$;m2vz#%t%Jf zSH_9ttpT$0)@XKCPUj`@rgXKI^yPA41fB{caV;Nm2!EBgrKc^^dKokj<{D>}=(Mi= z%&c1PDIqcX_B->9QE--{Z8p3yALaxNsIr%-5G07iB9Sl1BTisWGJioVelOAPcO57`zR5`Oc$6Ji=u$8_T@NC)i~ z`d_IvCVv|wd=WcSEmo$JgMC2=xL8PV#%Ss-+`V%tuV^$laP#@e;D``e#9GFux&JUF z6;yihWn=BHl8opisMqWD=}Y1?j{m!i5!U;^`hx&UfB1f`pUV5i#MI2xz`$6`$jsQ# z#2oc8{i1JTps%N;Z(xX09^}-F3>D<1KWOP7{XZ(U2DDA$vpqUc)jJ3u;i2eRL-rC3 z=KiOsH7j8yJkt=`%u&Xk*_Nti&kWP$U|G&JR)RjWlRv?a7hSZWk07=p-;gKuUc?R( z15`vyecp55%7TP0@7+Mrlzh7kGes!?li|nX*z(-=^X-fAUc@4xPdQsh&pNY+I2%dU z$0q$guW{sKps2j263sBU-Ay<2?m6hJll~IC6*?bdP2*jOnDPY41i2)RBhsRf!6Gt6 z4r~nNXvJfQ7qytc@SU?+?w{KAQz0S=XNe!f<9#Y`;PZM-(Q1b_K4>sy$ez&6uXiLL z8eJ%l%!_PS1iaSk_qZw;Q21ZQ>zZC<6`$5EquoZpbjPns7gA&yPRI}DVDsm;Zv-y= z`*Az?FC1dR*;}lEobBHqL&Xko43ctE3dsXnvjV!yU>~sWym?RcJGxK7fomCH6pPNv zdU|m#Q#CwqBCH7ZZ^5(lutA6ab9Y6?~^Sp3E<~ zI+}FAxe`+Y_?Bev=_ewvA@#;HTloh9!UOLOGOQtCVx>O((mdg%%t9PKY zO2{HGxZxz&-(~A1ia97aOuG|%a2ojtDE=&B3Wy9y1%ewny^Ne6sj2Wj!a`7rjNkk`Ep%zCR>sOyTm1 zxLNuwPaR~gcmP_n zIfy7Qq?dv!)pA9$RE6=9?$QK zwhpXYgAp-WuS8^?Jf&lthR0Vf8F0tH4lIBnL~7sqM)@*_9w6RVx)K`ZQdNo8NjT$Lzvlu`uDhb&s(}m#E{ytJbv~XdF&Up) zm0myWg0BT#n;Lf6Z?0Do61d}Pk@??7171B*rfxa%nVFk~o}omUxPg{v%P8%D#-~#% z)3=|;K9ele1p$5X60-EZ0;YkJ6DYltQzaEyeHej&rJpNmEp*cNv8El2K3oHZbfzZ3 ziw&dq_xaN|*DdE>0rUi;%N<9_45xe)fQ9G-x=Iy_+4j}Tw0R5`Lmib@mxfCeUAePs zaRlFrRJ7uuJ9nGJu=pi}QfT0S8jG%&^ks5@-?QI;>Jza2i^IF;$G|i3sX9N^vquhpi{rZP)ndP!0u!n z${r3>v(MgVkTd;z!d{KE;r53*bApg2zx)grpJx@$h(A} zXJ6hMMaHkRA4q3Vc0E1^NEU`f6F-dJ6yzZinPHHFW!zZz0JNd-t6?`0-*LaSE*f%2 zN}F_pOl{eHoUfZ+3lI!x_j6{ua-GSV0Avbiu2N7cC`gf;Ub^pb@5s{-*|#j!hwSsU zzc}p;dG3jndC~Rs2)w_m%ZaDkcHSzjt&dv=6j6{Sgji-3YB`_${=kGyexi`(&V^6S zh}D(veM%h&Hd!f+$T34Te?%n7AGi{k^Om`6WTF5nx?h-KTEPkIajzwbq|#+czUqzY zmbQNUqbQp);TZl{MhIw)j@ps6%o*@I(-_{}7sr~k_+aNN-7!rupeHNAzcSNq-f+ft zc8EAX-f)#!fw1=+EjK^1vp;OSWD9Y+PD5<<@u|qXDL=HASVs1IDl9g5e)9h#{VsiL z`v}b|>&Y>NqxkoDh+EJ`#v7hk8W$hmZeq|(;oahgS05qg|1rQcKR#8T!vBDr*or1- z7Bz;wxi=Rd>yZP2yEh(MEdGpp=DNLV9pA}vZdg}V83=Bt>iao>AywlT%J&)jMY-gT zHFRitFSbDLZv`R^+(a9{Tz#563qi8jI|u7Q{A)u>#|}38o;ZFts_@=r@1J%R|A07Z z*pC(!1)2DQ5vEb$9~ngQXg~P>2?J!f1W!d5_io=U)`zydbRycdoYsi@GIY`8jx#Yb zTPoANG{(<8{kW2?8yC-NRTm=BozXF9Q&t;Ct6&`H0HG|Wt^G@6po_br3VZ}HIlhW3 zmhrVWS%`KQMXe*dh$4p5=@gi@jbNPtEDA2O>l25(I@D4<;o@q)zCNh`qLre@P%g7Af9fBA&tMC2W9o*0aUQ zrCc!eXR^X%M8Cj3yK>}UzNL(aO&DBOCEa&Pqi|vv#Oui?WLJr5b>`6Z))gtjRTvW$ z2GoXE?Zi&zV%Q;O8#?`*8Zk+`-$1ecOc>1=e-m!#QeY~F9a*!cbFi(LO*=dU^p17V z>Wvw$RC+L6mr1l-f-N_t4eGOhsbM9U#3?n9)$o{g{nKo~QAaBciL&G)v^x2**Mqg^ zFvM@h++`6C1WXNMn4;(xDLmYn4fAL7%f6Jh8(-oaM$X36G+iaaj+}ldAApP*YD$`u&fAm)|S&+y?FXYU|aeNObuGuwGrKn56jWn2n_J>}IrV z#Pwu3O|PqF=~$vNswo%yz( zzi?gH{l+7bPeoE=OQ$aSW1Xo^0=tL3{^=|)*Ia|=61oG#s}GAC%(Osq-R~~F-BX}( zZ)=Q~>1lX=myP5XDf~o9q=atI@#v`6fHoAeZZeHOy2TPgh|BMONF3I+<5rCRD6DrJ zGnE_JA5*E+2EB;8=veNL(DxU0cgT833z{awyU5HJv-)B&x`z!|2pIlBt5eSOb@F`f zRigyaO$Z+zSHge^)R!;a-LVFK0UB=Vb}Vyo@!mhUyRQDPTi8+~=+hCS!@i+i_1Dc) zzqwiZv+yc%+~UT>JBJ9mZpEl!Q-voVQjtNb{OwNjNBv(~*2XF%Om$6JB1R4cW@qDN z4mdW$M?EAPhKf^A1+<0ms@T*pZ-b}s2TW3HiVO$;qRo7c@Tp?_GXk~%nxxaqgl@;o zf|p(+w*QG(DU>U}x=Yol8DWck9T zyNf~=##mfqED}3s6z|gbN;W$r<5bPnL64YrS0Nd1$T^xnyS-i86i{!otnJ7tTQZmw z2J8cJT#@d3^JSod~lVGJdYxU zI^D9lOlx%{{OXDWQgp>WQSxqm{a-TDdte`VC;i|yI>yy`i|-Mq`M+%TWy$p7IN>~TeU3<_Yj9rT3BNEoQw9r(FF;lApWeu^7lKcS zNJM1p>u`YY{NC*!x*YoD75Fb_b9PwotdBrjhWg|=8nsVw%Wl*8K&NG#Coce>f{w@&OrOu(Rqnr&(y)>9x-WQkN0;IelKBmfnX^ugYJ1F_wRMWc^8E&H}-Ua(#>AGi~;qjPZ~vW&MlC&eE_| z_Q@mWP|8`gf~uky<%UcIZ)$d`tJy82py=giGvC{UEh=FQ=00mqKa^)5hRkH+?MVmL zKM1~!z#t96`;J~xteS?8RlE2_P+QZrln!J3L1q%5YI9 zAGN^+5l+vBz&jL=F`?!Bez)s<&AYg^6W~@hC4^X64b8ePyg?OOx65x&4#FFaSC?mA z2^G8$MfMUn8~&rTZ3Pr>p`W=_;nQN~*WVg9{y`gaYr5-89Pt{7wU}6uaaLZ1^E5De9WQGb`!XG?} zYR39TYRXEgs(NO~RAdAScA=xABd>3W0(5HYYU}A5=<4d}Dyk`KX{f61dko_NIBUNQ zZxW=0zsN(W-0Q_fVbkhXo)oygrd_d0E9YEKdKtApNNk8RUp`D|`i{>pW;!A@?FEet zd}!I;dr6h(qkwQvd1!kHGcH1Ko=q;VC3auvQM|U#ev+_FCy|lFMV5DaxvD-~Ife%^#j14 zocb1hJJNW=&QBY7*!LKx(qs_Y+fhR-&MoaUC<<+0hz9evxvFpLw&)NfI@`s9l>KNyVA;eWMN9*%7qc0MBJ1{{%vr$kX za?-iM`rsuC`$p_Pv2)&S1G?QYAznrpM1JA3gw}}N^ad0Z_DeiC)PFEKP7RjW1oUS= z%HXPnw@rCwloN--r``3vQaVaMiX6Y+u5yvH2`<1R&X3T-D4vnn>jA^$xV%EsZayzW zmy!}*;y^v!2h1>x7Rh#v%kzvDc5J?4r3xKMWZgr8ODIBR zr;i3PXZatmUe(2el=0zc5ooPSh`#ANS}txMmjRFzu;6n?@Uj0TH8i@azovMZ%{iB$ z=$*L~)wrG;cC@S`kp^TnJ9{$7yIceDe17-1&t3uE`eTP}!`ZPNT0giTu*g;UIa-8v z-^ZJ+(#YpTkg`_TZDoVN#lPaekzZ((EvcZRl-4%Swn-@pvFX?)8GVK1e~f*6*DupE zEp@#5@5g&%=|*yJSSpy2`qVU}+h`a=X|oerev^&$u})Q{p>2#_0zU(9&}ik^u^)E( zz0*!jYKa1PeBl;>wtZr7!B@?yi?4-XrMi*W{CbV!CYcS{h(~o(4wFzW59!J_|b@bI-!)qJpgWfpvn@eHUBBvVfY; zyCk~UqQD6t@G`&P*w2lQnt5NKd0BGaT{lL}-(mIn$>;g}^eK~0$@X83TU>5^zM1yt zlP^`%E@j#;*yg##trJH(H%D&;LXRk`53k5F|Ffgo%zdk4W4N%tV!G?@3n?mEy+{_; zWyxGGiRMtB)g5eYvGV)-MSuo!A@n!rXZc}F;q&(0n{-}K&fy9dg($xbzv(a_-7sBO zf68GB7TRJUv(i!%!?a9`o--;2`0t1Xi0A6>+H(4dbK`TGx5SHr)hayZeuM92{GBT2 zFVivg|3Z8UVgK9o2870f48bf^P^% zwy^+9$8F=x+klxF)VEOdn-3kus9F}c*27%d&0!}K`J`Yk_|mGwREhJ98sJT-mzMna z*VI}PWcOxX;0DHqQbZ)X_Ws=5+`=SK zV}<>!oVUr+l>9z`cb0>(`M<(I7hR7yj-%o_uDfPZ4LN#m&2xvp$d(`0{jbXeHE!k~ zOUtXOD8PyL+cp+{6yDjyY_CWw<*gmCTQ*()X$Z7sZL!12p+X;V=`9(X;DI?YhG+)uRkBUSd_eUBC5KH|-af4K(_Io^7 zoMzSKeI!rh?WfU_{;*la>s=iFetdDjdY0V62+r7hCQsFJz3pgRdC?9ize3zX9M^WX z+N(VY=}5{$$wDLTgpV^-8=AtpchKpeA_T3Q#x3+T{6pv0nd&FE5^DF2ezNtfDk6*e z7c3r+S(Z3yKVGS~d2yYUCV56QwcV`9CTS$70t-EcIGTWYJU9X?-^Vd5X53 zBvJQD{YDG%AV>MzS>9Z3hQyP-ZMC0@o0nB<)1NRbxH?I2$tQz6D&m*xlswfYOH_E2 z7uwV^7@Pz4_XEVto}i!Szjt-GanZb`GF1g&1J1H`P_HROJ}ow4XdH9#jjITNGsO(x zR-#ccM`n%GWpY|lBICDz9)VPgM66-8t0;p8@#y{ZHLvFt_}9Arjj-sc_Dz0hu+ZE$ zsDxs7WgjOeD(JCNuK5*yB?GfJ&q)cNY5&x@$2Y_nm}Yu#PP#!;F=7x}xc zrgzL_;?f5O+1+*P1=)Q z8kKo1{!rGHMT_+ha!V}DDU@Pa`K98I>%b#GI3^W4LQCB#+8>Mv%(Spj0@6Bw?dc1^uiuC_OfsQD@?gr4HO=bcg+Z9{xNXphED`fw#kJ`q`BJAf90YoXVUz*Oo~)KtZ(q zXaB`kZV7Fo-hbqEy+NCM_m93eckRv9i@S9>$*Boi4Z05M9>DwNRI=4#fZT{IJB6f? z_X}wt7C^^=!^RN<6q+v2M0bu)eGe?jds?ZeUymu*PgP-|dx7kB4c?IHS>>Tv19{Hq zJJ!~-8^Dbx9c*TG)-2V?{@zur2bh=|+VET(7{dRhA2(v6W_%{I59gwBDGO}-58WPS zwSxFP-Mp6&m@byhUzLJ_|#^Io62YR>E@<5d%&ud^Udze z4MTkm=xyyO8{Y@hk_`$iq^2Zyd7ry( zdnZP4?cBiEuB%OKhQLQuokJ)#*Q#H<$D!jA_F`^8eFdgkQpEy zKVAa8pMJFlPtO`;^AwR|MHB+ei@x#hmVmGZzWtD} zqYRqwR-{uNUT!92!!0R`%BY*$6STS0yg(C3`7)OO&i~5Y|06G>o>yy1vh-4tBWqIT zWy>^|HwvV-wY8r$OB8+(9qzS|q};YRvVg%d=UHSl#I59F!ukz_-7?h^AXK3t*I*WB zq!Q=AD{}(&-}f-vz21E}T!b?vjhr%@IWX%3w=Jc)K7RdDD)v@`my!&?hq<42-sqz^ zK}nX;O&}7@MI^0B5JlBRyJe+(uzr*7(C8e2P0SwL)qD9n?JRU?A#! zA_kGs>@v9-ukiQVE^eO@m~xZ5QN}$dl-*M=SuM|3V5;O3KC%F%_W@0>yaGVo?F|d%`bfD&z2m^(;BNFrL2>A4jKy9 zv6Bwg_m@U&+@XH_R3J!oiBdz?=!veXL5_C#&c9wX7_a%7J8IuSFHh? zf30XsMD8tVOmlg-L;-BRtl_;}z#IeIJfP?{aS{97gudF*kt-`8KZ!sCtFuy!rJ{?@ zk&T~M^XGO7L;oQKx~pjzai86)zR;W4=Ri!YL(FQ$qocg5g)+$f?cABFX{}jberGu3 zMJ(ZvliojIUfFBZpJzZNKK(!Dn{e(9n;mQb5sSw=fU=$mZY3JFLHlLiX~&=P7h8Uj z|NWvvwsCgD*BkU#%AG4>PXB!t=n)I+NvdN6G;k-P0nXCqC$u_E-H-v}CzxRbygo;o zPlAN)%_Qu|Mc_J=*E+-#>6F*^yr$rDjEJq~52W@-KDj^DTI#uSPQyQM<#stHK@^+X ziA+G3{!polPz+%7hMG$yd|;<8ZQ`peeH1m0)f#9Rr$H6{Oi{bUEXXPLra** zLP1XJ2E7eHX<7yU_Cn@ZOA6T=`C{IL=&{I=1PUO|g3WFBmztWIpEioYT=5 z^hiCFzJKw(AA2%RDldTylMM6jHS`hJ zwKKVT&;W@>U#=CEm^nKlznl!-Jx1^XQsL;60eA6?rDXV6F*U+x4A`Y4@vNzv_DGwK z)o)$9uluL^jEjzBh%7yo#{FRjiBNMG?_ZCTzChSq} zcy0xDBAm+%c*+9Ak}9T-rYf_G5N{P~|IKR5Ou(?dq+tV4Q3*T%K|Qp_%3HA6?b3_q zD-6wJ<@I}4wyy;@Vu;fKDJKdI;rRpmKJ$=AfA#|ja|QFFX>&#M!if*Hu$8_o_Ij`S zc!YK~VtB~EPb5`*;UM!5VM4%h4~RSWyBCL2k72_<^c2tS);qJXI(ZDw|WB~+6m-twP#%J&`hFVzhiM5mB+^yylwc}b@X1rh}vIj zAc74VzO8RNs!p0tzR$6#K7EW=-u%ef;MBi;if)3wpB6=J-R}EF{Bw`x4yIu>^{U$i z@LBd{hPR%DpJ`}6891^-|0N59LWT9E&E?G&Sxx9_MNB&6Dl2Ae_WcpbdB6Ncls;uK z4d6Cwfb#>o(ns0d`X8%eVPWAGwDH=jH%(1i1{iMbj=IUPKeFji?%8lFU*4?P7!$G3 zrun`UttCkzCtdJJ;N6JeLk!w_*41Q2%1||vILb1=`e0_cU?PYmn{+Uwxz9bBpoY8u z7u6Ye&07_!yRTpmepPvqWb56d=W}toF-u?1>$36GCKuIzYI8sgSjbvQ#N!YWSYI;( zZ!1(|vlhQO!uhNBE$nsi8h1;ZLr^VLa-#kuQ=;)UM1i~1S1~BGH=&`2SHlJvWX1&5 zUb(2!eM-%>bteNiFE*^(9sWkgLiza^I)X0hzOH)QeD6t~qW^>Y=8kU=wbDwU4{p~T zt3DSrlxbb)wru2>Z?>$9on${<%WXtC_e?)MejUiOheOwBvuW*4lu{HF@W`*c-fII& z9ganNh}`k0UA%qD46nvh5+7wb62F8tEZ5Qx%q@_KMT9Qddq0TPbAp@6C+?2c2-aXQ zzNszd+lQh(;tF;wNk}aCX>as)hjg+b+ipjZ;fyF8H-_ZdNXH*Qx~lsx*BYIiW&YoI z+bpTvo3IaWgD?O?$|}bJ9XJw-ZI;z_40mN2Vwh-eqCSG}vX{R{IS*-Jl*Y{h>5EgRXdwoRF83u#aPI$k{@o@ttHl~ z;Vtm_0`~dhp8i^kF|6@FH|#P!=4Odj?yC9(_@B|5Ry)D`H@&+H?6R}FmA`PvSN3YF za#4{rlbKS#xjfqxHXpbk8|VX}h3yNzOflgCo=A0ti_OIU@|+W=fgO-()1pb$`8Jvy zhwDOmw*`^d%OCMr(~wmLNa6T9$O=PVQ&=Sd6?VD9A=EL@shO(>!8!YqAl}GOD#Pxa zd@^Uzir5zZ6>-AeP4N=%Wh@s*>801^bkpdb5f|Z#{DTQTuW}kDlPUh)2vKZP6nRP3 zBDWD{uqwM&@%Q(1E-kr>(AP>LfH1aj+y^?zj%GqK&R()a1x$l4<8U>mWhUizwD;Vp zF985P5b80950{d>;8W`{{}F~phvs{a?xn6uWg;l6#3lUezcOe*b2gYkN{hza^>tN~ zp?%Lme*S?V>Cx-wT-b8R7UaZ#YNjRQEvH$J8lz%K&2*(Oc0)Ve^IMGdkm1@AHJJr( z2ZL;CORCEetI)71&Xm!x1_h*0?Fxtq`ncCz(caAc1ytP+*RHy~N_xi`zxkwdA^aox z3*uOfGs(8fC|mS9s7>qJx;kLo@ptMhpVog^3rTH+l`dxL3=P6+5JeX7P-p=nYl}i$ zzE**(8R{?+8Fatut?3MsKFwl_*)2PRm6}h$_w&1X75ssD`ga>gEl)%c=}@^LSo=So zTcw9Z6WKRR=Nil}&eC+t+Fq)$SB{hKF;aOE(Vk#^HKRIaqq;8oz5bkW(tyFR$b(G@ zW@Om4w*aM8=v5l<51iC>dg(>&msls|cMuJJ9MCDz`^4B0jk{xvhqr`@nSO&^Oluv| z+Cz7P!JUXVDs7y3+WgX(BdM7o5z!b=7TD2k3ajt=h}70V^jWPlK=?RY`jD`jzvs2L zI=X`6%f5Kovlpae-?G9u%Vi#heJOA9 zuAlE{Dr3U8{MRhazZqvOW zq_|?pH9-lqkLK^0f&sK~c;EiA8JrZ=xg_L{B|U`j=<Wu!k#oSp1XK(VXnlHsU>z}@-#8~byemSXh^f39sNEZNh2R! z#g_PjXx+E^&n95Ia_36=eV#YrcE@X+uUpT8oPUJ)mbpf)Ht_3RFNldD3{vLhdpev4 zBOPCvzt9}arq>Se{gys$Tal#Z^T77-;QB+lwb2@KRYFzc7s_tHW(E3=@Wb@N>BO zeJ=}3F^I^E0Et_K~ApDj^%q{;WQDTzDid@8!w#Plxw4oa}zJNk^ zVHfDFW861-l?wB8zduQSx(D)vi(TF?T$_N|G6F-!NyV)`d?PD%SZWfCs-#H(0ORfm z_&KTZRi;APumH4r9nf8NMWgm6bkwNqSvxMdevwr1c)Sn3A#L~-Krm%&mY^KREoJ8zr?{4%tP|bFtBdIzzuQAPf|b{uZx&o7 zX}DVzn#>8GQ?C%J(^WuJJq9?oR9tS9-=^U%qz&L_WKXAzRnut;X(#f!1c9v%uJ?JD zCTpoM4v5^vjbq%Fu4#Go8#!&^-pZ?@kRL!lZQT`x-r?p!5aZ`=rYxG`Rsb;T%C>}#!lOQ$|(($EK+-uhb9Z6_rTbO`^xChjh;_%NmbXAriXyJ2<@3Axn zDJ^svG3(J5jDlw?K4BMrL?Av&r`q1k(6)5STkLR} zNAO0G(C=owjsB};0=ukWK)#2&kl=(|%#Gv092bd)@#g^_-wi84PhK2@3uzANz3h%) zUD<}JsJYR&fUWpy2TC$bO)rIq`h^?qgC=fprXjlWTqd9;x`~$qZL~=sn_x>6upcr^ zglWh&U7h_Rtv0HQtIp!@erLV@FG5c&yOc5F(P!9~aNPN(9>vpea^hF(kUQqzU`}>l zbN)af6Orj_f|>0-QF;PE?HBJU#nk37)oc%`K{+C)WwD&{<5=!5|`s85dVE(;Faa;%Y+4~U=uicQ9b0NnIBv?!{VjseEogeI|oqW zf|NK0Dpt_;%@mFNf()V1Blx!XJrk&{LXmjN#W>Tc9<+qiwzrWot;=6~2>cJYQ|y|kB;c)sr{3;dKG;A-s{G$HMN$RcZSDb@1r7$*)n6Vk+V6hC zzz(t84B4&>?Cp!5gFOWvb$$H{PVcUeX0wvE<)rNU+SNJV3k|A;G7ukMXkhx9LeE|+ zt)brSmM{`|b#r&H{NPfXv@$YAxF9Dxy(%E7Lt6QnC?7J*p0JaYYjC?{Q8!R zo6#M6nIq@0jqVw99VbD?-D!{a2*IU?2FZ#bNq^*UJ<_T9x#`h&E$ef-LB-u^S-2z;AfyI zhoizv`lEy^m~5|%j62_t32wv8b;N9@tJp^f;iHzv8c&fO0A(kPPbv`{j+~i+EmDdb znOtPI2^ym$w@2_+>;1~a`PHsRn)Tkv74aZW{gxqLAGJ#1m2#$Lwe3@y=}hI}uQiAW5SvlWZ=y@vVEwh$rj%eQZo6 z)meWPXODF7Lax9eiEoj%(tsm{mPYz3wQhNLDDhvPJ--oBYXK)620AEKq}b>af*=-P zBYbGQR!fI(>@!m(z9NSXnR^mKn_HRxY12Qa1hw1bjMp^tkw+D?-<2v6%dh4fpU*C_ zjC3|zygKP-?s`5<;w9g5jQ#)k1u8-es{jB@bO0cQvD|J&3{s{hFp!2CNX^7dRZUGv z5ezZa1gWZ;Lhijmib`4#u&J`Lx~?wFT2oz9?YW_;k*X3%e=%zgA9!f7DV$r|cd#4Y zW8S7u)|v|fNnriyUwVI4S1Jw&LcX->@pp}DnQrznw`<#z+xskAoA`|0y+teEf?Zt9 z=Ct6nWXl3$HN$>#AE{fB=OK6(S=W^gf)`Ed=Avfr6z4 zB!3E&EQ4>dYgS6T*QtFY>GAZ-af0T7#iUeH(!t2RdZ?2kU!d2w2Ytg^%zRip3hgu! z1;Qh}&*ok^jAp)_F75qV{8;==QS3f*aImz>@fUk{T`5Pkwo6t0wF+;W8tP!oGy1Lgr?tfQN& zXxAc!pK223i0;n!)utS+$gg9!=u79kgr7GD#l<5*sozHi3OQ;+i~Ef>l=xo6dwzcg zFu%Be+Ks6#H>q)tp|)2Refbr_+`dT0+GKN25FC9vgX!sIFUhyTUFg>|giT+Uda^x|!D)y#7X6F1ZSt3&` zJFj6VD@z=`p;Fdg0kS%1Cptk}WLjeOZ47Dyw+Af9djZNe<&fLZ%;Xj5&IBo9HNdn3 z)`B8EIQP^sztO{h3ni4>ayRv1iw!s&_=iK|Xpj>oXb{pz#2%5hSE7PyYhn?BJ#+V* zyhB>-)IAYQ{oZ|3Vf7nZ!A2UwpjgTwg*k3q3XTe~d=Hrl@1eCb5pr*M4Lq!(I>d?j z*peXX?3vj+ZRN#1Jy(Fta=jg^&s15npeZ+#{N#8tLOf6Np@s(E+BcMRF-SoYu#<%} zn7(*p@b^bjsMIMtXEWx8IX&-JLb61KMh!VFIWb0-nAUV(d6nNeH?MFqYZr}gm(Wk~ zR<@E5xCmFm$9Ta8*#Z_oUY~@?#+1yUWgr;JEO5B~rf(rV!yFzIwHwf$kmchzCARIf zQ8^kw!>X9>pysY))Qkt9^P-|$v2JazOeTt`!BIG->jcmSQn*P9#r2;I8&;pst-TcX z5Y}3eqGhxZopIIEL=pYo&6wakU$b}+{}=H~PNIi#+w64WlrPkY<9><%=}g6H^O|z) zOC|5+LA|`oGgE5%XX7&TA801<@oeENO%zvgSvhc3p`msOcUkW`>hT5+_*%shAbJZH<_n1y>A! zaRs`gKLm^it4<#fP~Nx7dp*6VvDDLNv;lL375~J0gY`9BVG6AjwVVGLndGWlA^K+| zjygS8m8MFb{z{V8=tWs^zo7`Pq=2W~Zp-Jjbd8CWV<>mUk`sbs6fz$!$=LezhAe+E zD~go#DAkd-3+&;EgGE01ToKxz(x=-e^89fXRQIJ(_X|Q)yk|s#-YR-}ME)<_&3O8BAcMEp*Zz3m#baAIU7xGLV=XCaigk$=hETPRdRk z#l2^3)Jf@f5jgspAZV4%hrlrwWH6{PyUAKgYTDOW{`ol#F4 zl5Otv$$lw=<*v+-8xce9zwl3cQbg$S&7jAFh5b7^Y554>Np{LYY^H_-s=6H-r(`EX zIG9a?v{pmZAQfBk*dRf<6??pdV3d$pq}Do-630hRNrlcDyD{rHblLYVKG zDU4N5*mN2AgbDz#b25mXp4Gh)lTVd=0K=q8OL&P40J2;Zil46Q25nP7fq7QSnTS6$k<*3pT9XM1BexWg-ln{8CTVyDR#M0d;?Y(U>oS#u{X~89DCcJ=b&d>{**mLq;&OFSt_RPb!=6mK_snVVXze9+Sy|%tx4hp?RG{UL zA{)}Ex_ZkLV&=P8rrK?07)CYO?4)3rc#yDR*HPM{XrzueS`ikuY1O2>O-8uP0XRJ0_GX^uaJ6Kx)wOtqP;dgs;d;}+b1$+%wW;d~6A z`hDsaLPG?2s*BUr-Yl5AY3Zo+X(SfhIg^jki({n+HaPDjtFZoEU+JE+A| zk_+D5jGYQFqR36ln3Ih%d*uT#{Wp!>5KBt?OEov2(`4`Mu?v%d!B!Hq&#PY?QPRQo!&i zJ6dc@;1F`kHvb8$$tsi2#kR)88Y|(Y60pJDsLx8+E8@C;Zq^$C&`t!rXqYk2{b1{d z5q=ioxpDL|M0G-3%%(&9@5*acUx##Od@DP;-f*uvsCa!Z#KKQl?!I#c8u-^Pawn4V z4BBYPFevR#jus{9mbTp{IHL!%&{GX zI;J%&rY@~SrNZT$(Ow4M?H}&vS>|iWxJ>c6t1t$&!?qBd32>5TUZj{_{9nFy)gS;` z^4XajWhNzdF}nF?>#&uX7nYTZ?-waWvjKO|yhIwGdKjRY(B2yPR)1`%Vdz zdy!x=D!q0mjR%VyOquV(KP&hxZ1k@w+ZN(x zJ`_@Gg?K*n?Ct!n{8H_>4P9=8-T5buihwt9TH^3PJGY{bqBuHMzH_!d9xBuK&?Vkv zOCGto*^k8vHxd;(rkOfEWCzoO55*;{4nroD4FxQhvMY|x#?OqWPK$`jS})!*djGN7 zd$v~)j24}_toWm~lvE@tVWfQRg7#+S=l z@M%b`t!7j+uzmUXSTU-;T)VJgM^&O_QjGEyi&}hegITRcZ{%sJVMoT})$>JEo5S)v zgQ=)*M~An)CIoO}H1Wd7e_4y`C?a7Me;_mM%?u_b@2*}oq}`z8P6$Sh!DlRoTP9V9!xjC@}>h`o_yhI(sGYWyzOhZCNQw{Gk!pdo0AHGCeY(d~1iWjp+@ zwU_UkeySC}x7^F|kV{RiRn{j#$(#)jQX7Z|Tz68bR81}ggs|Xx>|gG>8F+vKlfe1e z3h3;!M%h*NnD9?uSf$NrTC~;aCRP$NI=;u>aCDWbLX^$2WY?9L?L3wEeG4yX%_Owq z%FI|<<5jvPIG#l8KU4cvN6F)Rx4D8i+{T-^1po_pe4Sh5Fw55*o@V>8)=Iljo6g7J zQZ8>!1dioZ@-?m}ABx#mzk$Zs%!aAr#*;bqR76TXBd8H)j&HwItWLU4iwama8NZ1n zE2*embNEI0%0au#5h~47_^?)3vj_nHILpx=f2z7lkK~KbUASf&`cP0?VW-in16Ea< znbG`I@Ahca@x2xvOERCJbJxCp5XBvNTR2G`3n5*B;HCM>Nvf3Sd$oHDk%x}BV(0ua z;`unXNFz`!hxqwLd81QICHHnc_6`yI)P~Ap(UN9iiX8SsATm_Dju#-0c_bi0UWA27 zj9O+vb;Ty|RczsWDqxSrsIzQmERrjAN=z^md^7iXHcrhfsa;AHabiongw=N? zj7gj(DJ4*okyCzTQM>ZUb&QHbw1KVQ_x?iZgu&1jPQ#9%?R<@lPP2n(iRCNLqs>V< zg5p;(cEc}UUJjLO{C0G(ux7$zVEHS6{p0Qn-v8qv#Qv9ukjC&3hJ!0LVi1%2cug%W z4KtXjrVdC))yl#`M^9hF%nS_DP*u_g8!IYnD}lfk_Xs@<1p$Gg!%+x=$VpeFgOi+T zKPZPpGh0#n^L~eZ(s}88{6W-&{jt@>#olLiJ;=C~UU1}%&&Rp0nS6=!ThEP385F+4 zmH8Wc!SzqrwVP2Z5Q4tz`>RsG)hp`E46zjxeD$mcjkl(8J!N+?@cjirjv%AchNUcD zR?hJabCs3C+)=YmkCB#m)wn%|U+?(G+l%O_e|p4SNfaR+k44a7(7M+TdA{4ah}HCo z5lDOgSyA(nm|KbhE$jKjB5nwe7}(VpP(y7h1a`lpQ|C1=n{kQP+3gjwGgO1&(?2_R zTi*_;egw`Ise)5AJ6HEB$QQT%t?=J;;bWMwzYJMTGR`Itr<9_CWK1F~E8aO}_|UMg z5(-k!x3QEIkw@hD;gVuSpOiAobw%Rp?d9Tv(d0aAXe1-A+VB!k2nAk?=YKNU(Qn;?&a6w z@UX0s$BaCXo=hO;>Be*`E${J8!%?2k;%Hdy)w4$Ok>Y1+DT2;xVv6%gtyq;LZep7I zxsa0g<{@XPoUgPUzQ7#$#ZOPD9FmlqGk~5~}0%v!tXGcXL$=dq_$TXxybmN4VAC{>G-)c8|b`6{@{$8=^^}h)!A} zeya=!D&t$@>`pG5p2~^0m%)2v`hg~e*SB?P_-vspZ_*@P2g*QlL^7Q z*ICqdV7Fz2(xYxQOF1|8=)0z;3Vbrszcmgz!?$z^P0z-B>Izin-nim}KjRZy5)&&JXH{X{KPN^+q2!r>x@J6THR_|L%@k z{ibw|eQqfHY4g!>Bo30S^dVZJuNtsJl2{n5I~^TPgX{D>ZAe#?Rv3(fM8A6)YuYDA zRnV>Q(p}jHkXD~s97<+TZ6y72M345pDw4a@SfE@`l{OevMbjTTkpX&GI!V4yYLqT}_LrZ>*xG?dtf%(3yEqQS9u%v}CKW1{9Qfi!^g>A_ zE(4!`q-lMu{_Y{2)T5BSJI!y3op9uPc0M)Z|H~*le-U>Bf%K$(ekfZ9@oDQ>5v}D+ zGZ8%g*DNV9f|J$wTg!IH*@43h`ob6+nxYaFKf-^DhilJ%0a4)ple>OBq%dr~lukt| z5En1;v8r$=a2h0VWG|KAH{_AAd|(^uu-f~y;*^RLMt6QqkpGyJ_n};moba!19AC3I zA`kzehh3$NKoVgZiI8Tb3t=f~csv+>o46@hNL0(o*gwSX)RF5|!7212tYv_nCdJAr z9sNhFW~PaMH$;}_AF5>BruEY4-&KPT5S-MnJlqoQWxg7-U2zUVPb z#M2p81+a!Z;!d~R3a}Da8Y#_ScWBW)sFwloEwbVf9ukY)Lk*^XD#P_$jt)lzjcEE*t#o6v1rFKRCj~BvMRP*nlSN zr)k;|Bkxk~B0ckTo4?>jEB_ewK=0a0zx`5QPfvrELWM}tf6erIb%4f;TT1rRIX+P` z-p;>RnQc9CplwzP7wpl&+Q`&)dAH6B+YD%ncpSJ~u{A|_uKmUE{c559w->_Hg60$` zGpGEnIfV-T)n8_)!tX`voo{!lM<&);RNaP>o#>^x8adzl5)t;~1TaDjS zy>eaU4=!thsyBTpD!_cG594xbp;^fwVb0<9E*O~q?OnA|k#L4BixHsM%Lu3i5a)P?E!H`I~U42UZaJqpg+*HyFiR@T0x^g650=y`#V zJ1|n^A2@2to>^b8cbPa7zF(j4dfnS=H6U|dtPJ!$AqAwO{c9tkZ+VL}E2v8j@^$C>-pcvg2>+FaRyyHH*pms3LBw!jrJ9Pn|yVYv*2NT($LQ(uo=*+a#f_; zY{9KF&aB@~Bwt7`e`)@pdIhok4FoeJc4@z>9&3p&s^hkD%(t9iZB!2QS!6DKH-sYj zl^Ev^;wcqwqPiUfo*FslS1XWAJh#;7QWvP8dgj)+uQ7R|aCy)@G5R5PK;!c|jC2_-0>S#6*+`$_)~4FhU9PWaF~bB6yN%o z9{VtN79&mD7uqe`KOt?`V{h}7RTU?w*#6zz-{J^`Yby_&V|l6i1Q3dN##K2oKiFj+ zk&ihUE*BVtr`%qyg?yuYTr`GaB3Et>z{%jVlnbQa$wh5yolGi+4Xk4=~3b(j>_J6-i!sRnxMj@hMc5>8xM!zM4Cr>>S=IBep5o0q%=}6 z8w&d6H^SDmBSiwry9(GvlQevmt^T0)z$yAK?n8kYF>5vGQ=p%VG~qo*W|D#wX>DVp z@;u^Qioa&$yhvt!ni2DUL#vBjU_E}~=UxGKOCvxve8Nm$WkF615_wb_uwqMd_1` znO^tQFGWXdE;MP|EhG@hRa$#_fpMdZuV8J7pKr%4%GO^BrK;80FI$rdp&3QC&x8RQ zM7)<1X(XQN=BE-_a0$x|yTFMc$#~t$Y zCTP26nkFuoYbErmzKugusjbsJtnF`?_-(<^0$>+9p(Cbt5T_#S9vZJH78gq!6STQ7 z9>*})ckuREi<3pvnyT#pEMii?MTyci{2k+m@K}$p=RdAj<^p*iL9l#6N$e@2k7x;q ze`bF1lE9h`9ctE9xGUiEPMA9!S21#Hpq1M*kUPNThoMP4M{Eec`nAb3?#gRGV<=gc zt(YE*pLo7l_fq=F#8Jt*^u8xAT)dag^F+S(fmlxoy+Zz0sF^zprrd8p%f7^*^#H}r zkS&*1_dB71S56_MF7J{Iv^v_Pk0W(U0V zABXH6)Erez!8Z^@W*Y_`ySwdIJI9rBSM$+NS%1FS+Vzuq2R0E{MU^%l^G&!cDSXoY zwwX<{|8rHVLMqn4L_m!VdzLsY_T^uK`Gct)I|BP`Pa!%SMy4Ky0}Hl=a^3pbuaK^wTk1ly_8UlL`X@zdBe&BmF6&f zqRd)uiNjeT5ngdR+e+SJhnjo}!V2#+q8|EkaVL?It4sCAGOQU&jRGmd^79kUQLaqJMb5l8RyCE;?KP;H4m^r&B5OdO$rgwh(5jREs*-~fu(qX-yI4&W zL#Uk%;ONMCwY$8$y2#Vho&2%bP>Bbv7A6d{5-g*qz{x@F48+Z*%{X@g5>^<^_+h}~ z?=Lqy8Z5xv8*A(NeU(ZKrUj~NUeB<1S4WPgrm@o2w-xPh_`=XQtLLAQLA3Z?JzaRpvv2vlMXWpI>xy z7ZmutNQefj)HKtZxnJMhuvSQ(nna~~h_y8&HywIv?Uh(c#H>>W+(jsvo2f@ckn709 zs2f^p#?N0A&pUeu{|5GY(;y8Jjx`n>D*RnbF7HP(Ld}e8gTnZ-5>IDeHpah+h&;IJ zOZZ9l-`VP+&T}m%Y<%Qx2g1Hs}@!uwtttAsub9o+f zwm=h}wMqB|T59sU9{vPW=NVP42gD{hZKBt{s+*F!BI4Z)I_z>u409K=9uT=G9aCs4 z2#3f}+EUz`P5S83Q$AlLm&^ep6*Ek1ga~X>R-4ELCDTPnsOc_Yp3cl|;=@boD7;!xb$R5NT*W)(lq{wOoEy#kNG zCXftj&y22NM-mt)E?yaB!R;vL_$VH4^9bqn@Qa&9e0a>@?2|<=ycrIrx4RFlse2U$ zTl^8+_cwoJi;38)Al|L(z!yP>tSIBy-m!)-XLv#})fy{*Lqor}ejF23fVcnME#uan z;CV{SnqIEilUgA|2WgY$1yngE9J(lqXve0upQqxb>sD96IqNoCLN$51BB`A+3wYfP zw2x|g4Z=N{ha0%rNaL`V#R}LAOb=x1*Nkg@U%-@T;*6MXb(siI>K@Y)U4pW9 zGYh6Kn4Wefr6S&kZ~a6vBlJD5^5TL-4spq8UeeVrvngnUq9m8;w>hYqiHf5O- zk(0kXF`$7rdSh`p7YKwnOtdIO%aG9w&*O+O*)IhRlj zxWbN1s~-vlEF9vEOCBGLjWM;SuN5i~Y6Naqgv-sqT#U;1pla2(cMz?-m%G#7q%K09 zJOn9J98rKwv>1fNsWRt=7EeA8wsIFLEREOTiq9XXRI#OG1l1nUtBm?;0~UHDYFmU+ zA6$#?pWyP8W8*qj;%ZWgT9fWl?MhUG@Pb=)(URW zbZbjW>ZR=-g`bEQD?5_G`uhUx=UQQL2}Xw!zg(L4)Bg$dcxT0JBs@cDUDv z2S$gQkS4X0u9tTw+HGE~p$8+>)vIRulUt6NK9Z(?6(ccuhrh;T_$MB@Et#L`D=z)^ zG>`crtH5EntWEggGmA1Q>fp0{YIc{C+3nRIo%{LkDCS7R)2)5ja^;u$cw5%#pv#eQ zcGnk&%J_07ZP>jh1`jM8PIp%Iq>J~3PYR*ZCt~mrSC;PN)^_1lE$397I0cyS$A`MV zS_FF51ySGy(T+V&r4TDxi_P(_OY=WvcNG@o>=ic!1mpiIgk-%GBcW299Bp2gB!o-6 z2A#L#OAeT$v5rGB@6qyfWE20eHE)vKUmv_ka(OlTF1iHf(gHe9LBGho+0c`#9Wb(!w&{#1hmv9Dtk=zsA|81-LqWI&FTlWQAkW`Vtt;oVp2F> zbEKK18oDwqGVEcAu7S3igB(%)<1IdqK2keI@wM5p(Z%RB7w6d;;sd9-Sbd zQK8ZjS|%FdanoVz;!ml`vw}e0^;9)LqwxSx{)j_((fV*0ou{XFi=)o3o#R(t}o|h_(PM&AKtM+O{O@u z4XmM-Zz`KD!#|riDM911ncDBLG{ZKsXq%dd`y6u2>?FfzTf(?FMF(UksJ4>FF4+-% zTDXz};q+l<;yC0N@JA`uP&-CDTp30?_GMaZ5;indLgYhj>^^#GxHT4=D}xQGwGyEd zm#u5&0%QPN2Ff-WOGuZnlS;eU;q_u{ozKW$@Qtzhmi4D!_b>4s@U+>XKLC8WKl7u# zn3%3knvzBw2DMZb#E*=ad6*z;6Y=L1MJZxEt_OZ7cns!chBu#-N z1B78IZ@9uzh$(U?C~8>c*pt@eUq01Sji6rwur+fB2Md%l$E*bCb(q$Nv6#0(EA-d^ zsjYdK(DqX2<^WxmTO0^F$|yt(S8TEqUB6rmR;N$dq!O))?D$x<5t130{Wz^wp$oMl z>e6uXfZ*46Hftgqt|ln`^jF_gFCA@HtdF!a#dmms)eQvWcer75jd%dS1~8+rv4AFB zUQYCa9vW>V$L`?AMn`Rnal*L0KMpMq4^y=1p&oP3+T z)>|BAJ}Jd5pg~7NTT)k$+5aSA;H?sXTk^&9Y)N3~ zW%mgae$6@6fLHTLOOk!$IR6E2$Zvo5slALB)CDp5e~W&WCqBIFxc;aUgUk>jn?<+T22Gchlo(x+l-69Y?U37g(1chD*V0ktemsGU8l~43A3|1eJ5dNa zBy_ek1BrD4@UnlrW)!xRw!-aFH8cI)Ag8h1gbi)gq=+x#k%jU32boA%wPSAL%~zc2 z8ujlfWYDZ;ltvcO&AM1+w<>oZh`D|0zdZlEz4Dvb`VfRG|f&*#Rt5{ z{f32EgzruDCWiA^EU0plVvXe};+yHkn{k>Waw2ka=*3&LX;M2;ghs)hTs19uxe`M8qjlu<2Lc+uUu#Rc{_VW@ zM;?ZIry+T!-*rMr8ESUT4x&AfN1QA-FqexFW=^$Pv@d>^{X2_06ru1~MGcqnhz2_gV<4fnCoYRx*Nif)h zVnMe;cb}j}Ixb+7fgBUofdf*4{}_vj=!5Syl@SpUIXKPql9*W$m;BF=X-8Bi+CUbU zo0_SQqisrRW#X!7RqBzoHZ@t5wJ_5KgJWx0Y%INiK&44p>5?@rMNW{ii&-B>HDdyl zRuPMW)M-@svYBi8akv=^K_S~g_jtr@*S?XqMi9z#*a$tcGqTeg>A?=3ikv-ta{P+g zlUk0nLZ^m}b!|BG(G={n+PaCI#oZostmX%o1QvJy&gR*tpHJgSe3P91m?k7|lI5P5 zG)&$pw9lQX1+=_&EJodiCPET>D&;fxGhPnZw#+DgY@A`_*wzqe(@hn4iX0cv##Cn) zJ;MrRnEuc1=J7v9bd(0CxytJ+8-}CqSDJj2lM|O4H9r za2rdZW-v+$4MriL&2ZfYLLN9#b!{o7k}9PE*gWZt!5yBZF|)5&>zqVwyRPG__TvlF zJvEZTb?1gG12?y4wM60)gR_ywLif44r<$Ol7N4$1r4DY!+oX|5wh!9ri=(Whp=P>4 z8nBKtH>6T^5NGy~SHxo8!Hg|1Vwf7&8yQE@!_n-&5Vw-&0-R6aBr% zyT`w0x+liGDDJ8L-DCgz$Iwn6h70sLuD}6IdgbGU455>nf-|u=V`e#7%n%b7kH>@$ z$ySii${M4Li8OjTyzs3+^iUJj^|S$B#-uJ9s=4IDzf6Xs3IT&?!HMuCV(aEu z&N|T!5zKe3byXJ)=6p;T-%ghwv~rr^oku9qG8wjo5tec|;WY~*nbr$yl4;0D!|CD^ zkty3Or)|%Fh{Zw`rLdv)M~p46IQ)zak~4NINnl))RVlK&@p3$>^^hRuB-$peWMg8v zlFO>s&+j)nDrqP7yi|f@beWiZC=9!zvIWws`KA80!B%ft?c}H*wa3&;Oy}W|&%`vm1ffUuIF#1&h(0fhB9j>GS(7y~-iL<7l0)}t1kSnP;o&w?o z1nN3M!)P=djYbO%PgY7Z)icSgSvwCQ6J^%z-c*puK&_Y57Vt^(UE5aG1_#t!;7hg6 zx~@%N7dQ-FgHn@<6&_yZpfiWe5#y(3dmSi<|Kd)rkHi%P{lr^=gIt=2l+k-Smm;2M z#&6DbQr9TWLQ+Thunn-x;F>8>_b&LVLm8^M;`3;^~1BHfCGq2WS8`8dqb0 z59sTy^77E|{JOQZ70ZIoVSy&(#^vVf*00akR`}`&R@yA(!6eLo(*H)3 z;O8K0A(XB*Z=(}AOqwZ}436;;^p#OId;)ZjK7|H?$TIUy$4n)OIx*!33Ou&dv`lqu zPKttbE<)|Gd~B0(Rck6}=fLx4vn@ZDISFo_)H8ojx!hTcm!IW{uV>k>IC{ zlJxX?wfOdzk@jwLr)0#)#{!V+;P=t9(f(-efNRdK&(YB@nuQRor~l;3KY*n}OLp;T z$#>j0Vzj8en^@i6lO->X-={oFoQ{&7tI2R$mc%WcN^l(kiVml+076CV(TjZymSw}T zki%}L`On%Q$E*u-ax}(}|L4Ic5lYP{lzMZsbQ5ZoPKMFM73?ZSri~Iq&npYN_010; zqkIi%W@`!g1!|VIR3guw^ZkQr{@t+x_wO#_qeg*+~4HxL1dq z;LPS`=8rjxi$90%Sv841fenamZ_u4O=p-G}i5*sWXlNTs^xtjve~kSLhor;N{?wfR zAdM%OxJmsVm?7TEDC1|c0EaedJ|jp3i{FX3}@Y)FsmOLlqS(xVx6db)R?Q6fkNs3V-~{ zrhKN9L4v)FEC2fSsqoK}iq!FA35y#!e{aHm&VixxxCTc~mE0Kd4Jd6l@ zHPsE+d4#+=Nu}knDPMd5{D03*psitqRDcK&5Qr0q!^L+n8D?lW94(}V@d6X+)00#5 z^sv(bfwW0Dq_MqF37jh(oL#5lu|H~@GvKo7i*`_N_#A2 zJR#$W=EMMr*WO$EsOqJZxMWB&5@*N|2XSKCWl{G=x}}<8K)eV&S@Y?MpmgKB&lcGC z;b=?cUb~6j7tXO?eRQgA*w6&-RrA`I*XrYu#IZbZ%d#2=;SJj-ZIQ-wtbxJvH&EwmybF7t(t*oA@I48*HRZi5MzZ`!sH`Nz<9QWYRV5cJ)gSM` zVbJt7b0GrI$*9{%cJrL9dhN3D`Ycv`2`oOA&`bSM*vM))UL-ao>N00A=dQSs|G_Xo z9-KImr~3r(e(Bc!aJ~0faEpa-ah~<{;zLYDV7{v3`^BfNg@EHLpWMg75sSE?*JOm` zxLep;Kba_)3H$K+dhp|$Q`--nw53^?nbEj8IYT*dt8Xx1v#Gh&kh+X zIw;WoTZV_jx(rfRN!uKbG6%7T`&QPa|Gi>SUM@ODPr01}`s^?<6t2O|gE% zM1w7eUwWUl2dVL{;l7f#QeN?|XUU%_rWYp!!c6Ms5Tx_($z&;C*Ij5c4eh@ z2|Q>dT+bi_gQ41_8e$=WCW}q|#L!rXih=fAiSe9(6S|bX!LNhjx}Gr11SM?!ZQXWy z)~V>bgg|YWGza`gegaey))LP(M`g`Nh6(6eONwIcwP6-h>#wKkdZQW zn#k*)LT1BCKZj1zT7389l#Bu%op{&~BNw7J0~QvZKzOf;OR6GSh>MwNq!24 zqG^skLP0;T5hN%P+3>Cm0`B<*K(PdUnl%P2mBAjeVyG3&Q~{ydqD(W44K!*tj8PjEg{Z5-{K#1IZK2npFa9G%gsk+|kvRY<=5 zI)U#Z5_*&LK5#i&Bh8zJtyJ7P9^ry+o@9A;dL>DzsXi*Au**go>UqiEQ+q!uIA}Ns zVn{8_6PZhMeu4#Xfh{YL=5Lxu*pu$ETn7F<@dI1+kIvR#i7pP12zAZx^n5rS2PG03 zk#>fC7{}2R2p{cIodK=XsrQnUy77ENwHz#idM~QXKK)VT{r=Nu&1(jISRv2J{{^-@ zvEa5+{GfipO$z8GBLC01Yy~$4^9gLMFyGkDZW>`wb~%Ti6lS%=4q;+N&VPurCB#cx z!{8@RXhC4ICrowDwGHfke$mdhFQ>AW8(`J6Ix1v1+PH0{PP9$oZgs;>syNFwp6|4b ziVJv{ttkXA-+^+4iwo~com&@jId<@B|Y#hthV4lB!VDl&5xNmW=0ttO{DLD+~&0RNNo2GyM-NrQm?fk*z z=hn$!R9ZS;jXHnVs)tC}b^RXnkVdB@!e81p6V&BF7YF7$onajgtu{7GYNUfr4(!oT@uh)*T1b-tZ5y&wsjL|>x2>7j zxKti5f+@%flBl_*ZJd1PKwP3w=%vzE0yU6gQ+6lt)sLic^9mDYG&g7lzyaQM85-Pj z$L!!to!a?{K$2wAA!0NmC2a(;;=Zc(f@|@^r#FX2PFxx_+pk#CG|wYsCo@ltUb1;3hO4+r5U_7eg!6Ph1~!i;{R8R{4>V|QT+b!pYhbSO=|f9uWT z3sjVx-*_rMq4T>88lMkkXpD<)@GZT4tghT(UMlB!cYA64Eacxs@XrN77d@)FMFOjj zRH7edI)yb}w2__rTVvt1{j=nL`KDs}V)XpizVTM(^Iq-G|4e_b=L)}0Q~u&U9^;<< zf4VyNc&7iik8eZGu}$_d$7UF@d?)5ilw(oIv_`Qxv<;EIbd*D4Hp=0f5Ya?48^)%R zm>i-5IW|-xbUvxnw*&X5-+ezG_v5}l|6G56uE+a&UDxaRe!SoBGv-*X)y@08YU)QD zZI%9Sb%avHJ#XuDYZ5WhYb~?E@iH2SNDhy-j1KAE|4s=+uwA-Tg~OxWI4l@{ zV9Y4H9qAOD(imfowYt%TxWwofym;-%%s|FFwPoX`kw#m--QDZKO|8x~jSo`;tCKpM zwVToi$koC3eGWNMz#(zw%C*MR>}*BXOZAFalCDy;S@e;T8vdHe~tR;K0X=Ut|?OUA&GKjZ>N6+aY zIj`a#V{-7CMqc!SPSwvsLH@Nwzu8mlJDoS_WiBJyu=yhGiXASiSIy#d@ULqRFG^e5 zQoE98^^qYr9d0XY8c>%i=ItMf?LMP~7FTt}%X!Sap&LvWt`JYMCTyuk+>3eExNG6* zoB0Nhih^9V&Dk@PyOySh{3mTm1(l~v5Rm<^^uQm5RE;?P3DPI`pz~6Y^L4r5QKAw# z4$|r>3naZ9ORH&4Mel^z%D0bxJ>y*RneRaq9^g;kD4 zE$Su#OMe|z-`+mf%@7@|%>eq0o*x%Bzpl=CsnJn>X^>ZRAV#r#b2RzP0#Rdg!>waT zF(wT|F0VKX4B1)DuqPItO8CPrL_M**x$QmEeeb;1HWWvi8zq0*r+r^{e6=L`6}mpm zow@UP+@KxO;rx}TzESxO5Iew4F|@1)32R(kp-8Jx9YL=1xY5pqd=Piay8hr!kjeZ( zoxS`0dNp*q`_$@b)isPd8lO$RHqb;H*Uli;2ltKy`k_?Ji^;Zlq;faH-MTdc3x}~v za-|G6aoGA6V#`O|D!G!=Jt)FqRS-`3pZEzRPDLetkjRDS85c^ietDtiklmN(oOMu)T39wC0Py1s=z3O^;bnOY2;7YIpmx5JG9Ze*g z48hYx;Sq9KtXm{iM@MB^Jf(>sV3S70Vw&nGM5Ad9n?}tsW-9@kuvOY|?{FDx3@9By zX1xCIT`n-hD<_y_`_fr@8eQHp150*C5wKNIt-C^Dmie1Rk;B<@`&d_&eSQS|+}dv` z?6nC;263*#j(p9%P=S4{utB#`%PCI#app66(hcmC+X5*eShe7b)zHj&`!auA)$GYk z&6$fdkM&<|7q7g4r0cOPe>)1P+}|w?$xb@7vmed}{w7;I`7$wn)oglpaK58OE#Nz= zIkXeH^8LYKI3ypc-+2riGB-;NfO|IJF3{EO3z%n^Mc4akYWI6UCWDWjs;|f!C%6lf zvu@P|3qvGbZFx3nHL}=VU_wA4vr+ZIsNDh<>P>CkZc=WBDbGOzC8UGa3Y-x&^k6U+ zhSfEJ)rJHNXZ>>C#a>9*)RNoX()(>obqlWlLT1{8jZFqS&v5JBais}1a5})CLHDZ< zRfCAz!yUeR-Zo;v(^YIHGs~dMv(7NR?7oBVh6&)IFXfm8wxQB)hv@qjk50z4Txk88 z=w6ijk=AtjYk1E19<3dxQYxNraR{5PJhe>BeN>wPPHOgL`nS174Hd`R+n1s1K1sH& zFrzMlPZb~8@#x5!cfZ8%#&!{wx~gF-ifX2yNPL%Hs{w|$n(Be}*yMz8kW+xTg0>b1 zZns89JK}A~D)qv=-aaucVhWQ*+5y%CF|N7EdXuVTuWx;@KpR-Yq>lTW<7&%j`=E$% zN-wO6WqLdAGrq9!jT@kvQKcZJ1x&t=iyq=r#%?Sw+8uxGewnFyqEZ&>@vNoJIWIbX zVe-9IX>FzLgy=#$+dKcPO^(g6w|Ylq6fc)7*qji98`Omu$ol>^a;|PMA&5>}7?efL zQ<_e6n0U-o`g!Mln)M##ef&cCSZAlQ7#QtnU=ew^;`UEJmw~N3|OWRjk#e5}7!}EIUXI_6O6IgOCF634(0e{aDM`xS$@; zqKl@`vdKsWxy)vo&R`T71jqK_L|uGhcMqROEy<#$b9vf%9@(BG4UK9pR(smPgA}m; z+j_vZAyhYd(%*mU&-7`}DGclTe&)KNyu<`??y zPm+IlJpbkdtdY-VRXgq2wML3Wy69&bB!*LOC-pB{bT+Ca?oaMFY;HF=pzyxj+YtF_ zur+6xhM}I=0RZCq&#K@C zBRM=&h>DJ2FGVsCy`x*)Zp`PN&!O#dLxu0rqHV@ILLF1ovPq|8TS z?n&RVqHdE9uMwTABdOmpn>CcClF_TBOP%{$DxZy^ThDCTa4SGF{q3E9kA3#$TJ1Vb z(Xm{*-72RjcUcpfr2JHCa5LPl3i5YWiwX>^4^5*6AL*aIalfmpKyG~t+L7=FUrtle z!S!r3h%iGWY~f{~8@mP&+4eB0q~6;jo}+A3x3!?2_=ZMhFxc8a37JS-TIaP;c#^o= zIdyli*9g4+hsMIL4{pt4NB5u#Oh3OoI53QS%QGN zDZ?OhU#>D`vpWk~S1!(s-A$UFKH&j8TjN4CpPbfxI4 zTfj&ClxC4A_q|3tbm>Icx;qxo{Ys10P{k&g|Nq2<62IIQXishRD;62t4+h~&t}H#L zw4}78mn_Vh3U_nwmF`y!3F)O#2z~+PG)6U#ik|Qb;W1hm8yz$RrZyQFrX6lJ<_xDp zN9B8EY)=gZXgxas^xmRPwfFMrGB`aBsZ5u$X%TP4C|7?WMMU>^rI=jy1@hbo84A=- z#d@99&f=5)0&cr3wW3WaWy2e~kNU|zBW7E_r#rW=W5PQyOy@@*DmuTWepb5&X;{1i z;y$z@czL!lSdSJ-@;dDC7_ln;FiLCrw=VmM1yVkcy-=$;jx0?w+&U$?s`gZmwD;U$ ztK`}HU3a3>;OxP99fod|Z(7t3vbXbJpPHy&tBWzR*sHERAha18-t> z6f0*eB96sQ!Ux_(`ZP&|GerjOSpD6$NvY?>3^-vay98n1`jJy$ zrYgDc4LZ9Nq7Q|tzz0N|`UeK6;hS~3Y4O!SVCf3rrCT_M&wsACaB!W% z+iR?^ztUgRu@GPO5h}r0nd9@xLZvp6ddQrM$uBCP`W_TmdX8iG=)8>=B1gH87+H@S z9^G3F*)Tr+Dy+v~2o}md65bLu5*Ut4-1s#8L9x${^iuE6^G0Gqe}A}aa#9B{rw8fO zW8r+DuCCY=&51tV5pQCuJvBY+c$;(Z-!tGDGmb){J9N^dP|E`7M=C^C_CrZY>*WWi zQjFm>EOUH&*hOAGA`e-;&u2jA=6P@A$)lT(f@JW%=jLC(tO%Jxq4kbtP8e=VuRp8d^A zHsh}cRr5F8)jv&h!g?Wl!6ot8}L}3{qd|cz+_zS zc*EY~fissMBAp@aDYx`*W?QSLU2A+4@h#sI_V9y(B0939JTz{cpEb@k<8!%mBA;eX hSy-O5FCPAaJS$Af?IHRcLD^r5InfMy9f6>JkR?-^5vd& z*E#pw>D9BRc6W8v?q7FRSNH5u`utfHfB^oJ&RPB?NY^O>Ktv!ndnaQ{=eHsV@rwVj zJpB9J1X6ly`QOr8OAz?Z3C2JLP4xADO5KqE3L*s8Ygsy2Fey2GCb6+J*7!#}i3|xF z3kx?37aQA~0Cez2LQzafTtY=aQl3QB#nsf(9t8cb1X58k4KNc3z%@~$l}uHclnujk zPGFTxHI9=FD-6OGmCkg=QZ413%doC!ZXgLld#|cY3!SPGtzwC168lD>$;nW>7Groju81t5QLnjB2W7}K_y%i4o@|bwl_gVRuq=f1%+>yKs8#HMx-gjxx67M z$t0rGB~Esa!c<;Vn)X|qENr2wqNp@y(yR(Cp|gsLmB>C=rRYzRAmo7YSoOE(>=H(M z{{sO~1^~41T-0gP#Q zL#gU_y`7^2&3P^8dUstM$YyqB?C5rPGn_|xsnebNc=j@!!=21oEx>#k&KQB_wEt3B zzjsBf%ihZRc#8uaC2_%gY4y7zR$Q~-GVJ;yUMr?vFh#brD`U$v1ExlK!7Tq=%5aLE z9TeXr=iTh;*ooqRDM7qqFK5xWvj5KaFFfG>ir{huI~J2jXXk&#l?b&QD1cqb@1d|j zazZGT%Fq9Tb$e8()m(ZrA{>oMdM8fLUiDx3E*tWhR)EGrvkWoZk+qfGk`e*WO$fx|P6 z6_I?C97V29u zTe-0{!f{)}DEA0A6 z(CbJc5WAy>ygGR3cOCH@ghVMPOGg(-hZjgkZ}G%YfO1L80RZo9HqnIV^F(h+$5F^6706`m zXy=(*6@B(BD}nfjMfi>7EzzWH(iUyf=56xkk;~?p>EsnzRnesXIBKc-UuC9$CU`6W zjDIH>{7wL#;4)wW^bfjVTYvx@kosf6lO8XJRg&gUQ}*9Hq+6H6p6Uj{ach1_6+Q02rxS2Bk~> zF-(amHFb-$y|6r*@FL4HI*yUcf1Evs`n$BmVWn~Bom;4{G-Z<62y>X_2Im?cI z{TJtqD`|M1McNzZQHwBmrQiU&M?D;{?zEz^mMR9wj~w9DLwzpM%rLDCoQ_(4ASo+= zdB7$9Wi8-)Fpru#IM_%u!&?Wt_Msm(OMvd2tJ%U&u=gb30f#QQBGh>5*hcyAI7DxK zfC4^(hm2L8wkW|!UX+HEBU}cKHb`Dpwlq;qM4GZtg$}N?KuuP%5WL3_@B<7qxI`g-?@Jaw-W_TrKWkX;H=l($y1gyiO0K(8*710hV z9N1d_%o#|)p9G4u5KB~+HYh;_jBMw7K<{F%ktPm&O)6VaY9DkD?bfa^s^m>;Ji$9l6W zM@v~aZ+zTd94i{l*f;Mr##)H|sl4`9-$b@{2G``Q{TA1xymofg>x}iMhIKSFV93P- z2vf}0@cojR&@u$aAs~Nn6!i=DEns{z07cnBT<1{{IMN_ASz0`B*&8KFO9{3cSkfS6 zQJO;2KfK^Q$r}Z>5m-WSEqq}@9P8fOJ_Ssv@cl#46oM_1HZu?nY`#G%vNE*bTDaUG zWffZ5Z*Ng5Sb!{L;Xf3btaM=kc-p=xf-6i&P(h$f05{7mhy%}4@MFN`7O1Jvl_p?_ z!chjr$;#3us>!|y1$)`AZ(bJNCGMjcI#-&*1_(UY|BcD;UQ(2hd5;0SYRbNhYS8VF1U)aqcTx09p_UHmtHR1d3wQMi@8$ z1`PE+Rw5sGBLa3|(0~U32-En7hMHIX+Jqn%GYQP^*@6^*s|0F*bw~h!2a%DbH6uhI zMj}NaN2A1`f`>!+ZD9aguP^`s@o%{Hb`JsZ@BX+;`K=NF-uB0DwHZ_#OU$%v%;cmD zR1Dgq>lc;-djw`=lH z{U_GD_h6l*`3mv3ZaMnnPOLF*XQL}iTit7~_aUG9;t5wCq6E#8Q~jQ{h_hEvQVJZ- zH;2;vA3#;8iourS(U&~Ywuc3$*JG8){p2tgwS#V8PWV2dvSq ztLc*2EV=w}=Jx$P)$wRLx6M`O^pxstrb+(mmt)Dsg$k|~enmn6Ro`wsa3)^scXgzV zjDfq`p9a}^Ew&L|t6-?*Kk=2=v$Dj2B_I5WpPU!h`}XEk)e@^iG`XOMBTOE9yUqQk zlJlQ8*WZ8Go;>RnWqQ_UyXb<1c^!lKVD;LxbTMirHE*wGdt`@{cliEzJk#%)@L`LY z0FUU28NXufN9CvNkM}QU;KwTdsd)Cf)*0jX>T{V+2YEd3{9snS%uF7Q00fA_eBB-4D{7j)s?A`d%-&FE4TUiN@u`DR_Kp4Nd1FX z?+%M6rqh$ASGU#`J2}v?Y_3Tw(2lPjNR=286vn9fJ3N{+{)ycZcy7<)< zfsI!$8cUA;*!E~U?U0M_)w$>Hv={ZykifH(W|mEba_hz%r3XtU2f?4c`_H$(|DN{3 zYxMhNtY1ekKTz91F3a;q9W|&Z_WS`^p8M=UXFXZI3oAf=Py8u!$f55jMj#Xar19Ra zW6@_@KE~dST>$QMpvzc#-H)YfV)m~!KOLX?Wot_rjQ%a3oz-K6c7MAydL~yaaQr8; zs*Qe!AN3B`O{@*XG&(MCx&3_@_3$e{4O!n%*UfRt1d~kE7=5+IuWJgT%JjecZXMu8965c#xFaZs?>*{c5!Xz8=y>JvBa0TJsUoVwO zcfWlQuRzL1JuTV!wY{`Dfs?yk*byR5AnMr|t_w9i1gSTgn6>YS8W&jod3{Qf7duMY zd_t;3Q1nZ{2d|E)7c`{nb zW<5Aw>inAVp5%!gD{svoLPL5`VxwUF(BXC3I}D1t)erH}|74`Ne{hRD-V=(Mx==fd zVP0N~Kq44X1r@!rE4dxl6TuO-MM4uXSB#gJ>d4a?xqoqUK0Ojt*sb04;D2=#+&F{~ z9}BF&8kynFZ`WYPEC>oDJ?n{c6N~#@q`@9b8h<5FH*s{=$;!@U1CpO2j1)|R<$6mEpXqv8vx?!v!XE()Yeg|f2FEOV6g)!X;Mf_eKQ#b!4iPck6+!XzLN(S?1z_3~9f(1{wmvE%RVs%MK` zXBScBe8XOW`vn{ZdPC-70!nop=cLsID51p!$D5%S1MI3AV+*V|BH#U{x=ovRW$&jL`-bi7 z1u0BFh1Ky;i9t`;l(&zX9>;MuZ8ssT4q)0GZH${Kj3J(MF;T{ITOx|Uu?F~~K?%G4 zl|zP{cT%ZYr&G zp>2NI2RqmW8{|AYUTj?IF7hY7WkZK%UagOJbZo`3Fi!GQqU(@tz^8F`C&P#9hYM)E zJBay%E5h?n>&d-K;tQWI+Fl%SV4#Rt;8ZmgTj$8lE_>1rDIC(iPBBRQC zNv5H6bsmKQ6$oVqRwTLiisJj*Jd-h<9y%WPT(()sQYV7x9UbzFUlO#_GWIwjNO+V_ zWDM5~d<*^MuvzqeE+iPw6_qin51v&9x2qnWKI2cwXOTYgRicbu!jQi_+7kr35YWTl zu-8J+*E{fy@KHW3;1+4*d>eoC%N}@Y%|(K!dG6=}Ru3d%hlgYuiw)|g`km@;bB>-M zicFC=|K2>V@aiSq*p0%5Nq4QrhA=O`S3vv22LwgxA@Aux$cVt-&n_PPdM0C5%5A@2 zKkImWoXdM`o|Ul-;<$@ib(JxSxuXWj--n?bCOaUmr$&aW(Z_pz&XI=pxYp_!xf4q*=) zDb3RY5gC!5z#DEHTI_h7=t~c>@yE6Y$6xN8ViQ6?-!G5ypq=hM#;leGH>^2qkvE;l zz}*I-8)>8Oyldb(_nDOe5Wged9P}pW)jA&fRky+rY9t--mG0D5)P8gEBU+Pp`$7Fj z2m}x;Hc9>@p$sq#0$9XmHHG<|0nl{TOD(zHT2m)?nyz4)w`kU%)y^4y_OGkqr>>MB z@}!|`cH*c)!ZnQ(lrWYO(-6LS{~!LbxCqB~?)K3BE-mEszYWr~Cq9-??%|t4>Y&Er zW~r1gPJaq#`2GEw(}(m!QN>_sxe8`=e4?6XFSfD@wt+AA&_=fXqrvImC*B7tCU<&VG1DU15Ap=fd+Lf=P2qGu>Kb|KOreU0-MCXW&m zbeW{ni}4=JxSZN(hn_|rm8X&o+UIvWVSf7XH$TDCZoWwe-}JAXZtj4Z(wD)i3wy^1 z37zj>xRi&W5h2f_qnYFf)oRn{L;QdRozc^hWP|NYX zi9{H(hzD*xfi5X?AZn~nT#AmM8XWtM(ruV)GN>$U`0+- z2{P>5DKhzV>_<}aW1LgdmF35aW-n}*8g%?}p(v#P<6629swRv*ab&# zb|$sVo*<`~e!lJTkfE^d&B872cXd2t#C75i21Tdu!|u3lZ~Q_w@PQ86zBVG)i;7hu zF=;M5$5M#`MO$iLZ!P3NFX<}OWJp~9_$8j?r+#tR6@?xi{MFx$B#|#yWiU;Ai~HL# z&r@RbWZ^8HSMPJ6SaUI9;Y$z-yNgNYt4bHatrtRhb$AAD2q%v9MQYP5#~^t>`s`?y$n8bUuD5Us~QRLJ9+Qx71PxG80%md*MxDz1qkw) z57>7!&)%$+hd#TI!HuZUOa}jo8S@8mzxYs(gJ3m{^|SlF52{US&&QHSn*BK$-F%|E zO%mjFD>Lw!TA(l2s6hW?AW>IM^$Yh#?_8KZ64tuS4AC2zyPUjxB)o`xGiX_a<-*_- z8(bbbtzA5w)_2F-YmEXk&$g_X1!bE2+63o;+7a{X-+H%kG7*%qi#8}xCTG)cbv5YC0_pcz`1k(#buVgHCJ|(e62!WW z^L2LCq(5!OnJJ{qO9+s0pWXNJV40hbx}sFpIDs#5%x;zK#;`-C5Ym z<+LxhL*G}O_{X>Un?6g_dtKN3m!t5hLA0Q)*3sItqz{is{tVD5+rznBpcipVepdX?0f%ta+wsP~2OQuN5}>D+Jd?DZ zmXT?+x~RCisG6FRf|{C^hQ71BvNSU}ry?(@q@bXYYXO=>z(z7th**Z>d}xRQ2mN4j zqdt8nA0AlN$EmVR`*jbrnIZ3I%ng%c|4lYGv-@c~s(S<|Cw-LMe>GNM5mL zDo;+>)+2LxiDaSlbHe-K$VcNiT9oYi!&3WJnewlp zC?5zijuB+OI{wDVC!%POhgt6J1mcLDzACM9VoS5sGUs9&^IRIrM)u+>jJN`GiNJ(d z=@m(rJm^m`NKi7vH`QxYN?xqFywp_dvoWW3r#Vjcj4k9pg){;ea38% zCDbKG>hF|Y?gL}M`R@K~`1#TJ)s~t&f@6&Q&)6eI+QPeElX?)wj?a`Nq&J@fQrBJF z4TGv((H)xI?z|TDudkU_+g>PpY+)U&K8`Yq9)^Akg8CK|(}S0Sp*v9^xU>Hs9iqDs9m zL?w`Smuknizn35)15le+agO&eY$5EByAu2utUW+f3LUD3g?6#F_ukA~Z)vo$uRulk z`^~jZi79fYP(WRKK5Bl0N2@Q&ar;k~3WuMuap{hvA}IkEF!{OB=!cJwFW2AvU4A^` z*O}cq?Yz{qc3`!<$HBgAQF$)Mv4kc1ZeK=Zh*N-AB=stS zinaHa>W8iC+Ce?|O2Nw0%2y8J@1fRr8N8uHJ9RRh;qDNy1pP4_8jvrQ{eNkqd_rI4 zBcfC$Fx)(FK9~tnvu6eGM}E#s_2;{nd5ik`@AuQ+S%9Ppn*x%l(_ny5k84ZAtHi5M zhrZ(`E4ge+JJA)vAv(~D9j}2u;a+t@%s2W4#EmOs%PLMVgq_DiM`lHF27*4S8^!wT zzDxm0_KRv4hdz%hS=_K6gnm(|UuUpw9rta#;M>s+_=mT0ZM%*If6qapS6F`~eYXpZ z>BVN0-LSC_%0jS9Q{@CK7nY>#9kA&?mQ{+X8~GRc5_GD~!0|&qOqq9eBU(GvrYh31 ze??yRK*no(m3dUhDQoaMmVsm9!sN8k{36A>jx z_}~VdnM6 ztsU8u`&CFg2y6SVlF<{NtZf(O7BM%GVQ^JP-QQcL0_m%u0;VyyG_F^y^Ek0qKNnA; z&5O-Gj2V`^7G`M~NhiMKBA-FhB$iB4qU(f`P~eMs-hOJw$zt!p24cbxw=L@eTC`nXDul3aZ<#DEwIQ^cT{c(HKbfw)u|G1;BCzn3gN+t!4 z%-DZh&ToWIj55h{SJOw~UJu{Ick`8aWNhoECf_w(hciB-_eURSfRYBJ@l7}?s%`1y z=l;2zF}}M2`}ck7uRgtjHE><%nFlYQ?}P={9(UK1?K@XPzZf!)DQfIkpKhnE`PyC8 zYvbB8Ya*HWM&dv^B~KjqLUW9m{9LYG7R;_xr^o5lJI3PC5=(#K8@XUyk<5H89*Fw> zZbk7FN`6Aj?Zx~{B+**NShTB6Y~b}NyPN|J|BH9oy2mkmkVPCbJ-|O^Q22u(CUq~} zy5XKlG7nbjT<;Z;ym?6%RaxPi!K^h4A0+=szUNc%7wO%!;kxuW!Z6st1;xFqQN4}d zX%0>ya~J4RmKoO70RM;>+w1pbl;K6^HSZ4#sXWMr9qIGO;^mnIi5XL39^cTGy5~AU z6vHQKo|Z(1cqb8iL`0)F`MpHPwM{Fx^9qW^m>A>t{KInA$LXf>7~)EE?SdS7yGlB% z=cKTVhGI3gb!_Q#D}MRev3!GPK{4;2UNVQoh!_-b)b-LLlLT65E#m{ZJwi3)OyOqN7Om`6HSi%^XjF#+)y~Fb(*p&yOta zexUH+%S%q1?^>-=@GMSMNS8J6Xj({cT^PW0F?`zH8LPL;sfuFSI~=G@Q(g&0Q3^3=aE(E!)Isrq`SewcK2p+LLEXP61$ACyRT!T~$} z{7x6h3j2muY=CHP424EF!UtPsQ0a?3H-G?t-X3eE=O3@^V!4^;b)MfhT4p)f~1={;O)%7#7N1Lbr zobJ^trWTjyhu3}G-@7=d);_)~4nFQlqes2c%3t+yMy4c7!hs}GYm0c$x9w^Q;R|zR%$e_$zSFIEB=Bk~F!Bt)RdggW_2nfWDqjh=?pG=@5c<#4nh$)7oVia2 z)7M>f0&q{1Kc4aRAA^PsiW2M&P{REAZh~jfAQlNScpObZf@y_WlKPBXCLqx|j$bL2 z>^~)77p}XX!zW8Yk23Eg>=f^gvr_aA`ZmAY)zMI7*Hp8!` zLPth6n@5gttUuYBf2A;CLXL+JBwqfi1n46xr<6(ujSDGsX{a-|tL;_XlHq@R<|^37 zT8Ido=!r(5XuR7P z25uKdz-WWcab-E#HPAq6s?meFg^2Aza$e*~mTg->cz7z?G32o;M02dF-L8p`46lR-g__(fh1;B1uU;iD3iX|D4ohp9ska+BwPaV;5gZ4G< zbNdEy$h$uXD{!R@^a>v;+-?)s^3(;Pq}scjFOMu2`pXyCD)R}2DFOd!8n^@~TmHIF zeDVSemC=M6`;B%cJ|2qEnwvP={uXg4`TIzt39DGh90a6?NEl`r{^Z!&rI0{YDP?Y` zepE_^KDB)A~j0*#Q4hyXSb~zT@#}ky{3p!x0)u(y6x+v1Z*uAF5 z0%kxnE=T?yABz8M&A{!e#>9hd$m8jbb*E3nYpA0#^Fn8S3LKTSJdx12(t1QC70FU7ITCB^5fhml+{G06kZ0$Z%7~XdDo{>+&V`mvF31c&ht`2~y{@ zQd3wtf*;CQeta@y^h%>N`9Y!i8l_(OVmlSnd6uw`@ea~g=5>FGNKnw&OobJc+1k;d zXiX}^<|>&76|8i51M&|>7xJtw7wVqqF1L^Th_Wq}g)f(cpZJiQ-FCsuomH%YJz)0e zRAh+B?NA3zxB*}FTI9wgz0o>U%-B*ir+uCIs%$sI}EZg{LznVITq2R%N%svK`hYG;U88%vp;*Wsqb)-!=dEwq4h+0OB)hz zLff$QU`Y{l7dVF!gr4&O`h(Cxa=I@L(=hW_Y?Fls_^E+LOb`Zv+r!jdJWcZh<;ffh zP^)Khc-4P396p#%<1O#+UMdWs%p1^1JQKe*{)z8m;B&|2N;*bxBpGq|se$1Fy$)iO zRn5wq$#ZB?k*;Q&@n&_ePCs)9U9XR2fJDbjc$mi3bRo%Jc{YE>=(pNU`i^^JX{59f zE|#v;Zuy&Gj`c=?HXC_UAS2S;KTFV#hI+nY8;_DY&X2R=U_}V4Vfulay+Ti4TQ0{C52mdeyGb5H+G! z{9<25%f!9Rq{)rit(r>+18ue>?$?n(O z_PM3|{dY^AB0D^JgKPROK6cc_L^9IC5&u02GxQ#9ulR@9uU==qz9L^VvQx(?nQbMo zxV?~GI|bMdqYOTryR_1mk6L>0YTe@|F9f6`PdsD!$Obj7e(Z)TA4UlBPlVPu_*Q?i z_qUFZgRP?mo{OQf$)iaRW8J`?+Wu_O#`20R&rHI)at0c4k{Y5bnkbaNYO3m4L03TL zh1g(skOGDqh1Kz>uvnGwH9F`1_3G90R^V!nqH)Zz;)sUKJX^y;h8Bv~OPddB*2#7c ztq!z9fmvd2^ElBhzy<|{Nl^)fE8Qxi?MT?7(vv~mJ78;IGatjO?W)w=jYxS--z&3H zE*;_DDyWd#@;zWfvMO8$#Zhm9>A#L9ApdzYV4&SS%ub3zMn@yowp9VlSv(B%7Z=N3P)(3!puNioRW1UqpR;URJF zBSj>9K^=l>77`~Ia&r5lkKa%AwPL{!hGOKXs<6~|Lc#iI`p6y82KOmz6d%1>(W#i0 z$c%dDH_;<6%XinF9!g1y;f5bvo~Kg0Cl?!w7zI>-BcBxK>=J{vd0G`^t(B%^e*dna zy`~!k!C(VAUpP@t6=Vt~==^wnWbgSdjpOfuO@pydOu6pPRPAcZRgAIfK36{EDC5B(}d8bG?QO z-(_W?&7Pcquqi9iCo?EZXeW{qez{{UF7t2X)Dr5n*|V!7584~^2alFPYQxR=2CP=j zCUpw?0)kPPc`^D<1f-#T9;x_yKqTh}bG%H`Y1)wS=vL))T;ljZT}Cd+)DE)(L; zLP^7eGgNeR%PLNU2$db1+93wmcnya<5nbG=Pys!%_D>teTzsV9DC7T6*7S!(+d9J%~VsYN>+$v zIEERa=bO@(jbfsd5CDa3z5DALCgi7~NRszfqxRCweyq0ai(wf23)y!RExyD|DyY98 zQ<5NE5d5y?K5Mn#CtjuLr-==*aTz%%F zE7bID-R`s?7N2-#t8RIz?=kmv^Rt{FBkCHqIuyuw7}cv_8t}Xd`Et0O^AnYS>h&*I z+G*--I(OFE2nh=4N{o~&&XfRo9;jSU;HkNC6J7PPn>>rSTj6P`;z&k!D(Mk zJq#ek=QIVRrk+czlZvy=LZ-?5v+0@dh zcOT+cJBG1ov=E@tj7Q?{(HkiERyJK2!hZ+JSh$LEtFQwcV<&f8lm{B4c%^q@-dVjks65oVT*Co{wecZQ-yc6lS*nUI`L3nlV1$iKCkUgQ;`)5kF(ZlLmBB zCy_?3n2xm1Xx7?kBlaK(##Sb#$xX1Q7ZMLm75(=R_@>R=Xk(eeHbKEZv@WPgVMPf9 zw}O7nmRKE@?s4s>hX@}DI&Ops4x_`YENmzvQJ;XmKPk|h&}ut~e1_nk)0>GaXhDi5 zqQC?mq4YCP1$IiyPPWOTzs>SOM?JJXuGv49vL?r1Gb~j-{LsbeooIXf8`JKV!vm~Y z{#c!9Gp;=(ip(4n$78S5yO|EmRNMnNmdt`Ob(6z#5K+4jy}B9=`q~!OE@WElqc1+i zk9}FIqhIkjZHHl4k&V~?5wU3@_)ykwqM%hO3fPZS=|%G)eq5<*ZYD{1hd5&u9H!&M zdXn-dlN%79(VKDjn8-c&LD&#t{Sw(cYv!-;!Ui z?eD@v$y)E-ag1+=UW2`p<`3uW1J&Zr!`IOprphjjNh;SbQLWb(wx^ zj~43OcH8@gJC0R0!BgwQs=Ws3`q$2}gUh)E(|g~kJuQ13SHTaJH+U5cb?>uJ*vXDw zmL{KlKQ)rVEcjznES^+f5s6Qf;H+0TM*n3uiNioxU`0m1MdBZJtrE4T0WhaHEqC?b%sxb|j5 zjrIHNUM$pMIk^tObr0VbjMKm42Inqx@`ycDXSAlz%ZLG6SM%46Jmq**g@Oa;f>@R9 z?oeRxWYE&`;|4XzchGf`=^@d>rV2+qti$P(1+JsS@n)let2SwO>%|sZ?G00o#W58;;Pp0Ex46IB=8z9 z&acwkE-$w~D1dS8sy!1i1T{`KEhg^icX(Y*nZM^0LLRL4d(OzzPYPqReQoARQxXp_ zI}nEvBw#E-*-R#p(1B?+GY4gtZVtwD5tcp=a9NFo!Hi6^8(zezOk_Jmn!anDLBF zO60fVG+!HdPchtFHZEv1q!qvGV>#qMHaBL{X5PW)AOb$xehI`jG=_y^V)vu?p{{H_ z>Fst+G*ld!E$wCxd7q4JQ7~6~lBdD(@%e-JR@V?+{$VegX3(SDI7BDj{1<%+eTb}5 z1ue$e220*2Pu8$KMOzM8+hp4>f0yXfWHgA)zc6=I@#r!RU%>-tk_vNpS~^V6%B%H- z`c$8vuOEoFt{eBH+S{9TILp?jRpLc-*a7>V?Fj9ya1!bXo?#ptXq}uGeC}&IK{@{l zY@=x}?hsrzIs+b~sEhaHm4BXv){adoTLr9ERH;ZXshYH-6T8tro}?^dMLT}O&ol1Y z4u&Qwb45=$T67j!b0kqcqR^~AQtgbNd#6r*vnjh8UE^5w6CG@6%0VlqQw@taLmEon zrV~?{d{ugavlH<`C|j2XQlztNMf6b{QA4dT=ek2qRbG3T?>YJNfg0pmv^NZ_77ul zC5ktgvL%kqUVm}N&DdX3ZLt!^b|yyFuTyzLuq{%r*QY&S z$QseFqZm}J7G25Ltdzo|-2wT6VRHb{gRT6u>qXu2$Pu}J$>k>+rrDh_*Kh+(VS)x! zRaOx5aoa$6ve|nje>AxfsjXnq0C;W0nZGYAN!X0-OlyC6DrQCxD7;q398-$I3q+lw zaE$16@EpXa|N5=L0?Q*yV#4s_H$$iG1$=0s^|GwLVx>hK&hm7>o?bQR*{9E1wqkCN zEIT)PbyV@-chS+gjCW}8393ZibxKR{Q{@`(OMO>|T2==14+%>L+V8h)h*3%0-4Ho@ zn;%??zvuzPROk%-!z#{M$!yQ?{tA3_jt9Seudh~r!V&1>Kxf!<86-{l2%R$J=gunB zc`kC7)5SW)#%gP-Y?9PGo$LoM*AF*vLv^Ye#W@Hj$$1*BKD3;iyV$p%ES}fVJDn0Y z9}P9z@hFDvPB%|F3c|0rg@pDF$9R)G=v3@lO!{dYaFL_?`1Q1a$u*DCc8CjGi|{WHe^1<($yXR75GPfgc%w=-evs^fuh6J z+6A_+4Px$r$gT4v@*}O#x(%yvM2CqfRKa1@1|^39f0(HZ7r3STiZt^!A#PK+#k55|OmI2P=*uDi0wVxoY^Jk8kspd;}J<>N)sMJ-7n(g^lk6gykq!ad%> zQA%izlj@3bpiZ8G`S4IJ`>z=Jj7j0z2$F9^0dQoi&CsI7!4b?rx&fS-c2DTiA`Nhx zlC~%3MQy!Z)|(bAn=<;DS!iih-}pp z>~MIYk5c;qx*2{62AXI3mXcWhFon-A^F==OH}VUna4&;&xqYII;cx7RwEBVX{|zXXA)<1F!QST!n2rGWe)>Q7%f!i9xb4s zR;W_+Gm6ySDwVvBpLw$H*Q`=>*o-T-7Hsw1u+q+DrOeH*i<<+u%iC_LJV#HS$CFR* zaW>mk1>CJ-Q&5Y!1Kw+*2|z3<=L;z-Bez~7F7&r|UuxbCQgc1%tC*mZD3<<$>rD87 zW+i2(6JK$*cB^pldg;Ocm!40_UjC;BZF#~M*Zyw?4{AZ1oyh^kQlbH+n_Aen5eixx zqlz1fXqt-P*RQH^I+`W?)maP5ZRw3EXBC+M4neG7=zimClTaqGEW)#z3UtWV$hs>@_0|D^1{T&sLT43?v(L&tEQmiXvO+v4(}=B z_9Fb6s?HYCOf9>N+Wz)OEy}d~#k-z(_+_O$yY0}vGWkioZbj|bIy5Me4PGt&>M~o{ z$m;%nPz?P$Dm2y30^V0!!7F@-(+@yLsst`Y6?}Mk>_t=O7(*Y8u8DaaR@q86YTUtZ zME(|-0r4+`FXEAUd%ZQR)832cvB!OJ=I%Z9C&LlZil!$_N*XYDM!dZkwYJI}j9wr4 zeH9KTPa~K_=vZ=PC8k(~x`uPEWD|4zts~MJdn)y|IM0gkvkowOUl2}OEst?7Npgk; za&olXzZL94O^lATe3_v-Jh;IG77ZMoiOZx6wZ zXJ}9iv9hDOKxRpsZoXuUn0|oOkL|ICCGF1x{bk<}(!&uof*WER&W6S{%ZEugY}IuS zvT}3-L^Q5!YM~R5_y^ z4S7J{>yz%s6(QJu~9IN7-wJ#-Fv#^&E{Ro4#0x zQC+Q$Koy4BX?;r&*nr|k8z)a31Q=U)$F0avF!j)euQyHUwVK6vVA*mh@o0j#+%h}O z5;>k1ZuzU^lx~R*9ZJ45vf4YD&PjRESSE1PR}}1j%TXWSknGMU_%c1}lJ$-J>V&|t zM0XLUW9VAcT))*~7V_>&)I1zFt5=g7nh{Pn6T;y<(Sj%4;ej_=XVG>nMzV^MuV-ef zpUk`Vn7%o&gCP5I@$R7cCpx-=-*Z1eTse;RBwPk1T`?b(EQ(M)wp97q-=Q<0N86%i zB)K(jbvXz$&>3yZIdT*D=kK68lPB8(;kCb(%oZ7&Rqg3%*VHIwD*iD!QRyM-YM2BZwsZNPK^!*#`kNACU(ExI>zKK~AMA}YA{cumi25#P8`wQr z?a&Yf3M@8wmfWB7OczP7L5KKyNxNJaLOD|gZZC)SeMFt@&x6_=q{~jwbQ3Uc3i*Vs zrW8uS<8$Po_o0r(4x_rTB5P=uFpFff=xD-DiH+Q6C&bsqif%j@clpzw;cts=`(^*S z*+djbJ57Y{4WU5Jl^NX@wUihXA*lkfurL}??RLXtcF9>#!uj6h08!ez?~!=pVpD7I zas*)=9OdMAE5a1d>^!=CDf^iyBd%LU@xU)}fB5g5nUrgrboLLm=RH?jjmh_vcJG;g z2mCy!ggWB<#5Zw1ur_W14{Q zgLh zjuz+Oy27&-uLEeIS$ID^m&Tl zuS>2Zf`O&bmFve^1viU^QG8!EU^u?=y&?lz3*4n10yk25G5)cze4Rlq)*!sAl$t;% zb>O>&b(%PrWK=(PeJDJWAj{2W3#Imfj5Hd0O@1l{@Pz*guRr7pQy$x;?T5O8!`bur z+bSFjl(EqBS4uewAg+&4gml=u=~}Lk&HEL`N-9d##Az54XW2$yMO0Y(VQ3zj0PD#ZbvSR-` z&||1!UNfwH-ul+*FWeuzUO`!0*`C= zo+Iml5k{ky@d($qU-r1-^@nu^bI^x9hbqMc?B8(~@uUj2HSf(& zelmID_dQyfzTdLp5W289`gKLj@9{cebj?*!)*<^Vk*6)L&cg>_H!+)kaW|=&^->W)jX0`q~9h#Oe!RLzpn1Q?Ysv3_A zU*Vzt81~-Lj*A(6*3&c%Z`M{%^>wQh=%6D)MwpxZe~3D#=(?i)ZSNhYv5m&IZQD+o zG-(>!Zfx7OZL_htW3#dUIp252ICtw}-Yksuo8!eZU+8@9v!u1n7kMpIP=wMq-^$;Q ziLZB|LzUq|33~POieU^i!|6lAn3$!dU_QkR(HFPmCPcJ`FMJq-1qbfSPW)?zwljn% zymzEN?@Ui=tK#sPJ81WvzG2>)l0*HOkCN2&++-@FaL0E4qzw=>1@F0rPy1(y(lm^9 zJ9FHfBk$_jlF0oy4%OlI+JdJQWr<&{81EWD0~GYJzR7}kKT}Ecd&F#By*HSR7uqa( zE`o!BZDOfFsDUvGzA(8U4tt)6TryaHj5*>+S@mR7ytk;dJUh3lTuM?s5|8+nq}X%* z&~n>d!XZ5oS`GTGaoSqb!ap5Zo!WzL3uEts{f&T;usT1a1qHa47y8{5ph%^RC;m>Y{jsIwWmf8jL zw9Da?l8T#iGO2WZVmQ#zUU23oySi1@u6X?{$H8Bge@`Rz{KqqQdS!^OABmD$2IFKg zk9GOtgw?TQQ{uZ>^H>@*aKxz+araIU(r~s8S}p2n{s4u4Wi9Y$N9*w~R6w zS5hM0%#NJfy5{Yi>jcs*>JRN4v{&3VzNKK&!S}TvbX}&q1WF>bbufmCZZ2z^dLM>> z#7?kY@D(4?N`@9rM_S!&H5xHfxppP34a?5e+!2m!#u9IGklx$@?<}-=nCH?!LiYk5Q^3NjG9fWb?XzK4zfl z{hoRTCzAm}_5Xz1ulT*@YW2D5&T>!C?fT+sE8ikO^wEWpmS)O}XIKJ~bNi6f z5!b}9WO&=k+ih6RCVj$;{W~Wnw3+-+*ZT)zrHd(R%I{>~)>b$KK2XQthh5Ld`wOM_ zMAQ^wPUf$^u>{8MEJ08}0v@mLJ7(!fLRSK%G#Ac}ODm%`rD8VU$zf>Hz<(~>QMc0M zqm}Y{)qE+5;OdJ5uUO7-l)zFQ;zv}*aBFG?j}p$%di9qTfHaeq7!*8Fob-PR#}1Cf z-3<#@9}O6?iN0l@AG35KIsFn?;RR147T5QhDd#Ot_u2ntVyiVL(Ck|x0zFL(6hnY) z0fdoMXuQ`tf7l#P!O-3CKA*b(>~zVXIH=%x_I)nNq>Jgq zJEBu@&g-~~alM$b0JhTZ15{T5_>;D>@JibXGk+@wzKY)d7Y#L;^_56GQl}8-e4zaP z6E@TWtJ&b>3HYP)J_FjG79%VMYTM?UZAPRk2A(YBKnYs(8TL1|2n(Y`6}NMjf%Ia< z``96o^}5?a)Z0HaLJR`M1JNx|04G4CXZ_8JDMHjd?5DkslHdMv%KWD&+6oU%dSHtG zX}1U+K}eH-5KSz3PkjZQcB}6>#XZ0vjXhCTk5#URQE$kuGfrE++yX!c-%|l(DGl|y z)?R;tsJ*qTPLg|~431o_OGK)s>=>dmylFrTajshk4*>Ug4HCK>8M2Y~os=U^i!JWwmvpZ{HTwr0fa#G0% zsRs#GnR~4Ba?+;VOfh>Qjv+xfNUeIcmtn$USl7}U%9u8ajK=!6gE-|Jkh|090n~^K zH+OB<5FM;|z|nS0b095wHCBFK76i>ylFo)U8y*-`g$r~x0_26gi(aVJ zI3xM)c>l4QIN7utP7To)>^=e&#u$7iXre@>Uf8Bw&G+9Yp`wyTE-y;&Uo`5vP{xdG9Lq7LdCgpQ_u9FD_ z>56A!j-J(>+!xEhE&?%&TlVb@t6r+-hKH@~S+JCGTlEFk7t=kx$n*aO{Lx zWzpOg65rnP54l6g1 z&4i(Gb0}ESCGH2qcfS7=JRkrvXBUjPKh3$%|M<{sCggo@L#+Edf;a<68>acj{%x_E zMHE9^D&FiSdK1@T0K&n`B}?sd>7U)JXiFSu>NG@pXlJZU_0?s7C$|39d`Q1`Q+;-{ zMl)*Qs(Rwq_3v0r9V0wN-SCgJ5%ZVh4&nQC%rDBsDVXg>tqy5-SK6iLmb-XlXxrh+ z(o)6MgIYO;Ut}xcijSpw({ch*J~N!1h8&w_$p|QjMU;8DSt|AEArMz|uFsB*Awux) z`xO<eH}_=-{_8C%pVv#vF?sy{)1S|2yd zi2I1I@0cYAD`K-T^>nN&q6PNpmH0*bEpdG?`F1gGdz{b4sg6OU9DO2U$9Yc|l>B5&mlIWd#Ic?0Tl#!3Cb>==mUwJ>1rbM18vozrKF?Fe$rC4dLFBq zs?MGk5v!N$HcQ+ez8#Es!+ohIMPX`zZ&}(SPclozR&QF`4H>yF*oOCI!TAJVRi*Y( z16rL5b`9*pDG^`33631o&N72?@>(rNBdZt<@T}<9R|vFDhA)k+y0+BJxd}iBG!k#x zJ|)cX&fsh0*;Mx%w=NX>|PHlA8Uod&^TX{n4>l7wN}1VgJpMmdL>^ zbI8StmXkCd8O{VR%BEJPZl56@YZ^DEw!T|nAVoWQ<-dHz-kSf32~b~R!n>O05_NS& zR%KyzWo=o}AT=d91vMolEdwnz1r-%79o^grIVCeaJ!5Z8MsfPbv-s#xNQB@r1qL>T z>b?UK))4sOHZ934!geY5QTXTQeJ;F;@C>jNDxIR-eu#rhig_>R9p57LXY;DvoY?Zw>J!UgR^g3Jj{A-x#>`~BgkK3j&C|;L+H-@=%LkVZ7bu})I zlYQ&Ca-$^H7H3o}NT7{E3h=>Q41p`q9`dXA#JjJrGdY}`c#b2u1tdAL(%Ck$#Mi*U zq_xs(Fddhd2P8oIPK+jXGO{Dgf3>3q-Wd{&WMunk)^ljA+^%uIAe5p-W1BJFGZEO~ zO2m|>rJf3%W_nv*OyZrBIGTrOXTquDPF)q&UCn0jDGm@rEbGu5A7he-%{4XMZW~}= z-C4zVZ77614_qAm91YIH_zsp$gPBUDG3*9)ZeeAGm9bV7si=tD0#ek-VroA7`H1}Y z)5!sF4I@-gE=jv|jNC6T1jw~{lp~1=9I^+ek=mlmofR z(i|_JaROrVE8yoK{6wqlyr%RzzO%=Go3jBWmUK!oMR{JVmKy|>8?jY>9PeRekg$P? zyj@O|N{FM=<|p{6ujj@mK+hQVa)R+F0{zl?;Z0Dj;bFH<7r_?Wjkw=hecBzI30Mn1 z7iuuQs;YE04M2a#&b{om?_qoQE&;gQIi~RviI8D{eXIdp`Q;Vc4FVb7vTyXprAh*lz}>MWGhweirQX zhQRTtKnoz`H-MbGu1|h0#Z#^ck9VK+zbCNLUo@T~$t?2#J6BOv;+d->aTKNp+ayEF zy_oolxO`b`(pscTj9lKi+}|*<8S8jH8wX*gRq`OBJPWJ2_wIX&CrU7>e&s9)JexAw z=a2T5H(M*bM++J9?JCnvsZNUaia>=&pYPT4Ns9r7WTV}jf0xFc)*x@GE&CuicM~6L z^YalyG)x=5yw4!yC7&Vp)!kc5pf?|GmOy$3SadkM z_D%rhU?3G2{M^o#YQ@}C)w#THqh`}lh;Df69g#OLuJjzM=vt2Jrv|l65i`T8HrnV3 zjmagHVdQl8V%=x@pU|3W91^wly%|@n)Zjhh5R6Pc+Y^$6Uf4w1S zPT)CziOrn!l^g3`tvTpD_1hgMHW{PHXtNYY> zbsiGF3mV5mCtEbhQUb}nZf zEeD$=4*zhAQnVw**4T&UN3xQ_RTTJI1l<7JbX%npl*VXtR6r`rJa*vv=@I~7Y73U+ zp?q&aIVa|H-XiH{+H%52yxYT=D<;ZBlk-<&@QZ4f+c|#mrtuTflcxoB*Tr;CCNKB$ zF8m7{)Z(6aL12Wfl10u7D^qrJF>9~NXodGWqzPkLi?6AzXDSq%y-yYSGy(tVu#Z2^~`8OqZFC9??DjwvXRO(4x`^JXpzch{?YE0N9ry*^Pu ze8%}aR_q1@f*d$@{McKqa=V+i{gq?#i2mb`57G zr|;KAKsJN9gLysy)M!ik+CT^)`taHK6Qlyn93s-Th7P{_c*~80y`cemU!`{-8dEj# zA+vof04-hMkIsmI+SNPO?$6ChUB6t3W|AL*nT=O72b`boHjA*jEWX{laLG3>xtbK= zgjpY}k)>aMw?^?`>*K#bDbEGZ+%gFexV%8S|D zHkOd3#vO0DYjx}XH>ZamZnSSq-sgpL?8HFBkq8@Ml7BMkjR&3jiyw>NVnuhQSsnHo;%TkStJMmeJ*Px0V8Vw>_w{rYig> z;gap&o`;(6!4oY3WRsnK{;mDeDpqvxCOAA~4d)q~O_}cF^^TZdgVP!_CofGwO9n|c zMqeo=y`-1f{rvuJi8TFVh){@!@rs+>aAj&K#HVb;DgpIQ_f`$aH<5rKBRH1DSC!>^ z_M%Os6M$sYmT2~I^_ht3Mbr>-yRMI}TK$z_ta>Vxz8qXWv=;ELi-z>6O)kqhkiyD_ z6BW@m*6%y@e2GYt zf`V`EE;y(dU{JA&s^#L0dGxl$`oCbA5ET6%BAl?%Cod|j=J<*w`GnxH{hWd2oR;JH zY!pE%nq#Q?_!1$)$jq&}n=Io$OT$mYGhkHIAWy^2;I zVHv(1{Vibc4jVflGCcp@vD9jwRnzGTmKcBf?`}Zskr5=jR>M175!W9NfxCtKTE7(W zJYvAEEHTpm7fG>FBuZrAhj>x}F7zgrw}1N*opR%eGpF%g-rthMKQz`Q3>186TZFm8 zGx!#uS5<1Uo#nh8^ctg7h|lAm%FU>e;mHgAE1MQBs_dHUQGeZrN#}nw%o`^ubvw$g z=U`>MOg2^f@-Fp9dY{a+#FHDf2;Y`ci&SQ*{cv}3)G0?Znq?}(lB)snZl1?+Gw$t@ zR=hsG_j{k_2%Z2pU-8@;E>FH4^alHx&HShIWwLqATwrOx?XpZ8v9(DXBe(5mapv*U za>eO=i}`R$h@-HuzFYo$sT1#?34(zG`xQ&k5bR<_v-xG@kt1C$e8CG-(I5g_ThE^H zZ=?BQNK=?RduL@+76VQjYfhQ$HmQdftkLT~oEY{j5$P6@O;Ekzmc|}hLEXxTziROC zy&Vi4VY{dDr$F7@5)hN}`sBX}Yd~&7h}}@J#x%M?isX}ehua|KWfM!&4sF)2Kn?ta z{$xs@lPd2X;3n6zz(g}2YrcEqV*R(l;u$+f#L)pWBApd)58T5Bog>OzTexF z1(F8$OL!3M7HAcQIi9MHpFS))(*~l4da+>Wi<8Rst=Vs4dC=O>x5)?_)Q*p-D2tk+ z3tptp6Bld(Z#Tc1vxtuPIp9?p-qb26x5CR~q*N~f)Yx!7E(qtI&Ag+pp@fpI@!a~o zT#Y%5V(8jGRS^#4Gs_@#PLh~QT>XhRd`{G)KE|r$z}umvhA&bChzqlQ!2oU#)Wags zR7K*?2Vy0_TH{dUU(B z+R5hP$%ZR$OW;yz%?{`J-1M(GK0%3M7+{{6Zp%nQ9~gcqAHx${6r!~0md#^dz;(Ij zxfyL$YVqJ*;$_p5hB$V4*)ki9fQO%&?JXFMKCty$UvDtUopj59!Yupa(9QezC=oY) zpz{y?#*Ik4>9gQF=fHnsEu@6$Npi{rKzKm`KSn27;u0PJ*A~O}GjNF+4Ys#-UneBx z?k*5{LBAZ$N`0U|U=XG^>yHMB!di4hAroPl@kT}aP|M*l`ilh;0;<11a?ddJcNi|s zh%G-!WM?h?N66h3#Bex3)$h~F1$RkpU-g>B{=zP^d)uQ13aq4K4s(hdib|tavm#pz z@3EI%m^<|*Ch@%_-FIpTz(=Zhq?&`!kW*gz70U#6iI&hvBiJS>DZw z-=x)*i&XxFu+BOB(jTCv7sjUqwTBd_M`-Y>2SdSAY_6P_VuY-nK-JelsA{vgf-O$w zCTUi}{gi_h%(fqKvQqA2hlO+2wM)Q*h5c_P0sjA^DgT3^g#MBd+7vR4DbiB&b28f~ zD9FjFD5;njm?)@dsF>*K8Y`=FQgc&^6SGQ+v-8pj)7inO!IegCfR~=-?C{h$M%yRf zu5E}K(ToOEWPjX$4#EgUk-fyriqT(hp8LUb{JlPGeC*Vp&NVNAx|k9Wc5#iVnyyQV z?LF|5n#W-|XX9v^G01=kjFr8Zie4-?16Pj%YbodQCz+8CG3nUIwA8S*9)5e5Kp?hM z*IQY!8eYUSy7%&GO0MY}PCfV{l)#Y~YVxPieRa4ZBfD${$)d~qc@I>eS@dW(8WFEI zz*2GOzrqNMr}J$7NUgH=nZLB-PINEPFiIFdo}Mqh(^UUkS8yV;t`KU$ihZa14s!rz zEKI=iQ5Bo5AtHb#2~KC_tRP{_Wh%LD81!?Sz6pHp8RFsf*i{xETY4-ty(elJooxCe z5ErBJ#pZmpPqC~LT>13SXZyWjp86?<)hA6IV(Kvb##GJJ!m2bmmunSrFG>NJ20Dp` z)U&(~aLPyPRo`ywd5o*9HU6~$+y7Iu?d1~ans5X9(0?`Tt3DDuWfjrvk(7S>X~j*9f-bV zPv$_G4#g-ehZ@sQP#(f9^{N0vR^{Q!4C_=DWtU_3rP0O$p`GTV3wEiDM_&o zyAqjwP2@Zjw<>4{_I~yq-)^hc*8`jy~m!e>4JN$yua~ zYwa}YB?+CK$gdqHkSMK5aj^j!J`e7@`YfE*e?1f30AQw(LvS-xlTIu}9kZ4uFtAj> z#7>eABGr?e4xS74{why-#;06PFDrNdD%J!1b^(b>DkLY^2!@mjr-JQTNeX&8WCjL1 z;{=SOlZ2usCXQABU-TtrN?|6S>nw@DmW*AqdwvlBVhL-!F7sTq3~T64{Tt7BZi+!> zn?cKc9XVWPrFWU5-wecNxEcGnjY}TEo^z?=%HL3kdX#xsYq+*-*A^((Ti1Af*qbO~ z>8P5B?xrcPXMp&#&d$#NtSm4cx!+wr+b=Po;Dzq9D6G{`c3-!2Yj`Rnt9Cx~lz zGEyfU+9wK&z(Ooe{@x{Tug2mPB8&7Fm`1RZd1~1k$Y#kgYSa70Uj5?R=*vA6c;)Uk z-hyQKObD@j4?R?T8m;yF#+@*{BT1-t`-ee|ONfga3+73v38RkM1X{xGl3a0QANCvA&(tsV|Vgzl))lf=!*FKc;DNw@Fx5OPjw2 zJPJ!U3_e|Azt$ZZ;g?^+tF5&xA3jV!5_`g^eFeq6d^m*gvsxW}haY;cWgFaO4)iZs z!w4Y(WUJ0Wt)taviQ$Y_-|;ByjI6z$HAy2K`x68+v@j8tui-%!d&eES_3_J(_IkIY*y0l!ERK`@opZfYezHid*)CFgbl$ z3fgMbow}>JXov)aWx5;8+b2e znfl=qPLWOG4zOeF6iIoGhBr-ra>3ohRkiNfTA&hz(&OT<)@tchwPq_fMVWu>1X06^ zd>SNa>`rrxnjP;a*vHsV*o>4=^pvw$i@kVs-WCfwLdFRS(V>U$&~_*8vB*Y z34{_|drio~T1+OQnxgTOZ!gzx?3iCUY>X5pt6$&V&$(3JvL+cUml|PNb+{G}Fgale zlN!9$m!vvaHs#D3{+_0UlCp!8CY72lw+swDyNxiD*i&B0#xdesa3OZR0y87m2&Wwg z#yfvknX6$x@Vw;Ss%rWiMtv2HQ0Qj}Ra@E&P;=ro>)RRsR4C5BdBk2*aDgIh9|EHS zTQQF35wD(8WE@tC6GG*r8hn7SRj9VErLDdf+(E0Y3rskWVUh|)TY_6Kx|0W|P#(CY z?BYYnf4zg{b{-dE3Ji~rnJ;;{wv#HN06#fHwk3*~YJ?C;1<*9)#2RJk)d^R$9kN5z zgjh~;Zsn>kjZZG{@?P}*I#&x119HBU4GQ``xP(7^#E4gBfCuUC84lVwvmruN;(xRi z!P9UfkF2Zr(k`+D8`n_VU|qZa*r{xM5!+KiWg0HMY%^-7vl~^wZDNja&pbtcM$1xn z*)X1Qu>@>Riv?adaQVE9{wZaFMibgq;e?4-`6*Ud{bnaymZ$tdv25wyYQL)w-{;|} zHNrUT!Z7qkw5IX!rv2GdwA3$;uPR^RlXIBOY|;69YZJ=ur=iu1NUcv_EY6_vJmfFpz{L;LpL|rH&Q{vV~TGYa8Uq3NavTNF--*}B?a-*Pl50cN38HKmMdeR zmQ9RcNn?W+KIJ57>_*9@41~xw!8b1HOXH~nog}fwq_)lVCUv&4Xm(jItWmP}V}MAi zN_)qR*Dy2aatW4)Zg|_x>hgVh6C>DjR6b^C`xDtyoLL>JhoFmRdE{_o?6!9Cij`-Z;G4^YCOozN9pLEWtTW)A$YxqVP zQ(Ys1|JXaYmb&IUyu(ZpXlZt(w-3+km(c4tR_yc}w%N^!iyxiWBvf7VW2O_ezC=as z&#zP_Ion^iBDZh!6)qnN9SbO9HK>ZX_|+i5{$CY8+)a0;T(x#JK@toI;uWJ?7Hp&8 ziJ-2(S{Dhg7`mghSvLw`7J(9)(^PVA<1tqfC`*@J?@&T>ornk6HY79-yLmS|g~Ce5 zYy4}|kdaV7aX;;OoXWK*lGOKE$2}l4@VW8*hqExd;McSTL#j#&;)W)7q9MCen}A9T zfF!TfVHvLionmebUE*NhWbo%(;fjvyJU=j`?tp$L@_+_KEmXjx17y=HZ;N0E-&oK3 z*(zXoe7Hy5x*%Zg*CV8mz8Nf^KenY=Dtvv`8+bV`D#U51h%YM%nTQ*aTp5N^v?!3U zRBE`UO&WF-*3oO#5C{9@6Q*@>ITFy5!63$4{1iWtUj7tHqHu8B1-Xrl&k4*Jg)7DQy>DEOidlzy+}@b@J1Y#rNuUZHFnn%4MNHZjl>^QuuEW zPY_+U+yI|8@xOxxQP^@*@n{*kbWY5AdieaOe~4%!y_>oMIJ1%Hl9uF?1qcBOPsjR4 z4M9ape|Qptx8yewlQkYUK00bHWig&FDwJPXgG6%vQ>uXe;9Vq$3N(YL7lcBN{e?zgc zH44FonIK^x3n$L7SVaBI=ZjsDBvNV%5Ll~av)FN*F#fxEFrd3!dg^xtuZOX<(qqrj z#9;h_2CV&fj}h{r-y{mR!^0tO;(su&$nVOhZSUdkd=HcS9zaMQB+(NQ(0$J>PFmRe zaldS!=7OzIui%%vPp(sV20TNawW!?IPG~kRG(nA@#OB9I;o+U?7X~_Y;^sW;&IUVJWzgnUBlS)?Z}oc@bhly%2um>{q$t z#uSzEO-&{N=0OtIZ$!8@v%_xemVn0~9eqRpJt~r)>jfJ?k6r-gryz_lc+qkM`DbC5 zdR8E`ooRfM5M?Ho>2g#g@BzqY%pZMXh>S!QwfL0)&}{gTl|lOw$Qa{KRoK&q@Py0C z1?3YLb%necZKqu=z6kURV2=U(_b3a~|7i$c=hp$mj$QsxCgtR(w30J_2?rB2G;}OX z1I1~1xx?fXv@}$-lynT;g%w#TIThJox7JPGgKwWIiqj*_klYlbNtErOXN9okY4kM^ zRj}TqVEslr`c$&sv?&t~tak4ncfCN14@A$OALTF8Sp2{AMD5LurjKsVM0Cr$pV_40 zW}XLF06N_9g`YyvFl+wkV1^f1GnhZnX>G(?S5H5(8}VESHjR=8pHI%)xn-+P{{2u_ zdHFMO0Z<&Y!01F$(xwC&j1}3)xLoWoMYD8EGentmb$Ycfx~L6JyY6%h-it(}K(RHE zpuh?6?>exF=W@#|Z}bW9|J4cLG_juVE8%cRkD;R!f{KF*cl{Rkb{FMZ-UEp$-i_dN zd5ghJC)d)DS_*AIcxzyZ1jRqMjM(+`al2tV%#(YTF!dQYHH^C)1fo18Q#P5gSt&Jc zA`e}z#a%&oxc%j4f~+VmX7r!$)keYRohtiZ>%?O9mNbK`th@Wg_GIVRmW$m@Gc$aq z*0IP9WiqpEMU@<2?@0^$!LAWZm& z5H4kKD@->NL#wmirr@r5AE2wK>r!2f#3bEwS0RQeY~C<6oqkMVcKI;MS1e_?ZYcao zPX$p^E0Fn z_DdaS5{)qrED8BwvK@0^mfDDh*V*O-m+w1hYh7|q`)%59d3(L26MXPq!moTDYw(8z z=c&JUtXGcuWHIsvbXI$0$7;veAn zZKA0MGsU}|<`4E@Ff)9w@D*1(Pz50+2W3T*cOtduTy60u~0MakJYS7(bbPE71 z8B;7D6%fH(gBIZm#5M5piCpRD9z(Mim)o0b|D=HXL`Mm_p2?_i-;fUQ{|-2xV+`^* zoHG9&yCc*7nBIdofECu`krARVQGY6 zgU_I5`X;T+Wl!Z)$l6{%jMSl|Dd8V4=|sQ+-bNn~J|%5R{^=W003f!l3)19wjB>Or zQv{a(aNf8ow`n@pzxpCAZ+*UvhX%imJEPq6Lcwp-rB*U`RHEM|lcw3mfY6ZRQM^Fi(+hAx18*u|R1YL91my1TSyjV-Y z;vUThTDfAz_-IN)*(jz{^?>k;n;|#8rAcxb)orXw>_2~qzyLhTs`iGx>t!WP5Y&HMnN2O6cK6vhI!^FW^=}O*2wEDFZf^Fx zdv_>Gc#2Z~`cQN!in4H)CKg5p82y!hQvBu9Qy=&+)LWV*{}6G1o07BqF*BsDt{& zEAY%tn^EMq>(oAA*|Pg=!oh8+trF|KR^xBervGW@`0@Af^vUO?W0wwLYmNfK71y|T z%&(Rjd%Vy_#`3Q81=l+7GyEir;_yf>k-k%9W#75`4nWdIFG4}gNgBX~*tp5|SZi2z z`+U(tWP9Q@kE4Op#Y>SkWYsd=$rBzL`ZXVDD&+mUom)y$Uau~pKT=w$8^zDB7*T8p z)k5lb*oSW)CMK7>F%S@-+++X&48X>th4vc=Rgk39XblU0zaWWc zL&UWsUT~1z<*)!4H5i9gGE?eb1@6Dv-qRk3lqBDU(yWC1a_u; zrRKeUA{7Y_=*F#HpqUy9Ej!${Fx*bJL0pt6U2yG)q+i+&Jd)9EMp`$Ekit$v*EdA< z1^~tZ9I4|iaSa=ia%NI=+`phmDh`S?Vz5(W^DRzAd0_!gL)WlrP`Vh)fuV+V5THbm zNIT_qr3vi!YTS$`h}MJSbNJfo7Z)Fgp+$GAZ7s7^Xy|@itS;47TTUX`HsxjsVZ2K=AQS z#d~Q?WLw$p@td)IEJ?5ER@(6&h<7qj{wT8_rr*M%$)_kUF2RN_w37D(=Qa%Lfjg=` zBYs=_W+5(pb0hLdbxVSM@9E8}+ZOcPfQG~QwYl3YdQoSTfjAPDpmz&5)#nNavue5rPEz4>t6ICJwuhR@ZXP$ja-=W!07 z^f_C=5?L0B|M^X9cJHFk++*A`eC_2Qk!A}961dbi=dz43HOewP%DEFGf$(^}Jwd=1 zXJ=NCaaBKyv)Sr%F-ewo2U`f6@h9a0*`zBTv$ebczGL0@q7OUjBv`)Hgp>rIYDz}K z{3zeIvjJ>aML_k#c)Quq%;S!A3cmy6uMf; z;1kv_9)-e(3W@TA3pl{qi8D*Z5wxq^gj_2{*JO2aUN(68jS~Ww^9Q8)=VzBhcF#W! zs6g?Qa$^UX1He~f5|a)|x=h>UKt2OneKF7MRBAIX#aHu@5N7UZ=aBc+V&n0H@!8RN zj`>zG=dqdp;C8Rd`rEwK8jj2JUz5FYYm4UMjPqfE0!M)?p=4tUbGe--Ezddudt6{| zZVeH8%?$y_>6N7!-FF$a$jq!RtGV+Gx9?5*Vf*fiD*`_MlhN_W{YrQ{R}*m_>{ zQ#D|k+FFXW$MTb~p&qO7?o~F7RySx}LfO~dqC8aCGO8&=CBMfefdd#t!9R*WBAPlM z>UM4X?TihFtLF4Pn?fu$Oc`8lA!YapzZ^wK#=NVphcUTL)58$D@?lMBEJp#n zmTUTW)_{HoU#XFKN&v5>K>lgTs%Vz70NV!RL7qF4Av2gw=EFoelSKvLEg^zb~0lK6r%^f0}= zqxPqdTTn#mvTCc64seNVhB5$r+81G|5snAv!yDm?e$dy=`5SJKwchl9Xa1*Cp*Rl< zFo`VRn?|d#US{-t-&@1pc*p8#jN?Ao4dPe@h1@saPfO#-=ARs_+5> zyUCJg0vt0%0!26C`U3xv{=hz^2q~uj{nFMxvTnn9>EsaL7*a!Ud9%1_CpPRvz~M)l z&Snj;A?SL&B9nrd2Wnow%4gL=f0P9wV|eh}>p}DrUZ}ueKw805tO#)B0#_^wG-SMK zv|<6dV1JiY?87U^777{UanmH>E?AAo#TXDC^bHl;zPCI`4 za>sFLwF@Gz0bynfN52kp+y|(sAZ(M4_a;t zAk(9P4iSjHzk!Zo^2%rer}U|6asGdU^Fdgmr1i!4JuTaFD^N)T657( zP6_EXDW$((d-|j6EpNT-LuR*E>8Q5>lLvR$c@}>@lyTr1tb#!W%W@K+q@6(rRziG* z3N!6`^)&TNV_?DkBC&0^?zIQaZyEAwB#=6pS3^;C>LazNFQ(~uA1xbu*zD7hs#9= z0HOdSZ)BiO`QvlOtswJOttPw=VFpZ24hJ_x19I>ia8Qz|n$k=J>`>m=0UMzfyQzddzB! zjxi}B<|!C243gQR+&GYuXv|6LeGY#G%wjhDOqh+^AAfS06}j#F>~Q>nor~INGy3Hq z$%E0rUWe@9#{Nt=1FFKu#&A~xx+CU^&QqX;!rh%C&d5O27M9t2Nf~&ML`oZifpdj*3z-Yz(bwA$ zV+y^*F7;9fh?>truUP|13`L*VdFW#q)(hXyhu6Q4cIXkUxO>8}P;R=C?m^p3#cXqB zbSt>lY6xjpEVk}|ZH+C8lEbuh8Ba~7T zL@sl& z0=e`Hqunv|)?DOw*WXE=H?$G|c&`6P2c!Y-MH*NP_;#sagU<7Ok78Q`q3I<#(7AbVfcsA|b@d}S}$X?>s7+`xI@41Vh2G5~GU?IEo7TJ;FOG<$IbXv|$< z8sdT*f^BC&l$z&$2fPf{+r0DY-0Or0;FMTYL!0;6FV!V~xtb4~>}65WHG9~xEvh(p z>{@kqQOLYQ9IbB#7~gbhSBIAUuYrVP&Vj0QGjR!e0e&~84(#&m`jM^tU?bT#Nia`& zs(YnTZ-S;`0J>M03X-xf{A-Ie-KIg8*G_H2pR~QLzHZQ^gx^3F!szdNPGa(!e3Tup z<1N3xn_qrOmkf!Dv}wYIRDu{MbbXWRtMMHR){A{Bp6}-d8xaPPch+&j_06r^CTBFLx zC_FIQOhs!8Bhrh<)4pxphcS`w*ym%-NtDkLj>t=ny#i7HnUXzYZze7C)jh}ME5&*E9Zb4y%t6c{Ws%^r z-gd!1%dMH8k%CL4n&EywoSMgjrfj6RZRj+{*sHUj??ZGM6pLaX^c}pdJY6nw+xW5& zhhOj*b?*4|K9#*dIw*S|zpAp3kB~w<4H9dY8s^zhcJaC{Q|U#0ZTfQ_53oqsv*(+4 zI+hJGj}p>{V^_@^M3sFWjytl&hjws>3+(^O*{sM)0LTu&sm(=~By!b}P=Lpx)NL!t z-5;Sg%P-wlKl#O9UKuqE9ggoG=BF|$+qSioJxQ;=UY-;teu$6<5%|JNG%V#;j|6{~ zvGtyCo>A(IXB((@J`8Vp`x#L+oo+`p@9RQXaU?GIw|lK60-S7~(eDUzwg$OL#2HO zq(0|s``f?v-A3&Ga{vrcx#9|*as}!^00Rau*8+Pgulb*TA8&&C@7@EQ_D%o< zQMr#<@su|o_b_1a!A$VyY{A>1Yx4Psbib^(FT9N^bZ_W`Lp?6D);Y5{YL&5dwq!r0fW1w?H+Q` z!OnxYYd7V6J=AibjLrZQQ};7r5CzxcTY2`54<5WtzTDdD@Ug?yCC&3A-7ow@Ahf4D zZY%%<*WE|dL6pmEH~Jy zv>3dyWM9d&XJ=p4Rf@mEBwf(OQPGIJTK5{oRlocK994PRy_m|?PeqqbNg@>k{XD6} zmYWi%+3Z?Vp%g^MW*X8?AyUxa{Ed#=$Px@!d0+f6mG_-#r=HJUTx>uO-uJ6yXkI(L zeh0p0^OkXZgaRB__p|Y$>i$8bxb16K!ofuDxX5qfRMQ7uQ|uq_fAq*0y0WDS6xZE3 z%A&eFNE)w?$Ii4K)Tpc1(`&&xybBIY=^n}jcbxY<1Ps;gX#TCuS=a%rR0yt?1}Y9V z_x0?&Quh2@#zX~ZkYQoSIAyL=`P}*LzW>*q0}R#Z_i|Lb^BJvnaUSI&aVQ4kTa$j~ z^7-o;a?g7{H@7;YG~L&+|3AMF0D7r~V}85H#oFEU0xx6US89PD*v3Iv4mAW^!LIZZ z$X3qza7;_=*_y$jxfIH?=`ke_`Td{IJwN`+E+0Qiyv(w8Z!g#|_tOW5S?&NsDhxBC zpqVOA*1*Zo3~*HJGFBRhl#vJ>SA3(f!;hqYxtD+MSP@2yoWQE$0CK8&Bg%HWC&!A} z#ZGB|PV8?_W{)pE`^^^m?U(eyF}eq@oBPU+REf$vK9ny5<7C9@cc>rfU0Ck|0N!~e zC0U1UVv{=MtSKBvv&a!O9|VUKR5GQ);(gG=eZXxTK%T4oG<`$@G@sOTS6dQVF78#x z_4JFSeQeul3;__4lP4*SB+V@9!FTYm52?_(An+%kIZ@dt?J%mcnNNYznW?)`{Rd)nlW0qO?@wdzBbDr9^* zMaU(d*jeMixCSYX@EMI1yv*^JkLG)guhZ@HusRNM(@qR+U2KQp<8^UImk|bFH}I z{6v4ctGnfLanHA_u5KY}+S`azp zPSfik?*tA*lk*SXsY$n=J{3DnIC20vmyF|~7s-BI53rKL6mb2I-mkJnFU=bH`ywF=vr!| zcV?D0?!3rd^G8jk^1t^y3dY9nG3f>=<2z9kpcN1kLV#X!zi|JYa-21o?)Yo?Yde4EipxBX_9`m(6LWkJ zs&zP{RMJHNx3DS}2V&HI6{xxB)u$p49Lc7@?v zABvu`S+)WU$xT)DaBQj;2R!(p(X(;7E;`?Q(#sl~lU=kn_-9Ija-5Q{02IkhmEN#i z7i7(AA9nuhk_YEIpPi5Wq!uZ7=Ch(u>bpJR0|d)WadeRE3K=u=%iR`)gQJc$=H+kd z=;e~JeO+lTrr#%1egGWF?c3Pk*wtja@Zgu|ILT?+)?UA#t<~{d{C}$e z6w7Z!@vp1|tOt$<@0p<54^Bfzef2sO9cs8rWk-L-HR-8z>i#y&OdSl%?OUZ-t_u=# z@g%1v?E#^|aqlImqJyAy!ZM$b$9@0YcFLd6#=FgB02HEw z1YS#0_BYmG^jh54K!S!NnWIF!;=-u(ZZ-Kb61Z2xt;37!7(CZ?Hh#H;(b zKK$@!PmIE_7t^uak<*-8ir0My$btXQN8Y3py14?GKLCqV&3E)27wxbmjpGSALs;9y z8Y4W5*2W@zzOkNf+fOp~ouJzs|EQ|+mR6Fs@$0$a)zpX;GF*ID)S#}kc@j`--UWA# z*5qD!_Jpn!mna>a2Wb78d!s?!Fw|WDUix(et7rRgTo{JWEG1~_qVPkY?7DjKZZq~$ z%*+3OIS#-^tzH_~+dc1QSViO?`1sLU2)h51&jtIqpf3~M?(Mg#!B2`=b9!#e(fN>+ zu>3C1TdS*x?3-D>Z4!@^V(64s#RI#`xp`yGw)N$o|GTmCzD-BI|F)A)s6+d?Y8)da zLccWUA&tP&N&)_+`VN+}oNeWo<-i(-*L=L*~ya4hf!P4HSx%&U_Xu!KI0O!ncb-Mdm-!i{U zOYhy++}g$T%yfEpEA>FhYeq5*qPY)?`H2&0*h{Y1X$(5>R>GU*=w9fNe3DW=jY9#>h z=-(@q?|sm{)f8HC%dHZ9xB2A4-A9KQR=I z^uFF>3^6u#9#)^m8J}jU+fM1&>w;R}{q|p9GgC`zGxr~dUa!qpcDpf!uM2^)V3m19 zb=Bu*H=HTeD?XKlTUI_Y?tFt@YbP3609@A{cJ>tA!?R8C_Vhjs4>oCtJwEk)mC)(D z?DFwBl-jYG4FOcq9aH;E86l61BlqU3gD1wuUn}%R?mz!G zO9D@4XHx(Gz!C!h00000@Gt-X3IG5AVo+;jA1f-iny#<9CMYW{#-^yGuBorlDl9C| zt+KMIx}K-1MAd#+N7J5wmA7&*hZyMd$vkwMTBvIRoiC-8r!uusCY>-mU+F#GP<{_g z(^Y%8iMkZHc4he^CxRR_7#o#E32UlGw0-X#i0c38<@)n>na}Gk0(zO{8QzCW!dKk_ zs_;!5mAv01|bgPm}=w!O${1#4G@rZ5K^*h%Ch&Ln_B8k zHu{>!+nOZ+R0B|zphOAC8(8b})j!@JD6w09YpLa6Nw%iHUKTIB zH#~CJvk9$c4OlN9uV{#$gJ?_i$H9(5X~=I}WTY-~?Foo%oAD;coGJ03Dv&SlREkw_ z^gc^yf*;#FP!>GzU;_Txg}_8?C-(rg@TrBEMqW*xZzd%-KIq8Ss2mSFSBfjO{Lh5u z(`iA->PHA(Z8f=Si0t`Du%xRmJ6R=lcVUPceRz++cOh6el2#TGBQ`kcoVy#0@IE`2 zYF#&DKZ`6ihlmP@qM!j>f}D?>Q0CE!>k+6^cE?jmWX~B0qHH@c(&t-432Pp?-?HoE z_T<+bj@c3_Dp!>d_glVR^LI1c80t{C8A}Nt4U~KUKDw1cE-oJ9RwreM+;W8LX}hj{ z(=0{c9;eSReaB|qTMXE>sT4O)e{*lYUx1pA`)Er(EItd0LNBM*YQ>S{@Z&E>U)9h_Way1XM=~JYHZs=toa%W?0{~P}xJpwGs&L%@A8x0* zDVRT6Ayf3%z7yVHZQ~qw8^_9+`tlbP*bbsvN!2m`(b_;EYJdc3wC@FNa-KtH8e;%< zxrI&+GhEy{0?eb4jUw~)Haq_A{;6F1nP(T16SrwWryEfFNk?NFRN z+o#3;`1#vIuE;u=T}jA`E1tfDb-Z8uG6m;t9NF!p=2qwQdX@m1>BU$_w+}y7fXXZ> zOtP`aKQO2;d-^5dF|c4c5FLPZj5_Fj8Pcr_v_6FdnmBGa-&sgO)Qe|+*9Z|Y8jSXV&N17@vQ8P8 z1jJ>$)F~ZK!I41bvc8>S%8ZZ7hW+15e~L%$;kH65HCyobw@8+OIe;qFVI!?l;#>coVsD@Rr z7cO(W7*2BVqD06MLi_xE>9pUj)k9 zN%3$Jx$RK!$i;+Em9ccbel`(cmPV+(zUJT57_v)FuX(IRJH?^H#rbovS07=q?4Lup z=jZ<`N*!u1|2`BQk8hL97^%e77Q*&sD68J>F4nY-wXg6!mlC=7;eBAK@02b2;jRe2 z8jdDLho^tOt*AgNxM*K>`_%8(f|3wEY#_KwxI3c=aHYBWr<4*{p#2rP0DGJFW1YA8 zf3RGK)cxOU*>F>$ZX0*Uh6^P-GAR+thYb5ZBVG~NRTy`L5W#XQzMZ7ph2{`8Gz55k zQLYq9Y+OlAYqw|2_lzM^>?TjF5_<~P?>360)hZ(4_&O;yNow}q|4?a=P50w3>oTdo z*Q}KHe+3ubdi4zUb4{=rJ!kQ0mQgzP4YQx}$WGJgbJesO7%QzlO@s-v!Nyc?JYT#z z5XPVm+XmBN99@0l4+q@P*!h5~)2s7~m%o2r4Ik5f{+V=-*db0RDLel&KH^tlMAS9W{Y2Kd%Bnr2!GfmQQcI z9ua!*6CmC}#ImvjcCIQ}w4{t8Bb*8Z<|_!D>hge`{dE_+LE}b6=EALbJ2mF95xSag zl}*8%8f}Toj19<`)>*&P4NBS=6Ln^q1iVL0ij1#M&Jp8AP(}~|Pu?^4k@L~nj-kt; zPy#rrMdx*L9j+~S_c9l-vN+D&{(GE)bI!&d^kKce&3!tc^8)?}7LcV~9QFG{-{Gug zZZX2`yj=PGqw9islgTIin69`QSa_v5|LH_$E7xcxT>BPSRDXXU%P+`M>b>#ne!t57 zS{m=kztEQRZwimIqpT#E;mfxvjK*-!V0~wA-tmUHz68nx0CfIC3BWbjiFjNMnSFMD zPZ-vQoz|{V!*6fC)i{&Ej&<7;_TLyNTE^lD06b+P*WV|jG}*DZDa1$g?KF`W7Ip|71qI>kzx zX0@dMpu5ilc3n;Les`Yjc=PvN>QmR-=XLfC$3qku<=|=0iWv6n+Ujhr^WTf8aPCt} zRbhJs0GIq6Q2`IW?<8?L6yzB0FvU<%5#(_$T5Vt}{_iCet%yjwG~+1sI9!R31ZH1o zX6)bSMc&?D#}LYVzhg2oBA%)sm$)G+aKh(aL_P)^lsc@uL`(rg^fE48o9jqg|JUh9 zRMz)s1prLZW2|%(JszV?>pxz89UBf~pue4)U+bgN7Lj@jx3|4+YpO^qAD+i14A;#` zxu$x&lr?|-_}3R>g`)|4a+2+%znL`1b()Pfh?)%3ATJQNUL!jdOx5{qW~g=_vbEOC z_cgU3xDe=%e+P#4KX=^boRszXZ_gt{rW+=mGyRwX+6gu;dvDiR=gS(ymr+RfmtUrH z?|#WvZ+VHPjAQ!uhqbTEi>I&MX=S_Vf3M^|^cQ<_PquQksLE7ao&MuKwfEuas4n_r7&jbRtH#YKHZJ{G%JAFL;y~Igri-C_EGCu`VifaUf12Ba)+K>BLN0#RlE_fAAB+lyY*X zZxvjJP$EmJu;CLsv^q>ZK|I_W>G7JzoWaQS;&pcN@lAfvArHn)9MKNx#zoEU;B|S~ z&c4g{xVeQ@2zZ^6NG|#T)wn*nmC!2Mb<>~2qbgXYEmA8$ka=zOXLDtc-B&FB&lWA6 zyNeAtIIomsr%&lhN}J*8d!cGfZmr#4)o~f^vu#GZ8~?Ie>#g$@7ve|=-iSmQ3ND=h zj-O49IauwAG+U>dT?d`Bb6-cY_iipn4ic_EvQ5Tv+l@=H6311eT#tV=ZZBgbUp9pa4#V`2)S_=q0>Ua56B?CrYoJn{w7 zU1in)JL@VrZ}Cyhi*)tjUE!ST)WFVpt>AK^pY8>1sqwH{;v?|FduQ>jZ+oNWD7@`Yx# z+rr}6#^ZgrT<-MN`|~+0Y?)4;`(`-|x&O24Uh4OJn7Z%#{ClcjviY((zgz$RU#$NB z|DT81_wENnLfSHT@mos(h*I9?x~+!et@d>MM|b-VnKgShuAi@=-(XsLb|$-iWjGo`+~AI7>3Y4^UerciR~EWZEYyDE#FR-noqqDH7nr zu!>q4^-~)SR21MahQ6}6N`26yK?QdjKx-qfo6}>WQiiQYas{~&&MvA>#yqOG58j5| z6Lz6Q+=aL;d0DNl{YDb4Ia>hQ0GZcG1Wq1=+zLnl`Ia;nPz{hNn=cJu$i^tGWQDj5 z5{O&|jL%d3?RURTq{+8L$>?mi^Jb(~OU|bRKFXHx(GKym{B00000@Gt-X3jhEBDJ01z9-peCov5@WDkmo?BPh0>pq;Fx zv9+(Vte~Etq@kT&xiuKZul+DxvXP>kxit*NuYYJd$%5>I;M5rv9JRh_o+d0o@!j59 zPa7da{(tyg{=3Xm{}6sG@2KbTU(YnzH-b?kd)li4GKT4|Bkm$mNEa{$Oq&NtZ;oCk zl~5wa&-IZdQHZai{k0^^w97gLMSUzRx&ayuLwUvCeDG zRe8ch15A9(3-9h{{*yq}`+Z3srgr!=^lP8(oB2Q4uaXz>Xn1JYaK$y}ZvP%@Zvq6O z6}R1y^@Q$&Tn2?&VOc2A6{HsjnPwUUOrdUs;DhnPLF-r@Po6MidJb2hr0_M=@GRxF zQ~OPHNRGlKSFD3CPv^MjPa_an=bi+oj#)Sn{>U{VjEGTFKQ+M_m0F&7xRE z_BC8bk~|gnbBm+aD*uED3^10-*!{hN`<&FM{?7gMcFNU35s4)k%QNEro82$njA8X? zPrrLYMPw;GhGst}5Cd^bCK+(k3euHHMJNyG4ZbJeA;(c(@x+4uAmQ!7GJd~*?DyYZ z2`iKBFp@dMrw%uAJNViGQJee6%NG%GG=}x*ORx^*;6(%;$xTc~T>pVJ-)3d!My|#t zdhHLxY8pjg+1GXUjm{`6Hm>yi6DFhp5C1z-wtPduc{b6cGb(PquzF!%w)}ZOsdOa$ zrF!0uX1y^!+p5pZT6AL!OL8tbL$cx!3D9}mvU?_{Be_d|O{X_?35u2h2%wdZ* z$Igwqf7R#&=u9#kj*p1G)e(I7HI9c-jm`=et2sp)D+8whzRB&{q+c7sdC>19B) zpN9~HNLT=9rTc7allWlwWs(gDZKArknRe5ATf50{_V?w%-+^u{kDJa7&OB?b*3mEz zLddEC3|5TK$aTzN!DnSTeoepv9M7-dCKX@MP>%W=z8A0R&2vfiAbr~DJ%GH>#axIZW!@gvlv*G|O(;qzE zVEUC=PY?V6E|VE|KJoq?OGj!`Cl4w7E@8A{gFcUkIsgRIugvjhh<=6F>wzD@dR^ec z6BEPRUx=735+XgzqGxN|K<2&v01V5OLb_PiV{riIgCBPwH~7-WJ}^dQ&p}akbA4#j z%|AWK&eXNW|mUvgyf06gvQC3^Rp>i^WV8vTz`S8Ijc8AR1p{7p4o zjZYMNNMek^gWkn`2|+wue^lX+ef>;5rTO;bdHZ0C3;L+d02FaSEN`z?Rpp=5DwvD7 zM3&oYP)qBtHDbj2{(7}Gmc%ZOP7+-g-Uu5cU3U_Da(e7klg}QFU3iqFSvq#Xr z8^qGhJi8U%xm6I3UIcMlT8}f8S_{GGCE;zE71s>!X9c4_9SM_whXJ(cv!|Z{Z2?

aeS20JSKQoceidgx*%G^t&BqT&0h|Zu+<;~$kZJ&CrGJd`Cc=RtUwo;k7B~Zq z08Cz(SOt25)CLAOZtTuan0B$z3dZeE9cb;YL$f!Q=mwTj)^Jl~b68J1L*+(R9C@U2 z43+5&Ys;H1>l@ksS-!d@1zcjo_|k+FIsca)3~99nP=bh-pXAq<6VZ^OP}x(`l?-3|PCKoJb;MLn3(MSZ>xPzdqqB;n!E; zAHXd(V&&2OgVzPDg8<&R&GRgNk+^lESJlm_mee%9VY;tesPF#0&=GbeMK$~XjP|NA zuJL!LzY{q0kvGeY#BkK}Et!MS-G~8CaX194n6*)f^d-e0T!J9*a|}jy8naId1c4G_ zN(kweq%I<(6ahf9;LC*X!Ew(jJq^1NzPR5n>$$k$?TGJQ&+7)mJ)q|p3@!n8QecMXas(l4FLte`0yid*53a!Ye5FO`SG7d zk^6HA2o7E=zP!93Z9vl}kzj~Xm$;#aog}?k>OYN!kud*xzuU|gflwr|j;2WJFvSLF zWF21aR)>%;or46ZjPo&SCLh>WhYmCdc*ItTI+&!(fp}Om^mG?v!|C(>X;$LxHX|0n zC*{Zt&q4f|z0{DHffd%Z`2$x(PLMWXQ7BUUB(w||dc9Xf8{_^s{ zlYiN_>G+Q>t>;XTAKkre9WGY zIspJAWdi!~vtl-7^)>6UA1hqk?#UYZ`;VewuUZswU76WCNeKZI>gr5_|M~RqqyC&Q zlP@n(a#&drzR6XkP7Fl6S@KFbd;cg`5hj%r^JdASU2-qs^WhZ*v>Prwd z>lvL^Ulj!>(y&YSO7{g70ssLhQN+Z39jgIA26F1=aZ^3`Quapc6keAma^AC1IN{Ps`qkjLNI z#aAjoj0{P7st-i6A|U_`VH~1NAV4dGuv8$;KO#wstertm@ND{q&ZR;P;NkEjO@b#w zI2!OfIQ;WUirkxd&C6l@A^1pyabUgcuEXOO4sV4Lk$@hz$10y^KjuC!!ijNUxe4Da zUYZ3yMvR586tnRX2QEUjn3=@Y;z_OKb70}RzJ-eQMy+!7Li9w`nEbuA=e>h*^R14ts3c+f6mB~=tcf!5tKvZT*7X}P`L zkbsUzh1st`9=Xk;N1XTe))v-qU;*B#C7_58jjvv39nv00!4&JX?Zg&iPsGPp#1p7N z8kMRx|NlBQKs+9HrqF1Jc!Xt`0^h!1m1pJS6WW3gI6yg(uV-+YO!KO@lw zWS^Jg`~5}jaG+}UktDXzcjNQ!Gwz7D?)zK-&2PZptakqG<`4~y%C31oCAR$rN)BZk zCW4akws2^Tb)KKusRf3mB>Svg$o*pa<+XO!#rXe*hu0N+zW{y;rWnV!i9rGDsTcqq z9THQ;X)${S$k_qxwWwO1{!0>wnq3BTKDOi0>Q;mK_>&he%tk^+EY&#}_90~fkl@p# zmv7;LouLNjr4iyM`8@VCl)-P|5f5cvjjP6+>=*`EYsCDXo$s%!G#l>0DL(bOQ{K-T zrvDhJ9^GnQu}U#jU4EON5XHN5d5=k8b?o2hlw;T#Q&8jaW8!9Sa0(s^7KT=G$Izp1 zh8sH;nk8)}j^%XvEbzjY#3rPL{nM9BA_1b7uWz)@_cyAWd1&;{7LwFljeio3;Q8xGbL8GFsRj z&Q6+fTA;3rKnf_Ck*R3mt`RvJ4%z9Y1#E z^%Flk)ofxG$MhYsN#n7tsz+ujG^pW=ZKI))U<-{VS9^ysvT*#ScWc_<2e7X%fnc)a;7Wh`Ul0ST_DBp6 z9UhHHkz2k-I~hjH%COr&=U|@+u&%&Y03tdVp#&ymxx_mWD2c>kFT!r`ZjDKZVa@l} z#8>!&`-fE&V);MKf@tak#J5(w(B*|^`L3s>!M zk@F(cux5cT|8V)|^ot9*jYD&XHx(Gz{CRp00000@Gt-X3;+NCTcYj4C#kNmudJ`Ct*yl+C?YX1 zEiEX{x5K{CCnhE)BPlH~EGjK5E4{3%e!A5d40#b4K5?-hZe~^hBH49E@iE9sxPAkS z7#{(=NZe6_+SE_~iDcn&*ANiktoXi3Z_?}k&E-Y9B&VmnMS5w#VI_;QuMMPZM5|w% ztP-Fe00bo@4EX*Hf06+04(}T?GS~;B(&dP5lI4JO&`EM#LFe5_k3;TQtocBIln9AR!7>d#$#6vs;O_( zU5C>#lzq>+Ow1oiZ{pWAGHMu%`yJJ4!s5waZ=<9PC*EZqp;u`=A47q);*?qB=5!up zaf1jx%GH?I#rB~1ZCzYt32|puGQMsvCUJW$oj8>^iCtc(i=36>`RQq*k-_V0dC^&E zJoCENk^VhyUF$0uZ~p)9Fc|Cp=xo4+b%5RLf_IOBnB5g<2-m^)P`_m;NHeHljkg<= z-pdMDg;UStZrrz#U+yCJ*gHx8#9Ns1(GMq@e4jL$@%DDep4!ujhtO>y(@k>Zk`~jA2Ese5lbXH!T2uxdjLgb1_M`*R{BA1*2JMh$6o@)L~tEIf-{y zd~ji2CyF>LVwUi?8y3Y%8J!*gxF>c5g@E zZ+CCIA5KJrsYakb2uLd2Qi378jenL~FRFwHu&`M4O{wpqLqe6%&kgFz%5MHcWjqfa z*#8f+)6cF5^?_Y-iyzWh({uNz-HB}76AU4g%0=OvT-b` zYd(9-UlXh`j}Tg~xvZ>&0qGkBR=+lIX2G zx6~2#Rt%gHBxRkYc1~o-HDo;>PwD2+d}-_4JeL_Jm$Od z$s7+#qq$BPBf)eW2{?JNDxglEQX`>@xA?%;F1*n2`O>yq9E1nc0E(%%^Ob0Xc?5X=8gRBC>o`Nl z5ec$tU=zrKO0Zs8rUWTK6*MG2ce)w><}EnoFx_zWgBe8ya%cpO`>I@K$GzRdxAT|N zb(}nW@KFb$2{K*-f!iU;*>=a~^BpBxGB6mw4Pz|fFAIeX#z_EPs-;wh@o}EyDkoyo zS)AI%G^X1T$MUEiO4(WDgFzzU;RJ9ltP*)S8)>?;FoWw?pEr;Tf@4BOnT}LfI)agp zCQtV>QyxnOEb#aJBOs&5w6MGeKKRH3p^Sh$9bIY=1+d2+&3P>e8W7t8jpWQvV{i5& z+JNhF+i#`GhvOYD(!2huHGY?KY(%C82*}IAlt>nFdV?cjqu9;X_oN?=O3 zSYZ?ce!7*EhKptV2U!u*sy9-sIKahijgi zAHC=oSN6LbuCEijzq`-vcARr6lk-`bD1FNF-Y$;$yWZ4h+T+!UWog?THKphpN+mYg;KfjwD=qJSI^h=>IEAAf;jp&o90uDa6#wO1=Geh zBpUUy*~l?8&I2^d?fdE~deqiwd3-rJU(T~sn2`iENod&5*R zb>i(6Xm!^N(Sn3WuncEy1x!(MoL`!ZN2RjAtrG!)!N%yA$g!up4qb@THmmdJ?e_RN zalc0_?*8-Z_>cWgy*)J7t^`L>?~G=iKKyH3+ATqN2=v!e=660$dQhcVD*E&GlO|{W znXE709`O5jdJ;s{MT|tzV_ImQoUH9(li~^Ji*x#%7L$}G!m|~BlXJ# z*g63`-$l$+Q)hCSk5^x=xgw1c7_KSod4oD|JBi&B@%d;p%6n@@$8m2lHalbiJln21 zQeB1c(35lr)54=o_#z?S74iw&ZRE#9abF zfG;dF$26HR9Z4aIsE(u|6K*hF(u!;a5c2TD>Y19t_x{R!}gm#`M+M7#%OD9i2YPUSJT4XRO+-r_8a(&BM=R`jVxe@{Z zqyqe2ryh7Tbomt9u;Sjb8kxJ<#SXlLrQAWM6d7{8aCee?%!V7VCW_bCr~W!;R-B8l z@LDGE?~#MQHeTtKWWMVKS)PBaiBoC3&aR=^Vs24)Zh0XqzfKIL@mwGH!J!qev?|=h z|Ly!w=G}1Zm2pR!PF&B`Y|-Bh@Z(_E&kuhTm;H6Dt81e$AC`Xo^AJJ(#N3#!Kq2?*F&Ri*_FaO7=P2Wa|l@r4vJGO7s zT~y_%%VCTKY&C&z!e(DpEjnNjKL^EqHNlc9zU9;-}$K|Isx+|EEol+{m+J9VVyaEt((S5 zR5f3|C>dSVC@~_`9L0fd!gj>hktNXZ?o?dg`vBJI^*Vpe4aChOh18zQg=J=)A2`JZ zF?271RZely)5#uL+;sWJ+1~r@?*W`zt@JGZ-&U44_Z?fEWv}D3$EFW};k}{m+Fxe=sZnp8n#@8b z^NZ8nX1)r^gk!p?kqJ2iZlnysmM4kt zwcP3J7-U8Zbvy?t!Vp+xOp1y0jIE9v;I7f>y0-#6)m?SMAu8`{_YeXIv>s1zYF&se zw~i@MCtOPyzkhyNJ#X_n-@;_rXP-5LgiYyZ<&hhx?Bd%xSAZfFRu z`0fh@JX81j%a7>pBcO)?gDYRbx8FhJ!U!h06=t(u7#sW<0#nxeeFa3-U439N?S73O z=-~XiXZUccR!a+&X}&3TQRM0RIcHggG&#HvJk{OFNKsvX44U}x=g{s33|=pc9&flg zQKybh_f5?Q(#}Cd*IgaqQFZ5Wy=w0)U;_r9KHVt%x{Vm!79=S)VXjkuRs*@Qj_VNs zG}m1nxR}bDWadjR-W8#R0RaQO7V_gSuKQlbWF+l!9vsj8Zld<5PQK^k2OQPS`RHTX z)Q=uev=q3X^MIQN`Sf4PqY+$nw*5nOnf2;xd+g9zSnD!ICk=D?0xZ)_ef1G_M8&Pwg0=<08G>4wfcx!t(46A>h};y0ES>* z!WEWnG{IIzG$xbXd@{Ft%a_L$|A-$<+hazPTsL)MGgZGm3`u|>f#sf7>jL*o0ZW?n zsa}Zq>4&v)d>xnfYtL&0Jk?Eo$uf0EuGgl&xw;$?SR8{fE1iFIGnaE}q@aqZ^<@<5 zy5-{Dk@tKAWYwbD$CKNtk>|*T1(@XI%MzU;e*`Sg_66^f%`z~+Br+d#OLWD&>lBmorK5@U`4brB}`w&N0vfp zM+j>(X*oK*$ufZijtAZj9-o(Emr&7;W}~tElW6+=!M?A}ytZz#0xJd>lmUFrZZJ%! ztp7kU39(uxbpi+*y-eAq4gd%xAPVFv1+T^sAcWnYL#A%P+yCXAllkd?bZ)22>#_=> zNM-hfgUodZheg`wNEcZTzxOi zdLMGfQgwAq1P;ZuXmye^Nyr50yQQ(k7WqkA&Z!Yy_3qKK-%By83&y=q_jE8pEdQ+l zLOdu|U~{VNhJUO)PytkBi3(+aQbf5bHBxN=q4CDe7OV-PAc_i_KQodzy5Tpe;p6{s z%sh_MfA`ME;Z5C{4os54-3P7}BRlF-?=84!lOZp zN?cQmtq;^LQ?F7>Vk>^dUTNqV%es>Kt{d6|?5Yx0pUM+{act=zZ*>k$30wbsG_uL) zd2ihvMR#Wnx!Xk32yK%zu@it5fT^Jzr_+l@t&#~tj9kjiHilEj`ma)A>LAst2v+X1 z8UP_hCtV=`B=>nN@5i(2Q1O2CzyGGZ{5u+Dzxyy0rU#@UtcWLyQ~Oo5M&l^sNFn6! zBD?aXem~+y?neMmXJ=CY0Kgsu000000PrvX01W^D0HLTEcOj{?wXw6Vv8=1AtDmc@ zvL`1gA}A&jc1C?FRYQtAvlQ!PgC< z#lz|4cHg~Fo{WSrKwWl0y=Ok;4(a%Q0Eox&NA`8nPTK8zsGQjDPuYCJQ-9?4uvIEO zxj=B!3OKTi&&JTb)wUg?nz#$&)og{>uCZ*4>JOIy{<$qU&`@CIaSy*@4NA!>)zGaL z%39ak<0Px-YB9t<*q}4OA+=UYFXQI zGBy(Xv)+0T1>iQQkzU@N_kzk`klNT?V<`kK5s8*wP7?%>X-x!Z16VNv$Q`X4=?u^V zS@H9&+b~vV-gJ|njr`-a#FtZ>ovK#~#|;pP$AH02#uv5hlnx6a?hZ}6G-ezY0)Z^^a*FTjO9>M zBJaPJ8;bokwD~EWuRDF4r`KKnmsuKP4L4#`-Ot$(= z9q`tsS7{TFO&J|-K3zuv+>(4ckwwTJPk;7LtquqM8ckH+j@Ipc-#De2@A(Ru^%emu zaHmAg zR7o}Y_%tWq_YR5Csf8JB74?C%Q^E@*PFq`YWPn&CrZS*~aos=zLXu9<1+WyA-DIoAzD%x<_L8^zM$xR)}ZL;-&3 z#hB=QbG`0u6-;QKTOmMQS4X#RT2zGWgTWd30`91Qs&&OCO2_7};Eo!v=$Rwz%Flj3 zV=mb-ydPdmt3f3vozxx%hU` z9KEarH=_I_T&9SGwgclsLCmv606wWD1TN?HT5Jj&beUX1Y3K)r z{@{)wHryT1JFS(gkCL0*cfE-YfB@wf(gYY#fO7Bo@us2%et$N+n9}Q?@!|mm08Zt+`UoLt@drJ{;g$}G}-{SKuEt`U7xX)>a7F4 z*z@WrK6>vL%ppb_LNjUzQYbJG326x&4OvE5TOQp3(e3nUItn_*eaIk(^8<1~mUd@j z0Z4biX9^0R6&7DR9ZXXw-bA!#%@3@1vuB6yYp$8y(6aU-QdTgZYu=pS6j{xeABGy)x<&3!MK1iejM2f?TiCf) zTq%g@)AGsB6_vMlA9Wk_(pl@~Q{^*x{%9XxeR<*Z{LHmDT${c(O$G9K|=YNLjg zN5I7z)avB#1^&o|Or~xA)bob`x=1b%KK*j!+-eDq z+KaEkiDU1CC=?vISl6d%N*9C~Mo;>E-Rlg`4(4jbceJVOCT9Ijdh6`98yEUw9?|t# z8~48@uSw&8Q~mbpiR~-gVGNLN4qYt)p$h+4hjar#Vkq-v6|NP4oqLo7z+gDG4{p$G zHZG#D;d;h%z1y+Mu~dk+kBA#W=@u)Y9j1k>kzKGz@5+kd@IT~nFbhE+9?3OA)VlUr z_OOno$XR>jVj1JxpZ%36W_w?JUThk&O z+zd5Qn(*{G3SpRQU1E@{;eDf^F6gMrtz9jvZR==;wD0D+aCmf9_a$LN?C-|#cz0im zm>~#O20|n|$|tF_{9>EVZJ_()ItcIvU}18oihwp3DsqQ^{k(W@=C&RyO*)oO8ky;{ zcZeiZ<<^brZM%nJUMkQbMj(!@fEdAw9?4~HELZk$qe(^=$z^dY=J3>W%Z4>ka{tCT zjQ)h6; zlU&`G(zl26*0p0fM#)!U3%dT-7;IW8t(J*CKJmiyuD8FZH$A%Tr{8Uf@g8*59(-DV zLFIUQ|N76`o7s8jbo%gRqf(t3*f3~E!h!a57v$)Gz$CloHXIjD4FKpxP7weV3}!i# z$sG|zUF}`Oc1F2D^Xzf+XX%gqyj|sNS9FTx*OMlOie2U|MK;N+Igx<<)PN>w{GlL3 zh$2?Wjb(h+cyaJnLYw58w(npg5rL#1Bvml4 zS77xHYn!x0JT+FA3n{R`hd8JH>o%v6pI#=wRBHoBDO23g$jjEs)u+j--uxY!SF zL`5k+@$GGUZH0`R7+|`(fhCqYT@pk91ku5-DAP&124DCqD$R;w+d|(=FMAPq`+v$HADo_ zFVc}9`UmH6!h@&zZH6x&E_Hn;3eg{=H>LBQcD;XmOIfBzMv(v%&mS@pM8Bv;Jv?aN zz_~|$A08^blC|2pmuP)5LlERF2^7)q!%=N8{Q_NbP37|6_sACZ;8o|Y^l4XEo#{5| z0H4wfNwJki1uV_)!|Whv?#cI?spkJ)3>F*?;$;nZe;GUO!41WE{8~$pe zEPKW^lT#zLTG)fvb-sHSIuU(cNvkX@Y$cNH+i=5%4I6D3X4_fy1U$`tag$~%u02Q{ zyjXLe@x#y!+B%i#>Q1}M{mp2X%TywLzR8D1U)Ve;jsE7t9z@ZNeK>mV=h=3$oG#)P z3G-lnpDdeg^y=z7;`8s<->;5dpzwct)#AoRA!f$!-vuPmlhKuz=gCQ$TJ!p8@it)z z2g9BW#L6R@dob#nS7rphjaROtXs z{i?G%btEVM0m=-o=^BUT!t>?-89=W9t;~<6`rll$e)n*dYkcsObT#|z?QM?!m!`|s z9O1S2#=sYe!{O{!5b?YHPTKVPgbC=pthc5{B1Yn z4y$9+P#s?Xk0+Nw)rPcEP4Ztpo&$QZ*Xm@@?0PBR!-A)1h_`~89YWKTL?jElpr3G}A z6^PVmvKo@4K?cBHbxy?x5SEap>^%UHV0aYD?ib<^g}hac+ZBGZ$+ERh-6Nf9zmwwa z2Hlu3#)>KB@-eJ9u3DSi197^ESk4h$gsE2-&q>@@v=+tg61jXPVVQjlYHb8IdiFvp z9mu2q@!Eh=vx~Z^Ymeo46>}DY{{UYrRPD42KD$aS961V?vNL`A*6%tFK#z{@i)%nq4?Nfio+|I#D)-WhF;mLTZ#s4!l#8X zoI{41SekcGhwIj1+FMpB4>cWwJ#TXYRM#CiGfh`h(WtfiPFOJnt#uU;iMuUy`*PYa zo*gstXMB+_yL7&_tN>Ki4OX10u1nL#>|#ww9gLyG3zcyK)ihV%zg|hx&-2gcJG1Y9 zYVDN+8p@>xQhNDdsJD;=IpZSuFS{g!(67JPypxu2frRUU^yhq!ez+*t4^7|97|WxR zob zBmk(YSv9_k^V6^Zx`o46T|j{74nN}U64O#o9Y-v%T#*=~>=c$jKyr5>^#DMV7~{$8 zp+om;TMnJzJGrBW4>hSuko-OV8>=-4R-W!izi5Ip$G-vkQ-0$DB-u(eey9Nc8cq@x z?K)e^R&P^FOepKMb~S}ocxk{hDwHF_hyOww;DH*9S{18>n?z^`5Df(ZApkF?_X`E# zY$Ca!Y>ABB)mo=M7>-98{vLzKKtSk9Zlad}K=b#6<}(1W1Zj!S_@kYSDuIyw{Cy!d zZwOpLt5jA1h_k<7SEVrkf@;(-nzNIQ$z|!)q>GkA*G*Nc)R^(RNGTy=MU3?6zvvXu z5IL&OAE3o=wACiZ6g+xI^Xti7VCOj)8QK>Bh(6Z2o~S9LejmXLo86h6(HGp zU7N##M3^uvcwD@A@&p(;_nr*{^K$ee{~MpRYHMS-GuhppeT&0Ptdy%H$|OlH5Zu3f zRV^4}yZ1{%;K7w@B>Aoh$Xr;Gq?LcDz>RJ7$o<09iz&aXyr!8~>{{l~EXHx(GKzjrL00000 z@Gt-X4gdfEgcflEAFZsUr>d~0u(>5BCnhB%Cn_(+u%M!+rmCo%sHv@^UMj{2=Duo7 z?j=AGl!gJvvR?+?>a$mf?Y@AUIF+ppffn2y09=WjtMWgCf2cui>PO+amcly-4a46a zL1J7J2m}ZeE4)K$U6-l}L_vT6Dl8CC*9ad(q@NE06=CI#I5AnzbmME|+jv=;0RW6L zgM2+dEj`6@jv(^KlrXMRz|L{nAOg?u$H?Rag8CZkA-f_<(5-mw4gPeR8^ zM{2M)v;aU40iH?*q}ZRKt?|YZwgjnTz=>kND7@9V29?0o0=TUQh_zV#Pye$yWQ1xY zBPFxa6sqcgfi0ZHQS8Qx=YOofA_gz7rQY740y2n!7To|khKv|~&_KP}fNt5bl(bnw z>H(8R`?a-)=}^u`f2WHm#T#q(MWbZAkAH*{{0^5e$taWL5yDn1rZRS>YOVzRQ;%UV zqM^0cf7}pyz5wou>#ILSY;N0V)8D}z06tnK6_zzF<-fjkKxvs&S=Od2P**y@jprW& zFyQe4P{Ev6@_!-Op7H=BddJpb9@;RMy0DfBLd0p(Os?bWHQ^mS^Mx5N9 zVG{pa^?=)P-Qoq{t_Sd{`v0YEfsZ~b!;a#&)(ik-$!0a|EP!2`LQYaeK~(@z-ABGg z$}s{n2vp*+7%p>+YgU+^PO*k{{~V4c!)Dvvvtn+25)a~(IO=Q17%IPLO7bXfncC5a zr?mDy=?D5h>a8j2CnJR=*N8<~QCgvDA@dcsJG8eYW`o3(00Wn?9YJeEzE2K-Np~M zH=TMkk1U409nytJEa`p%9RVNm+y<|0EhOhMTVhFK!D(gRyo7ouPZFsNK>dJxV*soW z4F6Cct*~ZF`(17|JI2|t#48w6dMicRh!cly4Ljd>tznQ>Pj*y<%X++a<7GuLy%ZvR zJ^Tadp+KXF@q|J^pnhcQ|1b|VH?EXV$y=#L_%daJWP8rh zk5-JS(tLU`t!DdQ-<(~7IF>Z`|{Bbhl=T!kpo-gKh*Yo zz0b{zDXmds@Ek5{jhJRn8J+k}H2CnPJ_&w`rlj82cwByb5Eg8D6;6*mxhp+1jC0Ya-f_$^qLd2Mui0vI{8mP}{=QEkZ>`GvTKWr%d6Xah1QJS?w7aEKp)<;zq zwvQB-Wc^x9K9`0lmV%~H&TVB{STVS)TJ_(54Z`rZjT|G#3SOF~ykF1wT;4vgK<1ZM zOmUBGiT_*y&XapsPEYOt0C!&iTA5l`^8e45K}>wrT56R0J*|uZ42Wl!8`f|c(Y9=E zgAoBx4?+}z2%ZZ3Oi`h`A}-Z3eGJmv3?UFe2^f_Tppl3SgVARisK7_qecSWdZgp?E zx!$4qx#B+?^ujjwHdxZY_g#utFTFa28;j2@I28W}?QwH~uP;{!UmIY>qyB1(iq-LG zMYdVR1onvrWO}dhy7Hd~K%`bB^y+!4%b#C3M6CV^0N}}29|2&aRbH!8`UA^qC3p@1 zAO!W&qhRABu>y&Cmq`6CbEDlAEiW(Z!y(1gXg`5Wwx-<<&e_4HCO{QLP9HJ{Sc^D3 zrw{+l4tMuU|HNabNq9FB-8BfnQF8zket<48;rC~!FOLmwGR9|;IS$~c6UK1W< z4rBU5v^#P7zmU!yo+IZzs+1&j*`4?4WVtqesrBmJ`!DDA;K*t$>tX7FUiP(oKZj+v zx8!~~16}^U^u< z)*{^re&-s>$|#eP?NR_-*FE^`^W360TL1KkZ+7=!zUNTSqTO`qoOK<(ZJm$DZeAa3 z)gAiD)bug5WXHq&=Xtq$koVG6Md5Kyy-@R~ZfxKD_mNKjVF66jttNh&ZmO!q=l^*z z0SgE7U-XC`r$wjyOp@NbU3E>2-5>dL`S(r*T-Bp2Zn9l*F_Y)Nb@&VdJOuTX=P!c$ zq@8PV;VEffzy96rcaVSbwN84idvuHX83qLUo@-Q*#2irh{6%tkKyv!!PxtoG=YY@B z`SUcaBVTKu8kzT#zXI^Qe@SAqumG*aH5c9dUxGbe&F5@4L-St`fCgCaE-L8gye=9a zeQ~L%;`6>xMZw#Ks2Vb=58P*L$3(z(2DNPcv-X(%)wIVze^_+fLP@3>S82}T{ zQeIJ^swh${q5ujSK!Lj9D9tq*#mwWZq0G@7kwl{c10h@auFixeT7!HS07bpO22!&FZ`tqXwl*B zT>!Y^4Ta=Cow6)qce26Frbf@+b;|5533Y=}dfXo_-|o$)ZMluxO+P;;reO_99O#U* zv_W|BPpzAcZ=fEZYlfhM(Ez4mKL9=`9~AgLrRVJjKGuEv?_uG!!(^MA{llT|7@0I0 zbfKssBXY~=T;QBY7?m;WlZbM%cT~}IFEGDCaj@5r1mf2(r#= zYW1}Alu0x{z%FWFaR$Iq@ro_u=_~+7Q!zqkqZSu;EZAbpn*4O8xU+7BNXZpV0*X(j z#{2jBdlEvjUem(?{U8?vRGH`xBk?jKX&U^f4w;kPS-BJSdAhZq((#tP<(ztbo4IE` zcA<0K6Gc?)GD@0$i)&#TH>!}w?=>s55v)H7;r8(X^7Fs~J}XWJ^tk3$$J%vHoGJ1e zE|OO*K(-hjy@G-B=Yw|eEx>I(pn{VU`*y+2vQMv}7GXI)X2#uz_F5v^kVeZNhM=um3!8+wrUV z{hZr>^v-33S^Q;0a1(Cm6?va>@mC~39&aPG`hv;HR*96po&oJ}@dKXPjY3g%AfdOd zYQX?OEVvs&DWHO4jn$!2mGJxkp&kQ119*~sWkmwurh*lp(exxkr_-z7-5}~G#f?3I zu)JhgUn*$@WE<@L3Z2TtB@n%1RKT}oIcPzg6;-x6efsyup`!o*p_;H@Y>EfUkZpQS z-{QV(c+r0UqH62VDYF@+q;sQ{B`NUwDfN54n?2A%!ibE8Wc5Rw)Dmk_S(NOSpbH$p zG(LKDR1vC!e65f&*^yGM#)OIk91#dLsGJw^;dQp+NC2KXd=XdyR3^`Vc}Za`%-+Xc z^fP5%rk?K)4EWwQxHR8*0xB{{V%0+-8g+6OmvoQd1%HH&&XNO4a}&mDTYQNW1hCfW zb%Rk9@#0)2E&8xtcATyGObV;R+r2%CkbO%;fJi;qfB(hU`OsI9N`-<8BY;#Lj13p2 z&45fafcM&fECK-jsg;aW1Q4|tE*XSMyPiR%fG~nJSI*B5ucVw{Jd1rWYrDkDm={m>>!-9LBvX%Rf00@0J3UqcLZ!;x&o&GhxW*uL2-YND*1 z3$FogV@4<$b$pQ$5V!g91SdfU0S;Uf0N&b7jaM8n^%cc22dQ2sNaX+|p{R(XA@Bq2 ztMhlTJ`LdU382zk{Rt-`7z31MzX{BaY`8LF3)DNQml13@Kh$(B5ZFlC9#gcn?vUHJ zVKRZQUK(O)2qa&isoV(B5h8>|F0AbgV5kBh?aSD+goWjg^kZl1tk_3{fx@7t6~`e3?bqtnqrW8GYFgG#Nwa_E z!Sgx+fTXg2BUIgHkJJC&UUlt$^6g0*r+C8QjNyOq>E?6++%EL;qTF=*m_Q3lYszF7 znP9z8Ad;Pf!`4^W8O*KR?IHp4S@HgG#a&}xEOf!!NXB^p0REZf8O$08TM0qcA?a0S z1B%lVVj!p`>G|Nspo`N5?v5A0IoIJsWV9pzWIjust|~n)X?mhaZt+QR=Wz9}GrOrq zxvVm?Z%y{zz`Vay8A!OLJvF;I1O;Cc5r3^!0f5ZdZdyLo@Q~Mu1Yy0zfK|`A^vODD za{1Z{WDVuZ+21&~DKG9p-G3~!Zl|tY#wZ<$u%d8#k`@8H@X0T??VsEN zrNbOiN;w=c~CsjqmOP*m+oK_`jT3w0ucL zeXu-PweQbMTW!a$*sSOIYE~wyv5!1BT67kp=;7E9bnD!L6pScCB*k(_6MOFs$L7eW zjoHzpYz&}?nnobp0sxdMAOnK&!t}Z%oPh|xH@|&eXbI_;ZU-G}@z?usGdE+Z0fwJl zP7v0_aDrjKU62YG{hhrTKkSkzxWp3jhEhhoJLSPQVjUu;HrQLcoW4OGvV1BE zU+~HND47!tp`ji{3x^ot=tem^!*amu4h58WMOwkhy-&NBqd$4H-j#{y_%l+5X8m*? zZ4GxqUlDIcS+8-2C-iNdiV{Cq5eut)5+h&*D`Ne<6aY_WXHx(GK+gmK00000@Gt-X z4*&oFCK^;EBc`ycv#_(asLUuNB_$>>FU_&cDJUi`E!rh5DlEgPt+1`H9;ziMEYgMH zhiw?&XcjR%*eGrYgx`m0aO4Dd48X`m|HmWkaK(i7?8*M6p&~MWat5senYCeQ* zE1N%%O(UM)9lE)LF;7F>*B_g+RTxU-CR68*@pj!H4()LJgim12hIPb+zc(W}hvB(f zB>gU4$4(Ca+M=FRF0JS@?R2yK zdUy)PE2~{5fH*Zxe#-Z74zs7A_ZS^MleI11kEPR?rPe!ZUAMicr}3Hj8^#LJEe^zT zI3Phk!7aF9Ar3m$2GEx>b@H%6B?6wgRY?)OaKe`j?r4@|w9C=)rcssWgT;pv;NaY_ zlK<(nrD5#C;*xW4)>+?Zi6hBxnU-z0wJ;cGisko}r`Vz|Mvo9m-6vO`U`cN4dFrvrSynSz|l z-e2VdUvF0newign8Zj2$)(MyEWtK!NYznuvPy#m|r-6hN91B;>^8b?RqJX?;Te}{b zMtbyv{=f9K|FY}Y5BzUauWLBi<*|ZMUW%ZJMo)>)W<$B%{NEKip|fupp1~5JDQ)tI z_R`xYZ%fddXsQ4eyoUhxKK*~}x3@7DpQfktr&M`g7vaU*jcRG=mQr_~icr9-75ihKt49Iyoj6)1;OoWoo-ytv z3Bcnkpi;7e|6g$R<-F~*-`PpWZF^=x=J6ZA2p~q$#Ny_E@SlgLW}owY%My7lu+NHj z*Xawu*AT?MgUFh&ZG+pHWEZkwUeeB(c275$fbxG}v_KP0(??@FQ(yDPgX8OT@~gdL z-^MVO8@6t@!|ZTA5&uTD=N_-#bJMAabQ_TVew%KjsN+Bg*c%zy-Pwxw{fbL4TF(GJ z+7;APwzoZ5rlKI1d~PB1(Tjs8jS6^B(B^XFT2)N`FAMWC+Lhj3SCZQI+y4EWSNCLV zZa*jSE#CaqINVBa4$+8WH6=v^a#s57DeZpP+rlN#g9P+MRn|>9xg)U&l6)=X5MFO7 z-W%2}g@>VAj;c?azRvYpzAG*!b#gqPS{bj5PO)R!t#XV-tBTXHWNWy51aY5yNRvb@ zE2mY<4X^FxzP+J=54cum3-%YC$1m*g3m&>fM9dr?;lFNk5@-ci;c8rtc=|{}9e^LL zK5iKanj3(}2S8=2CjNhTmHFufA^whK-xdVxvM*#cN7GGjYfkA1Q0`Mn{TJ6kDhUWhxc*P~Z$DE~GtK=GIw?B6c4geFh7i|# z>Wf64qDJvLp{zhJEn1TBA~%XoGCzgxm4xGu@UkJMD_(zbyY}f7BJOeZ$Y0kK5UAu* z>_=T)92bEBPq)^%EIu4v`{c_PZrfAe0C;pe0ZMcA|KInRm!@AWzv#p|T|tNe_@BG| zt;IwRR~;(F3`+|Buuc8$?FN&!MkLuFgNFTBUOrMDY4{k`Kqai!sc#KzU{q z8UU*hbdgCyv%aoLwNB-PB&fL?9L)Co{hpBy%^$~9Z`iiOp^??+ukH9*I^UVina=#PNabic1WaO37;VAHRznqcai})+0Zh*w_#~R{d9{A`Z<$CKq*t@6di{r?;AgXiiyTXCJ| zHYb1M%AV^K`Pk*t1T@R9@DEY+KTq3-sTrP|XcFnos z`hU7~K@-+85z=%`%A`Cs&+VnFyZxV2{p@y}+kf!~2f^lb=zdk8oq_@_c+d&AAw(*e zlHy8{s3AhL-mBQg@&M{G<0r1|i;midJ&Rq5!b9X_I-R93EX~v3-rZnxm_E?3FZtH) z?#qY1%*NgqRyT-YY;KPK!-(%zxV4|Z^BAFKZsV13si`ZY#W>aRKl0GJljk%>ka4Yl z3trkaCMK?~B^;k1rIZ_Wie5h5I9_at@M3DX`%whvrc(bufuLRG=gh2{+9)?q~e)B$AGAlO#^1U{?ho)A{)1+XmNjzvC)KvXihShl^5pFTXjXrO_A0Zwh` zMvn7yT27PaI{&8=uG7?r@Q>a z3v_Ki`qELf&Y`YC6mCbz_qJ=__$D<66OsR#Xzy*dCr>B%8V_*g4NAel`u)r4U88gP zgf-gJY$^_oz>q6Ww2O7cb>nbSVFxI zhpz3U{+xID@3r~+zH5YNd;l!TQ;?Bi`Q?0|ed)75*1Nk04>noSPHo?>`)TBlGBomk z^S*PG|5^YX&9&#Zo8vM1J^SXjuEm+vgG+RJjs19ax+bZ=elvIK#oeBa;$0FP%Tpez zjh2UGeEY{6_ZPhd;K8?>b$9u$Z~NgmtbCOb1Tn_604&pE@VR2SofvTe$ia);pr`88 z`d(8$sA?1>kW53ebGDBw|c{6!IH$zD{XKLc0E?{vN;ve57aX3Adv|jiga34}SM+ zn)CkHvH33=+UZj)NXO+_Ex0BvA^BusjSi4Gk&sOq5nO(Y}IoK zVz!$rrtP+N*oil+QftCZ-^UFuL047dpEd6%Rst+h_sX**>R#u)`Sj;M?q3XogNk+8 z{dmo>hL`&sPNJ6i81n=)Qj91iT5Eoi7hrt>VHF_j%R&@sf|ly^SOxX~;T_tAk+TYXKL}HY^$;%e7H;@_X$ah70e-pVv{rL~DG++_aLMJpR2DGT3$$J# zJos=kd3OXjq%bX6IQ`#&K(qUQV0os57t2Pk8XkZ~#`pgH(}}YlezYzTng;@H$rjwz zPT9HMvTKA)Qb`ON$5Q2pn+FHSVbZJ8eJHzMyJCYfYxj1xDk;#&k>pB;*POA0WB$a~ zu;PR-+z=dYQsbEQcLXUq1dSDj;ONEm;jZNiYeo_S8Mm~#&kPR!67adi_NQZkU_*?X^^VNmW}QI?Q=RdP(L_= zzHj9B4MGuv>~8(S;&^K*>gJV^k2%%>^2FGZ3k$9F(B?fg=$m${CDaY3=Q0?MH`|*o zqRp48ehmPgxea`4zl#Ky4m@UVb7gAgMRK4rc=F-)_;3fn-2=!K=l_2T$*-S|Oh@JM z$0VjsyB=vVw9>0kk(K_J^10^08iBOyn-BaOe{ZJtnSGio4W=wjzT{Aq%ayk}92@od zV5GKrE~3*U;NbnapIXUGW5sSiZ%+K*;e&as6KO1O?=Q3_w`1#I$+pXq*IPAt#QD{_ zyLyWxVujM@W#CNIS4lpZFei&*jbY7eonHW6xgB0=WHQSW1H8=euySl7wSL3WY=Dnb z0k3ZXj>078>Jzdrm1XnU!Q=jP=0&Q$ffsAWvN~Apz7ze{k8d41ZP+W$7>TKhYWMgvlc|q(UJ;#@k?${)MhVGF$^P;z-?;#n|unj&X4u)LM43 z@{Tr7+3ijRMLX{x*2?J109{;v`rl&Q7r+LY8=^5F*mW#+Wi*k9qPr0Q9{JtSuNjz} z9^C?uq2a;hk`2vY7i)F%d zUvnK}9Rd60>Y;f7rBtob|7nz7(w@{RZ036}mv}M0?53Uhm()0XZ8MDCiyy|uaO=kC z$t&x~h?Z#NK}brcC%1nr(ca&7*gjwon8+WE!=)}P}O|=cU)mq^+;itU&k&Xhhr6WmfgN9pK+7z^zE*6 z{{0&PUisai+=^>rVg+DSoa^UxAs#-o$>8E`czC_s?N^w&1Vwv282@}A5~)4i~FV}e`#FpIhS9yteTVF1l|0%+xEzfpqg z6M*}-5Wz>f^-%rC$;!R2K51F_y_nMR#V8_Swj#d9TQzw2VlfT_llR+F=M)^{qJBH( zq7h!PNLI)1eQ>aIwzNOF!}otj0KVA`*}2B-;vo+Xe$e_=-EGU$^|cBOQhWy#DH}Eq z7`d)h^)cQ2INzJp;Uu^Qq^HinsHt}0@>-%Zd>m-ttlNF(`7lJg-xuQ))t}2^)X!aF zT}A*zBd`uLcLrBPnhLFvjh0vLW=33ToJjcKI2m zpJUf+A58ft^kO12|R&7+Q6;wZ&jhP0a9oY!-7Fv7fuRBK88?33#sDPA zUcPANp84(1k?~&MwADh!!-XV0ov`+7hu(-1KzauZ7VVrt zznpkGu4;wxw6p zExBnyeuKEA*Ml*U4X-jR!G}s@(qn+?bW)EU=AfTZHS?=q618goUP-U7A-ok1Pw!I{ zmZZ*Qv0^#rF0FXKS(C!^bpg-E>KL=yNF9?G@h*9dV8FUk&Nb*FL_`aO`x zC@W(Gg4?x$7WQ1#O8rl%c)Bd)7U51k&yAjGUA4^`p?j5}9TVXT??=O$vk!tw^NJY(W5hK7|Y2Az(G^XZqx$ z{!a^5{p6~8C$qV}R)Sj|!rxZcUl5}RqD z4a_I_eR4x$Gws9z4tQPO-yY`-I26xy_D>Y)#r=!*{i6St;_t6)cXW|kdSPsEzwZ2T zoc`CB-}gFBj+2Im_(C@$BEY_@wr`KX{bS7HTveQ>4oDykJ;p{V9%20tDv*f|RZf6T z*s~r5D?vv7UHi|>oivML7lJZssrg2Ks9*TkXVMEp+Qr3aHT>u2938XLCESvZjj8%(u0=yq9Yp;b=qZj;PuVFaYO&cSttM` z)0Al+OJ$Eafb+rY5?os~rsu#|)kBS|2;{a+&LMYjoV?${;m+Cs^2z1P=a$z2%)sD0 z%H{mWne}6U5isyK$wKUhACK03*M23w^nGcW`gUh~nd$BH?|^-+pAwy>D_wQ&Wx6&0 zd;jZPw6YFSDfe0auG@3wXGRZ;QwyUuhIs7Og-^FxuisnsMuZR)))%4`KkO+n^mD7U zwx?eAr2vWaK<+mP$sy2KmQDLT+Yq-iYm}v%rvIqvZ^~3`%uVty?;cZXnf;E}tx5W+ zWi2H@SLR)_#-cKBD{w&ZfHd~$J`$gQ>UUUj`brw4HMp-p00W8($D`~P zV}AcqYwo#MDm2&U)FjXIoM3NyzAm%(^#RQ7bv4}E-!$4P=63O!f|+Yx06g29r4-ro z9@v9;0FMu-cIWF@JaL26dIY~fJk;MN@o!V+N;KQ&${gD(&f)?;fU5&I@j3R(dCeoQ z?d7}J9kPDozqq2#B>^9M@qW7=pbTyEJzbm5><}sV!&tB=$V)GZjZ@=(~`_`Lh ztr;Xq8S^JkU&=P0xW8yE#{zP2e7e`e673|s9}V{I-Ml?@YD%};J$JeQ6j7g5{UYis z;X8nZg9QV|ZChCEoi?qRfA$8!eYST8t}VPgb%Oc)=tUUX$>q}HJN65hVc^ioCEV>j z)&+6QFe4oNMy8nL)AlPD`|k4HL-CuNpZ(n7lsLZ!3yd|Eqnt=vERDsR7c;dN^IDIcp*%T)V8Tn(E+#N-Wqz&b#(eD$F5)C;I|Z&P(jc2%J1`rrurKv&UVdw^sJ%G$_mz!P2FL; zf*Xj5Ttys)pnjYdKyE48u`A%0E+QODMVJF#$>rHAn>c_2Y;t+_?%6yVk{cXcH3h|v z95$Zo>Yq+YBY!V0zthU=O?TH1`rzA34d)+Si0K%5IsQ?Po&U{)yK%Zk+E@+pB}%{9 zFTHQBEx`B2ZD-BE2@q*H*{XB(c76?Ak?3H9`V7eE3C;+}iYpH-3^=?V_-zWZS^w2` z>)l;(#FxISLY&s{vam+F_ek!xjg=TP!cogh3jMm!KMw;F6qsi%RQ}1u{$tx#1D@a< z%7y-88(Rb3f#B?Vd5Dj=lNC^N_5ah0Yh^qRw=ev5cCc96UG4qtn!OYe9c>{v|Jx2p z4{!eKn5$NfD<@e(ClchG_U>#bBX?Hsq2^I+&r41|L;xp+pBoDc{4yb21Yal2Yr{I+ zc{)$=I`6dKN-m8KnZLK*fKRX1VC8c*~PJifYnNA(Qm_6``uOGkffBx8IX_70uk6Nfix-B@Dt%G#D;(}g4o3!)g)x7Tz zO|(G`iH2Z!qQ*hAqAc}OhqwRk=Y*e^&35XC&wktgkKwz+jp|tg44;^@gnNUeyc!BY z41LxoTlIX!VhltDt^oeX<;}0YZ3#;FK}0B5r|&cO1pEY;!PgXAFJ33Fv$E^l6>2~k z*VUhh2yxi{zF5sBv-|HF`ET>xhuMSQ`={NRS~_|hjUIY~``au(*=|!w^Zs^!v^UX} z5dDB2Gb;;1_}$VwK|;9J6zYhbvh~nCnl~^+LniPwv^df)5pI!i*!n+db?j&zGO{mw z=f82ic4^vtU);01-@mYry1jvy1OEM`cVo#S53jx-xn6F|i;V9UHf~<+ zQw^~f`V}M)B0YtbgW(QWbP&_J*&{pyoR-Xpy#TtwC#evy!1aIwLfU|9bi&Tl+j>V8 ze`AAR)h^*{$u?{of28*3+nz7Ru)GT+?iq;qoWhf25Rs#zf`o(uUdct}zv437P83hX zOmboTyKlmQ^aOlA$E+#fd^;VmtE-UDo|(Cx{ogx% zCjH-!yO^#zY?RQie+d#>Z?q=qA#Y{8X5+#BN69zqF$AlBFgsQIbsjYlFC?vB!)*w> zW)HudJ+_TP`JCVc8`b9DGCq6GhGW zb$Chym0VUgFRqmW^$B?I3f>$_<*J%SBme+m=Y4r-ty~1d9b6aq=BO9a>mOVD^zH%A zpYCOMk8a0DvT*|y`F^!hfRsCg@mblmCE}nh3t_Zl|5?6?FdXGKYezc_IaDk2MtL`)1^s9wo6@psQK+aGRej9-(qyL zk=)4my$lho!9t7y>WX#6*Dn|mi2x!_GjW(TdD=en;^Ft!yYJ5B{^{UUG-Y)B^zUz` z7j`~GIsI#kQzc;{@-=I;Q%Vqo4vWLDKF^a5^@p000000PrvX01*HH0Kk4u zJRF*ok&~O2oR^rAmzEfsuj!X3U?_3m-4}r9rx2=>$R!>C5Wr1#mp>oM z<^t31xqau3WAmFDt4k!HA|@C_3aAnk43J0wzR7j%-?33O8_9`=rZUNuee-%D)x>ZB zzwuHo^gDZjV1=V64yBZWxtiz%06^-C`Z3A7w@0bemwwmT)9Tx4>~-+hm+9ZFA~_#z zY9r9Y{uhvjCgM?s+vi{!LGb(X1TOA zKI3(@x{?vtBi9UOrOQs@y96bEb+qUsC|&C|WR88~cxsi}IqQ~gw5G)}IaPUnL68I$ zJ1&q=2uM&c0G`Q>?eEH^+KuT10*_psHs3Z<%)qvVfbV1A4Ah>FITW93HI0b?A~hAV zXRY}CC3a{1Yk6n_7hhIq<=e@}^5o_3#@;TfcpDnmM(VGr3kzCjR6oXW!Erw%N#_wehc3*AigCeJMzeAm~6Cou45OGQ!Xx-|d ztzSDiNj^^R zw{|O-LP?uUaZY z$u0Bu8m(e69E5n}`u1yWQCer%T8M_)h!6mPbUlof;Es)@ z^lNwfd+PDSZ0u;K7q5Kd{po-C!JU1yw}M;WPZFhC!PWvB4-+vh;-C+Jg`qtNuBtd* zYy&gRR~4{46a#4ngRC?s(Vddw?(;=`WmuH`6YjGCEFcYnfUty!(n{wFOR1!UG=i^m zcQ4%y3X)2xq$sfDqJV@Fg1B@l&C)EjaMu61&UHTR*V&1C?wR>LGpwm)bXe17O*tY` z>b-HtD>FU4em#wt(vlB$0v#q8x*iPhNHrFTv3P85y9?~1c6>W`7*%`nwjQpt8c~iS zp|l^*1&#y97c}j zBp?tEP@F1Jl-DVUvJtQvYV70N@RfA4bDd$bj~0zoC#Q_2l-5PeTq4JT-zoJUY5 zYC8qb^3dIQmvY=frd9JWQY{7ZUEJ63q_o+j+DYR#p24CExl_cz#jo9!1(#ge&0&2?U0Zm@>NB^Aq`I{sGl zY{7H4>|j6KSjOoT`<$TS{4l4Jf&KiXK!omb)!-265LZWsb_vNn_Q9Yx>Huk!QyqD~ zwO{LelH1vU|JRTR3JahjJ9l2_ecXGY>;)$nbIF`FIF{={DL4FCF?g=;CcbvtlV?qw zEn5R8AC}@F;Ofk_d;Xck$XZ&MGg8m1+FL@kTO+R2GV!P6K3}z}(u~jkRbmhK{+_49 z?(yGQyb?Y>YvcH(MBLupM{`~3LXd|ioKz#^sP*s+Jut@$_uu1zi%w!Zv2F6#vcp>M8HJ zx^C;DwnsCl_Rr_Z_dHYo!q^!c#Y(RUCy|+O$wi$E&dy)3Q z??5i^oGIv``ZFr(woP@qGl~{T#7KS?YuNrR=%{eGPx-Ui3$4kxtu^dJYTXw!hVmL2 zMI-t_omIN9J1aCjVrVWu*Bq?0IX36H)USwA7>fprt_IPF1z3E`R03O%+5nHA)!fn2 z!(csUs6VbKVpiD+8awKK>A=g4I>{4Ro(ix1#aTr>7n@A}YUPTs#qg+I@^ByDU)lcy zZ}5}DNSBrV<-?b46>dr=^SxGEZ6hI0(bE#3 z?;K6f$k(Z1+zz&1uzAqTz*GuwTZarZtt(4|Tft8*E4}llhQ{y${OoI7)1H&FYFpz_ zx_(kuY}z}dK_ZOV925h9ARPS)sjHI2p|@~9wN^I|zGWuJx4%%B9ZGcgM!?#_IV*Zu zoIQc^m#J1dEeMEfY7|6qc`fzQkG(0!cg!lWZMM#z6Sj+HWff*mR~i1+px`+2yzWdZ*g8oelf(ZBujkPYV|LM3#eEBEe@ZxLq_XsNgOGbc&y4qhz z;=DvxlnO+`rx4I6FaYadRDtH3<-7TLu$ zuAQjd_}ocqO-d3C)H%+y*^sXp9hNx`Y&{+O(LN)XlhlTtO6#w6{vgTs*+z@7-pPc8 zGCHXbq5z*aU_%me2+^39MbqPD{%rKmcn^q>WxB7-=O#2d?jyIM5In{hPIP(kdU`r{59STS=Wll z`mz`6f2l`4)Tk7qs&$Jr*Ud&2kVtSrSZ~t!>7kRURqM zXfKSlx#_5J%V%%-E9u3MBBWULI$`FrX6pmOLJJue2f*ozKp^iOZ-SAid#I!h!M*-+ z|ET5mHs=g09o{$(sOD$t9s}D7yY@W>9g(^-{qUue7B4nQ7R5DtyJE+k z+tKw`joj$_Q0ndzMJ7In$*gv+*N-P?_MgIS+#f6uk@TOA(9d-!B}e+&XE-*eqS18D z3@0JSU_eNkK!WztTp&qkcnxFV0+2^awDR#&W%>Vwjgy>bA>xKTwR^g<~xnE^e|SpRSKJldVyG#Q)!LAtug#p(cEsNc%V259!jnmROKS6 zXthZ{@LK2gxbWc$ay+^ib@MJ5@=r~(Lxhdj0m{t*NKa1ebgo7GbOO~$2nDbpUc0)e zZNZPatGh}`&rJv7HE0m}2#P$f*!wcSd9~(w-lRX}5j!`vwSEQRX9NGb6_<7mqTPfQ zztfr5*_=Y#Hl-P=|9x-dD^)-Z)JErG_CA?YrvC&1+ zU|k#m`$>$q5R01Cl@@=~x^Q)zSJ0$zZKBi!5!8X#4=p?^K(E2sMhv%jp>f_`2O4TH z7SDjdQaMazZqd+T|JdA}-w4&e5;rJmBnEHDyR|y0z9{Q}IBcefQTDQM2NyCAxrmXy%fKkU&6jbi#~`#CvKXF2iE{!c$9oA1bT=7Jj&wl9DlM|s#;U&!>64mZ zK}qoXd$~_ZI{nv!%FcWa7CzQ=Rj+G2dz@(dXqwJ?Ou0v7lb`l=*YTip$zbnnN292o z?&@=g-Z3}vOSV2dI1xR{_m@u8u2nh8EM+zxrJ$&0zqV@Wee)*lT||w0mCOYGw>h%k12wJG3A)t(czM@D33j5kE8aH@Qfy#2u9L=@g|F)oosXtWfQSP3PQ2?SMhClVl zqnc&)lmVDnz6-#W_9Fum>f;?EgFctWx$WYAe;xFr+!>9&T^7r4^&Oh9rn<}uGKJ6% zuvUX3@8|)xNxmJk*>qnfu zZiwlm+5=ZzK5(%AVl6VzeLm9?8Z?y4auDfl7g(KizK{6ar3`=~RS{sKM3y2tzFN*V z%;@Dk=bJ*NEuTo)$Us%)i-^%bVVHizz)c4R;$9no0buh5qsQ4|^bhm}woAS8`@CG@ zm+w2P#${dn1DWpKG2de~hV@?z+6Mf>qg+wZCvQQldKtgPlHyoCLr0oveACur?~!ky z53G_sRzr@e>^6E_uO9V8L?=>?|Gy0jVA6l@82Hy?t9$8}+QUWE+3va_Zd>cD&<^UYjc{i`2~HY4}?p=fc^2Uz^PR zHvy0VKlGJV0LTMrM+M?kU20_XCOPEEt7yhVD26F}O67E$oIa$8T@#SMXIjMl#)g`k zj?$c-x1%q_g1TA=)xtKqxKFgU$g2M>$$BDJ*dhU}jTcSd$J5h;Q2w`q0op!Xb;~aL zJP(h#N&Fapl}F^#ceRkya$;=Si~12sEP^IrRq2#*HSOHSUu$ffDp!_Z2vEiBvtr?1 zZ;aqG)BxzQ9GkQMH|mi@aVKx>|Hg}DWQH4?jU8jL^h&xP)8KazU!DSr{UJ&81csSLsebl9L0di3Sh=p$*<>tu12M(+S;O!;;a&T6KJH zJ9xJmx4C#XMC{Y3lBm&b1vfbtmT!9&3i;L1XLsSNb-rJ;ILNu%1A-ZsWQ4SiuRdpM zFEWO$DeWx1?>4{T=P4h;NMSGoUjVD3pvQfLmYY+Oz>=C9By%RUS5*LFEtTK`4HYr# zv`GyKy4+6=_H31N^^;u`zsqsGT%UMni?$2VHzzjJe{Tml*8jNU=Ggk!%Fp`BC+bg> z&XPI1r(0av1l(xWCs}o8ELVdjNj0Y;`%r(9uZz|4+^;ss7(yNPTU%B@4tDkWm>GM( zN9cxWVBIGQR_P^q*qUxmYkPI%!Yc~FffG>Rw@_iopWo^Ut!7r4SUUum^r~D6UiMsq zxbA9edposT=_SXbEOGt%#2%8Zk@asYqv~oijD4UBtD-M28pJ^z{sm z=)Ex0XTa7F!R_Qled}fr&5?_D@9NI z*npYG#$9eN)YWOWzWB|DgCnIRv&3s=Idsc5{N|$>HrJ=mPkrT^*AvO`J{`&bfmr)P zW_t%+2cL9bquSxY6V{3r2k69ZEpFgX0hXtoPxM>7921I5YbviQO7Q6$5^;H^1ddENZq%tIm|&ZY`r z#MvfYh%HwtN}x{Q*@vf}=Lta}y zd*Y`qnnr=(8#&OYDrWOe9_e}zH*Qg_p5YcQj9k=hQ=O#*L9o8w8qlvX6u;JU%!*vD z8qWr+u}nK>CGB7AH(z}U3>Fupij_zTW*L9?#%r)gC(gLF^cS3IWJTaQWj8=i%((NZ zw_EkuoZ%VgXwKC-F|rxd>L+FZW${EHM=isvYH+AQiIBn+wvc5K4Y-UKXPE+Jx;w2c4Ok!2W+i zEnbDRmE(Rc^Ir>9oCZd~b6W%NSg&-*LpDG__)(;su6E>h8D_lh{nhH<9#{YLU_ZXs zOy@6KoWtd}1{k~+NNGxV|9ZtI#7{(2^->S#*lb|lB5qN3ZGJGh-`mVCW!}AQvSojVIL0*c2OdY zJNHc*lsGbQH|RXzwCj3H^3=Na_eK$nPE7L4IVD0-)HG}g|22|Ga{V2A`~yz~)v%b$ zgRV)=M8fL~YC$rxmBrp|6$(_w)k%eiaIIcjNH3f3cYytDJf5LE3?&O7Dx9qX3@)WR zK5Tcp#BLih_dco9Q|++$W?1M}v2)9?jFm~X6GTCg4JDZ)%9ZMZE_daR9pu3u1a2)$ z_$Es0ckWy~5dx};1sP}cK-uFLsl>9N6k~fWCM@CpcahuY({oRb*sgu+xtjj9W~x%0 zQ8&gHp!`anCRreFSjThY%V>m17UQA%>W=v z$*O^_@(bz$MB`aDn)zzYSVPihYNtJ@vE9jzJl_sD0l;?1v5Z4U1Nilm1gLLY zKMXwko7!=bYU~!)t`pk4zhiW6jHwC4?ES=?Z~W-#NV8AHhOIaEiazkI~TrG>=d1tJ8P4I0v#jA+$ z2x3o|fF2z7cPOVOY0I1(4#Mm|@>7AR&j$ec17mfS*_TD4OP+hQwAMWL_4Bsv_vAwA zeSc}PCetwQTZSGyQIeDM5>n0&6{Dv&<*Q>$jDIYi@<>YZ?f^yPALOe~Hqd*4^(Lhg z5N{RHn|vHgxqW(gcDs-8+LrWLoW24u6c11G|kUq*&sOn(;(r+^V z=G*DnyOj#>^UA+@C;p}x#=}McnmifKli7X>`L8`UDp>f3+~Fv*R$*z+s`uV^dAB%4 z3lE(n=Bm4@-*BI7YC`<|TB~(J>^Ut{wI=suQdXY#N6)RcnbuZXb!n`QH-C$`nbH5chXOmH4{y#e0mK&Szk)cXf z_Z%95I`>s=gva2~l|z145OD+~)4Unv-Eg6gqTBwa_|_`y4_?GbN91Y^?{HSew67+4 zgusNAJd-k7*E27cM4*gD4h|821v$HQl(4u7Q z3+d-=oaZY8?BZm*7weCJPRl);!pnGCtS|@;m;`(vUS}TJ3EaBVR1<5}Hgk4hKs-C{ zqBE7D@%6I3)vxEL%G8a-zvs^%t*0MS*3I~MX)Qv$iM-T3)I^yO!Sd&KdX81+hryGi zZ6l{!RRNLuWF_*j@!8DG7|$M;k1$dmDq$yPX8jvuEHK3Xj6Uqt=B*=sTRiSh=*%j9 zW#Fe?3ghlYE&$;8A9Qr;=xF@fCn3^#vQKlgB#5B6yG<@Fb^Hp6qG&=jrFv~wq>GYv zXkDq-R7g)H*UB2Gbz`&_fMK=+0RG|LnvMLc zWh7dI6o|YfWbL5Z^Vv*$K1F+KZ(%2F*Qz$qpJ}g-`m+wyx(~r~>Ma%1meG&|=Z6M9 z41Z(Mb4OriRIz9z|E}`!e|rA)Fl!-OxjhXlk@lHopO+g?=Q~ESUXFYV=B-p}U8Yxl z&ZuW*<~*XAAb@yVZ2iUXpQ9-a;r;vJlX3qt72eBBD__$MT-a*|ptSB-R#l`%#fjTN z0E9ccvY*rotOt(FEm&rtFpOgsw{GU+3rjbm`C#t%!22R`AEx3sV;J@|kjc=A_7hI{ zcxC8E`A%tU!tqgf@f(}8EW3$WU|j$|`MWjYHRYznkDzIr9{=R$m6hMd+2Q^!40P`p znJFl$U__UiYtm_^nmC1%pXymnz%1<8egi>d|)%EIGhorjCd#{ZmnCU3)ij!;Qy zT&UVQb+uL4_4P{ov_UVf9T|Hk>5++7fX0Tm;}=(>5sxxWx@)rtb5Nib>T3=z{%Y*w zau)?AhAdSjJo2TN!YdQHJDw-3hIHVihcT4&>0iJ#;Ryi!KRJZY-TSHEy3qgZ3z=_R zJ$~r?5B#l60pMMofXTr+IXQ@1lAH}du;{(e3yc|0+EF>G#r9t;{ql1ui7j-Hs32o2 zznt>DuM`0!cc2TD!T^em zuz@cuy^VnV1FxG-UT+Hf{zkpDM|xs7H|@~n{_oe*>`y{|O97~X`pTA^B3OJH0C!wY z2c82CSqX#D<#SUsSsRx|VOPDi+E)u6;?#Lwc6f|5AIsT|a6u=nSL<9!LbN3=Z@0*R zfxH#mv|f&0f76{gKulfTj8Y6o{)WL?)Qu!RKSzjqr<7 zSM65+L&E9Li-U}h_>va)wrkODN%RWkisU6zs?u!_L84-YIi#t&cQ(JcvoY7o3Q8+? z!J4MuH%qQ~KCF~VJZcb4dCC&^PJ@va{;xn*7&`CCM(Iv(loHjH=a-PSWSAkMZr4T3AlpMH$mw(_=ppI);`M6bb6zDm)v2Dek{N3z&($X?+a|z7s*EzD&CXk_~dc+B-fSwKqga~)(|b4 zW?&7qChCOHQc$$0kB~@4ihEjNZP`S+6=2kw?1g5SDxkAQ`iF#ZR$LkkKplon5{qX^ zV>-flbQkB3xg%`IX>V80t<>RdNt^6B#n1miNM!;eOZ)bI_%46H2}7u#NTh#%S{!{h z#}U>Ebx=$jf@)U*4J2_rpX*67tDRxPqKD0^ij=~n{7iB0I*8O@*afX`X2Y)fN*%ZA zGA~l|p6c)JVmpo^!WfDFc&xPSoQxc^=3c$a{1d;0?M{eqpvVPycuTQ+AW zw&X^^%b%Idr8Q8nQ|^QL8(lntW5%7+O%aG&H)s|&qq1B=P0#9$mJ%SMGYp`ps61`< z*6rLuY%n%Z>&yL{5W*Mba40$5^%~Is4q8HeWd48efPwh;bwa+*QpY4DCq+lcCMHJ5 zg=M%A1-BZKFi&9fafZ;ydtzKSo11CLMi;vdhH;d{^88_OsIoFQK)a5mdTPy8iViqY z3i8XZwHmTL$lku%J^nUJ+j?u%oZ}d-41RONh*}R6@bT9ga|gq`A}~eU@q3iH7s2pc zY$nOQ8?znh@dFRVt0q;CtY&*YqMG3YGhKfQyM~0$5y>8IwZ}&yeOl}!?$4z;_I9i8 z*wWoza|HEpkuT6G^so+bi9{j+xJ_Yy9}E!xQ1*wT7q9#MrPW+_^4!4Lk_ARC%<(s+ z#EkYOo!L+FGp)R@d+agD;3is>%;9vrreny1`Xl-jlA>P$0aW<%7q$5X1Fmjfvel2D zCTu%!Ut@X4PjO8b#4$iP579uk)57!9-lS^adI{+IYH3kw=ACW8RW5|MeaoZlB%atD z2jWt_rr;2ugAm3V=fhE=d~o|^muy=-wa&NDrn3b%vEByTDlc2ZPWyNi^$r7{gZ&P9 zd?<}JHQk9aOjF`^gzRU_=}*{P%;8s#3twtaX*nxfzV+riv+@LO1KxLaNO=7JQbbDY zECp6Y+pU~OVpq6sU&s|-^6_fy~hS=0*;{Wgq8AntLLVB8L>zt<0FlyJG#8=n- zb~=u5fj?wP*9-k~0ux3GdDc#P9d0Vx7mjabXjdy==p*O|S>}@JCx4g}TdjOuvww8f zi!|}f$nhcz>XXZU1&Pyf232^Z8ld4O&;@$XKNIDfwLI_To>n8~1~kXHdl@dqd%{0- zZxjq{eFFzb(9zL>k?ag?Yye7{dnR;uv}uQmQ$e=MHKx!nY-?r8r2C7>jet#H4h}ad zV+OJ=yF!d1u83rIPp7a2ub>zs^9eLU9 z5A1r%SSL3rVwtM<^z=iXr(?R`D%9I=W~fX4{QdL-BiF);9R-{;Cg3Ra$52~Fx`^7c zVGW_D_i!NS`KM}HX|a2=xaFts;JTgkoz=v{)I{EuqR^_VUUHM;Umb9n^vdy3Y02U4 zg##I|)qq;MKt>?}p!5)e21rX>ml97*jt^QNg&p^-iqwYvuKh-3rOEAHse!rPrgAttBi+{g8*c_oqA&@fQqRr3p@NI zJ$)<|n>QQlcha_&^t9=~_j4eHraFaaHNmEtl0Boi##~Y=bdMPv>)PS>(#V^ zWkTM7%~GkNgu$7qdjNkHEzO=PsBBnr?pKN#6~gKPjkUnR<7x~4->VdrTzRuoVQW}; zCg)T2GNmle-Zmw%w5_#3!u}hnQRB6ds*MV1XISKIF(9%hQj*AX} z?V5Da12Af)l2GZI--M;HAl6TESJu<+wJjALA3EjJ&{77f$0v%POb`E4aU8DR5far$%pbi}!vBT&$(Fj5yKDP(>{5d`q>9-1Vw+Pv(P)ga@d}LN9 zdH8GzhA1fe9>uYh{vNZLV?^$A_7Iegl&|rJ$T1#w+m*8W?>RqT>6`FV3XSEP)O2H3 zm|QStU2f}Aj(YUpgIoWm+k}={H?Q|=cVc^qy)bFqq*}Q5$?nA+;yeTmSZV#6J0b)# zPJsyoT_xH5pfQoq#_8#5sh}`>-}1n*qsv^)5pECZJ^#D=2byG&Q84;#W*!v(F$v!* zi-o!mvbU;g4u@YYdm`t>)K;Ig=T|iBk0ntmTz{9QVa}-g&qG^kf;tTCXvf}I2Z(zr z)ttYyic6+XS){22TU(j`7$>$9pup1iSNH3pPXk0s8HS2xs?H)Ss$wdK#?}f3@oG($ zmw1UH^6~1k(Z**Un82|M{S%wsc|T@e`zIQiwM@nO>(Uktq{J;p8^vpWwA$%R8meH8 zKyuLHioUKG6jNngUDj-rjlT;kUXxAH+&nAJY<#Q=?PNtDjGs{nf0p9yX@koT;tWd&1Nq igFcXXKk!#hg*t$Fw23+v^S2{pv#!1g63fM<3;I8Fm3lY; From eefabc90494a26f82f8ea61edd09f28ee16f883a Mon Sep 17 00:00:00 2001 From: timothyteakettle <59849408+timothyteakettle@users.noreply.github.com> Date: Thu, 6 May 2021 22:08:51 +0100 Subject: [PATCH 135/259] Update preferences.dm --- code/modules/client/preferences.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/client/preferences.dm b/code/modules/client/preferences.dm index f6660fa54d..5c25e13e84 100644 --- a/code/modules/client/preferences.dm +++ b/code/modules/client/preferences.dm @@ -554,7 +554,7 @@ GLOBAL_LIST_EMPTY(preferences_datums) dat += "" for(var/mutant_part in GLOB.all_mutant_parts) - if(istype(accessory, /datum/sprite_accessory/mam_body_markings) || istype(accessory, /datum/sprite_accessory/body_markings)) + if(mutant_part == "body_markings" || mutant_part == "mam_body_markings") continue if(parent.can_have_part(mutant_part)) if(!mutant_category) From ecca9d788b64058cf3c8269c811accd1fe579e2b Mon Sep 17 00:00:00 2001 From: Putnam Date: Thu, 6 May 2021 14:32:13 -0700 Subject: [PATCH 136/259] More supernova tweaks --- code/modules/events/supernova.dm | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/code/modules/events/supernova.dm b/code/modules/events/supernova.dm index 6fc2fb0c4c..f09bdab890 100644 --- a/code/modules/events/supernova.dm +++ b/code/modules/events/supernova.dm @@ -27,7 +27,7 @@ /datum/round_event/supernova/announce() var/message = "Our tachyon-doppler array has detected a supernova in your vicinity. Peak flux from the supernova estimated to be [round(power,0.1)] times current solar flux. [power > 1 ? "Short burts of radiation may be possible, so please prepare accordingly." : ""]" if(prob(power * 25)) - priority_announce(message) + priority_announce(message, sender_override = "Nanotrasen Meteorology Division") else print_command_report(message) @@ -51,13 +51,15 @@ supernova.power_mod = min(supernova.power_mod*1.2, power) if(activeFor > endWhen-10) supernova.power_mod /= 4 - if(prob(round(supernova.power_mod)) && prob(5) && storm_count < 5 && !SSweather.get_weather_by_type(/datum/weather/rad_storm)) + if(prob(round(supernova.power_mod)) && prob(3) && storm_count < 5 && !SSweather.get_weather_by_type(/datum/weather/rad_storm)) SSweather.run_weather(/datum/weather/rad_storm/supernova) storm_count++ /datum/round_event/supernova/end() SSsun.suns -= supernova qdel(supernova) + priority_announce("The supernova's flux is now negligible. Radiation storms have ceased. Have a pleasant shift, [station_name()], and thank you for bearing with nature.", + sender_override = "Nanotrasen Meteorology Division") /datum/weather/rad_storm/supernova weather_duration_lower = 50 From cb12843a34843542d161e3dcda1dfbcfa6bc650d Mon Sep 17 00:00:00 2001 From: timothyteakettle <59849408+timothyteakettle@users.noreply.github.com> Date: Thu, 6 May 2021 22:35:15 +0100 Subject: [PATCH 137/259] bugfix --- .../sprite_accessories/body_markings.dm | 84 +++++++++---------- 1 file changed, 42 insertions(+), 42 deletions(-) diff --git a/code/modules/mob/dead/new_player/sprite_accessories/body_markings.dm b/code/modules/mob/dead/new_player/sprite_accessories/body_markings.dm index d6da8be86e..0d9e845d74 100644 --- a/code/modules/mob/dead/new_player/sprite_accessories/body_markings.dm +++ b/code/modules/mob/dead/new_player/sprite_accessories/body_markings.dm @@ -27,107 +27,107 @@ /datum/sprite_accessory/mam_body_markings/redpanda name = "Redpanda" icon_state = "redpanda" - covered_limbs = list(HEAD = MATRIX_RED_BLUE, CHEST = MATRIX_RED_GREEN, LEG_LEFT = MATRIX_RED_GREEN, LEG_RIGHT = MATRIX_RED_GREEN, ARM_LEFT = MATRIX_RED_GREEN, ARM_RIGHT = MATRIX_RED_GREEN) + covered_limbs = list(num2text(HEAD) = MATRIX_RED_BLUE, num2text(CHEST) = MATRIX_RED_GREEN, num2text(LEG_LEFT) = MATRIX_RED_GREEN, num2text(LEG_RIGHT) = MATRIX_RED_GREEN, num2text(ARM_LEFT) = MATRIX_RED_GREEN, num2text(ARM_RIGHT) = MATRIX_RED_GREEN) /datum/sprite_accessory/mam_body_markings/bat name = "Bat" icon_state = "bat" - covered_limbs = list(HEAD = MATRIX_RED_GREEN, CHEST = MATRIX_ALL, LEG_LEFT = MATRIX_RED_BLUE, LEG_RIGHT = MATRIX_RED_BLUE, ARM_LEFT = MATRIX_RED, ARM_RIGHT = MATRIX_RED) + covered_limbs = list(num2text(HEAD) = MATRIX_RED_GREEN, num2text(CHEST) = MATRIX_ALL, num2text(LEG_LEFT) = MATRIX_RED_BLUE, num2text(LEG_RIGHT) = MATRIX_RED_BLUE, num2text(ARM_LEFT) = MATRIX_RED, num2text(ARM_RIGHT) = MATRIX_RED) /datum/sprite_accessory/mam_body_markings/bee name = "Bee" icon_state = "bee" icon = 'modular_citadel/icons/mob/markings_notmammals.dmi' - covered_limbs = list(HEAD = MATRIX_RED_GREEN, CHEST = MATRIX_GREEN, LEG_LEFT = MATRIX_GREEN, LEG_RIGHT = MATRIX_GREEN, ARM_LEFT = MATRIX_GREEN, ARM_RIGHT = MATRIX_GREEN) + covered_limbs = list(num2text(HEAD) = MATRIX_RED_GREEN, num2text(CHEST) = MATRIX_GREEN, num2text(LEG_LEFT) = MATRIX_GREEN, num2text(LEG_RIGHT) = MATRIX_GREEN, num2text(ARM_LEFT) = MATRIX_GREEN, num2text(ARM_RIGHT) = MATRIX_GREEN) /datum/sprite_accessory/mam_body_markings/belly name = "Belly" icon_state = "belly" icon = 'modular_citadel/icons/mob/markings_notmammals.dmi' - covered_limbs = list(HEAD = MATRIX_RED_GREEN, CHEST = MATRIX_GREEN, LEG_LEFT = MATRIX_RED, LEG_RIGHT = MATRIX_RED) + covered_limbs = list(num2text(HEAD) = MATRIX_RED_GREEN, num2text(CHEST) = MATRIX_GREEN, num2text(LEG_LEFT) = MATRIX_RED, num2text(LEG_RIGHT) = MATRIX_RED) /datum/sprite_accessory/mam_body_markings/bellyslim name = "Bellyslim" icon_state = "bellyslim" icon = 'modular_citadel/icons/mob/markings_notmammals.dmi' - covered_limbs = list(HEAD = MATRIX_RED_GREEN, CHEST = MATRIX_RED_GREEN, LEG_LEFT = MATRIX_RED, LEG_RIGHT = MATRIX_RED, ARM_LEFT = MATRIX_RED, ARM_RIGHT = MATRIX_RED) + covered_limbs = list(num2text(HEAD) = MATRIX_RED_GREEN, num2text(CHEST) = MATRIX_RED_GREEN, num2text(LEG_LEFT) = MATRIX_RED, num2text(LEG_RIGHT) = MATRIX_RED, num2text(ARM_LEFT) = MATRIX_RED, num2text(ARM_RIGHT) = MATRIX_RED) /datum/sprite_accessory/mam_body_markings/cow name = "Bovine" icon_state = "bovine" - covered_limbs = list(HEAD = MATRIX_ALL, CHEST = MATRIX_RED_GREEN, LEG_LEFT = MATRIX_ALL, LEG_RIGHT = MATRIX_ALL, ARM_LEFT = MATRIX_RED_GREEN, ARM_RIGHT = MATRIX_RED_GREEN) + covered_limbs = list(num2text(HEAD) = MATRIX_ALL, num2text(CHEST) = MATRIX_RED_GREEN, num2text(LEG_LEFT) = MATRIX_ALL, num2text(LEG_RIGHT) = MATRIX_ALL, num2text(ARM_LEFT) = MATRIX_RED_GREEN, num2text(ARM_RIGHT) = MATRIX_RED_GREEN) /datum/sprite_accessory/mam_body_markings/corgi name = "Corgi" icon_state = "corgi" - covered_limbs = list(HEAD = MATRIX_RED_GREEN, CHEST = MATRIX_RED_GREEN, LEG_LEFT = MATRIX_RED_GREEN, LEG_RIGHT = MATRIX_RED_GREEN, ARM_LEFT = MATRIX_RED_GREEN, ARM_RIGHT = MATRIX_RED_GREEN) + covered_limbs = list(num2text(HEAD) = MATRIX_RED_GREEN, num2text(CHEST) = MATRIX_RED_GREEN, num2text(LEG_LEFT) = MATRIX_RED_GREEN, num2text(LEG_RIGHT) = MATRIX_RED_GREEN, num2text(ARM_LEFT) = MATRIX_RED_GREEN, num2text(ARM_RIGHT) = MATRIX_RED_GREEN) /datum/sprite_accessory/mam_body_markings/corvid name = "Corvid" icon_state = "corvid" - covered_limbs = list(HEAD = MATRIX_RED_GREEN, CHEST = MATRIX_RED_GREEN, LEG_LEFT = MATRIX_ALL, LEG_RIGHT = MATRIX_ALL, ARM_LEFT = MATRIX_RED, ARM_RIGHT = MATRIX_RED) + covered_limbs = list(num2text(HEAD) = MATRIX_RED_GREEN, num2text(CHEST) = MATRIX_RED_GREEN, num2text(LEG_LEFT) = MATRIX_ALL, num2text(LEG_RIGHT) = MATRIX_ALL, num2text(ARM_LEFT) = MATRIX_RED, num2text(ARM_RIGHT) = MATRIX_RED) /datum/sprite_accessory/mam_body_markings/dalmation name = "Dalmation" icon_state = "dalmation" - covered_limbs = list(HEAD = MATRIX_RED_GREEN, CHEST = MATRIX_RED_GREEN, LEG_LEFT = MATRIX_RED_GREEN, LEG_RIGHT = MATRIX_RED_GREEN, ARM_LEFT = MATRIX_RED_GREEN, ARM_RIGHT = MATRIX_RED_GREEN) + covered_limbs = list(num2text(HEAD) = MATRIX_RED_GREEN, num2text(CHEST) = MATRIX_RED_GREEN, num2text(LEG_LEFT) = MATRIX_RED_GREEN, num2text(LEG_RIGHT) = MATRIX_RED_GREEN, num2text(ARM_LEFT) = MATRIX_RED_GREEN, num2text(ARM_RIGHT) = MATRIX_RED_GREEN) /datum/sprite_accessory/mam_body_markings/deer name = "Deer" icon_state = "deer" - covered_limbs = list(HEAD = MATRIX_RED_GREEN, CHEST = MATRIX_RED_GREEN, LEG_LEFT = MATRIX_GREEN_BLUE, LEG_RIGHT = MATRIX_GREEN_BLUE, ARM_LEFT = MATRIX_GREEN, ARM_RIGHT = MATRIX_GREEN) + covered_limbs = list(num2text(HEAD) = MATRIX_RED_GREEN, num2text(CHEST) = MATRIX_RED_GREEN, num2text(LEG_LEFT) = MATRIX_GREEN_BLUE, num2text(LEG_RIGHT) = MATRIX_GREEN_BLUE, num2text(ARM_LEFT) = MATRIX_GREEN, num2text(ARM_RIGHT) = MATRIX_GREEN) /datum/sprite_accessory/mam_body_markings/dog name = "Dog" icon_state = "dog" - covered_limbs = list(HEAD = MATRIX_RED_BLUE, CHEST = MATRIX_ALL, LEG_LEFT = MATRIX_GREEN_BLUE, LEG_RIGHT = MATRIX_GREEN_BLUE, ARM_LEFT = MATRIX_ALL, ARM_RIGHT = MATRIX_ALL) + covered_limbs = list(num2text(HEAD) = MATRIX_RED_BLUE, num2text(CHEST) = MATRIX_ALL, num2text(LEG_LEFT) = MATRIX_GREEN_BLUE, num2text(LEG_RIGHT) = MATRIX_GREEN_BLUE, num2text(ARM_LEFT) = MATRIX_ALL, num2text(ARM_RIGHT) = MATRIX_ALL) /datum/sprite_accessory/mam_body_markings/eevee name = "Eevee" icon_state = "eevee" - covered_limbs = list(HEAD = MATRIX_RED_GREEN, CHEST = MATRIX_GREEN) + covered_limbs = list(num2text(HEAD) = MATRIX_RED_GREEN, num2text(CHEST) = MATRIX_GREEN) /datum/sprite_accessory/mam_body_markings/fennec name = "Fennec" icon_state = "Fennec" - covered_limbs = list(HEAD = MATRIX_RED_GREEN, CHEST = MATRIX_RED_GREEN, LEG_LEFT = MATRIX_RED_GREEN, LEG_RIGHT = MATRIX_RED_GREEN, ARM_LEFT = MATRIX_RED_GREEN, ARM_RIGHT = MATRIX_RED_GREEN) + covered_limbs = list(num2text(HEAD) = MATRIX_RED_GREEN, num2text(CHEST) = MATRIX_RED_GREEN, num2text(LEG_LEFT) = MATRIX_RED_GREEN, num2text(LEG_RIGHT) = MATRIX_RED_GREEN, num2text(ARM_LEFT) = MATRIX_RED_GREEN, num2text(ARM_RIGHT) = MATRIX_RED_GREEN) /datum/sprite_accessory/mam_body_markings/fox name = "Fox" icon_state = "fox" - covered_limbs = list(HEAD = MATRIX_RED_GREEN, CHEST = MATRIX_RED_GREEN, LEG_LEFT = MATRIX_RED_GREEN, LEG_RIGHT = MATRIX_RED_GREEN, ARM_LEFT = MATRIX_RED_BLUE, ARM_RIGHT = MATRIX_RED_BLUE) + covered_limbs = list(num2text(HEAD) = MATRIX_RED_GREEN, num2text(CHEST) = MATRIX_RED_GREEN, num2text(LEG_LEFT) = MATRIX_RED_GREEN, num2text(LEG_RIGHT) = MATRIX_RED_GREEN, num2text(ARM_LEFT) = MATRIX_RED_BLUE, num2text(ARM_RIGHT) = MATRIX_RED_BLUE) /datum/sprite_accessory/mam_body_markings/frog name = "Frog" icon_state = "frog" icon = 'modular_citadel/icons/mob/markings_notmammals.dmi' - covered_limbs = list(HEAD = MATRIX_RED_GREEN, CHEST = MATRIX_GREEN, LEG_LEFT = MATRIX_GREEN, LEG_RIGHT = MATRIX_GREEN, ARM_LEFT = MATRIX_GREEN, ARM_RIGHT = MATRIX_GREEN) + covered_limbs = list(num2text(HEAD) = MATRIX_RED_GREEN, num2text(CHEST) = MATRIX_GREEN, num2text(LEG_LEFT) = MATRIX_GREEN, num2text(LEG_RIGHT) = MATRIX_GREEN, num2text(ARM_LEFT) = MATRIX_GREEN, num2text(ARM_RIGHT) = MATRIX_GREEN) /datum/sprite_accessory/mam_body_markings/goat name = "Goat" icon_state = "goat" - covered_limbs = list(HEAD = MATRIX_RED, CHEST = MATRIX_RED, LEG_LEFT = MATRIX_RED_BLUE, LEG_RIGHT = MATRIX_RED_BLUE, ARM_LEFT = MATRIX_RED_BLUE, ARM_RIGHT = MATRIX_RED_BLUE) + covered_limbs = list(num2text(HEAD) = MATRIX_RED, num2text(CHEST) = MATRIX_RED, num2text(LEG_LEFT) = MATRIX_RED_BLUE, num2text(LEG_RIGHT) = MATRIX_RED_BLUE, num2text(ARM_LEFT) = MATRIX_RED_BLUE, num2text(ARM_RIGHT) = MATRIX_RED_BLUE) /datum/sprite_accessory/mam_body_markings/handsfeet name = "Handsfeet" icon_state = "handsfeet" icon = 'modular_citadel/icons/mob/markings_notmammals.dmi' - covered_limbs = list(HEAD = MATRIX_RED, CHEST = MATRIX_RED, LEG_LEFT = MATRIX_RED_GREEN, LEG_RIGHT = MATRIX_RED_GREEN, ARM_LEFT = MATRIX_RED_GREEN, ARM_RIGHT = MATRIX_RED_GREEN) + covered_limbs = list(num2text(HEAD) = MATRIX_RED, num2text(CHEST) = MATRIX_RED, num2text(LEG_LEFT) = MATRIX_RED_GREEN, num2text(LEG_RIGHT) = MATRIX_RED_GREEN, num2text(ARM_LEFT) = MATRIX_RED_GREEN, num2text(ARM_RIGHT) = MATRIX_RED_GREEN) /datum/sprite_accessory/mam_body_markings/hawk name = "Hawk" icon_state = "hawk" - covered_limbs = list(HEAD = MATRIX_RED_GREEN, CHEST = MATRIX_RED_GREEN, LEG_LEFT = MATRIX_ALL, LEG_RIGHT = MATRIX_ALL, ARM_LEFT = MATRIX_RED, ARM_RIGHT = MATRIX_RED) + covered_limbs = list(num2text(HEAD) = MATRIX_RED_GREEN, num2text(CHEST) = MATRIX_RED_GREEN, num2text(LEG_LEFT) = MATRIX_ALL, num2text(LEG_RIGHT) = MATRIX_ALL, num2text(ARM_LEFT) = MATRIX_RED, num2text(ARM_RIGHT) = MATRIX_RED) /datum/sprite_accessory/mam_body_markings/husky name = "Husky" icon_state = "husky" - covered_limbs = list(HEAD = MATRIX_RED_GREEN, CHEST = MATRIX_RED_GREEN, LEG_LEFT = MATRIX_ALL, LEG_RIGHT = MATRIX_ALL, ARM_LEFT = MATRIX_RED_GREEN, ARM_RIGHT = MATRIX_RED_GREEN) + covered_limbs = list(num2text(HEAD) = MATRIX_RED_GREEN, num2text(CHEST) = MATRIX_RED_GREEN, num2text(LEG_LEFT) = MATRIX_ALL, num2text(LEG_RIGHT) = MATRIX_ALL, num2text(ARM_LEFT) = MATRIX_RED_GREEN, num2text(ARM_RIGHT) = MATRIX_RED_GREEN) /datum/sprite_accessory/mam_body_markings/hyena name = "Hyena" icon_state = "hyena" - covered_limbs = list(HEAD = MATRIX_ALL, CHEST = MATRIX_ALL, LEG_LEFT = MATRIX_RED_GREEN, LEG_RIGHT = MATRIX_RED_GREEN, ARM_LEFT = MATRIX_RED_GREEN, ARM_RIGHT = MATRIX_RED_GREEN) + covered_limbs = list(num2text(HEAD) = MATRIX_ALL, num2text(CHEST) = MATRIX_ALL, num2text(LEG_LEFT) = MATRIX_RED_GREEN, num2text(LEG_RIGHT) = MATRIX_RED_GREEN, num2text(ARM_LEFT) = MATRIX_RED_GREEN, num2text(ARM_RIGHT) = MATRIX_RED_GREEN) /datum/sprite_accessory/mam_body_markings/insect name = "Insect" @@ -137,118 +137,118 @@ /datum/sprite_accessory/mam_body_markings/lab name = "Lab" icon_state = "lab" - covered_limbs = list(HEAD = MATRIX_RED, CHEST = MATRIX_RED, LEG_LEFT = MATRIX_RED, LEG_RIGHT = MATRIX_RED, ARM_LEFT = MATRIX_RED, ARM_RIGHT = MATRIX_RED) + covered_limbs = list(num2text(HEAD) = MATRIX_RED, num2text(CHEST) = MATRIX_RED, num2text(LEG_LEFT) = MATRIX_RED, num2text(LEG_RIGHT) = MATRIX_RED, num2text(ARM_LEFT) = MATRIX_RED, num2text(ARM_RIGHT) = MATRIX_RED) /datum/sprite_accessory/mam_body_markings/orca name = "Orca" icon_state = "orca" - covered_limbs = list(HEAD = MATRIX_RED_GREEN, CHEST = MATRIX_RED_GREEN, LEG_LEFT = MATRIX_RED_GREEN, LEG_RIGHT = MATRIX_RED_GREEN, ARM_LEFT = MATRIX_RED_GREEN, ARM_RIGHT = MATRIX_RED_GREEN) + covered_limbs = list(num2text(HEAD) = MATRIX_RED_GREEN, num2text(CHEST) = MATRIX_RED_GREEN, num2text(LEG_LEFT) = MATRIX_RED_GREEN, num2text(LEG_RIGHT) = MATRIX_RED_GREEN, num2text(ARM_LEFT) = MATRIX_RED_GREEN, num2text(ARM_RIGHT) = MATRIX_RED_GREEN) /datum/sprite_accessory/mam_body_markings/otie name = "Otie" icon_state = "otie" - covered_limbs = list(HEAD = MATRIX_ALL, CHEST = MATRIX_ALL, LEG_LEFT = MATRIX_ALL, LEG_RIGHT = MATRIX_ALL, ARM_LEFT = MATRIX_ALL, ARM_RIGHT = MATRIX_ALL) + covered_limbs = list(num2text(HEAD) = MATRIX_ALL, num2text(CHEST) = MATRIX_ALL, num2text(LEG_LEFT) = MATRIX_ALL, num2text(LEG_RIGHT) = MATRIX_ALL, num2text(ARM_LEFT) = MATRIX_ALL, num2text(ARM_RIGHT) = MATRIX_ALL) /datum/sprite_accessory/mam_body_markings/otter name = "Otter" icon_state = "otter" - covered_limbs = list(HEAD = MATRIX_ALL, CHEST = MATRIX_GREEN) + covered_limbs = list(num2text(HEAD) = MATRIX_ALL, num2text(CHEST) = MATRIX_GREEN) /datum/sprite_accessory/mam_body_markings/panther name = "Panther" icon_state = "panther" - covered_limbs = list(HEAD = MATRIX_RED_GREEN, CHEST = MATRIX_RED_GREEN, LEG_LEFT = MATRIX_RED_GREEN, LEG_RIGHT = MATRIX_RED_GREEN, ARM_LEFT = MATRIX_RED_GREEN, ARM_RIGHT = MATRIX_RED_GREEN) + covered_limbs = list(num2text(HEAD) = MATRIX_RED_GREEN, num2text(CHEST) = MATRIX_RED_GREEN, num2text(LEG_LEFT) = MATRIX_RED_GREEN, num2text(LEG_RIGHT) = MATRIX_RED_GREEN, num2text(ARM_LEFT) = MATRIX_RED_GREEN, num2text(ARM_RIGHT) = MATRIX_RED_GREEN) /datum/sprite_accessory/mam_body_markings/plain name = "Plain" icon_state = "plain" icon = 'modular_citadel/icons/mob/markings_notmammals.dmi' - covered_limbs = list(HEAD = MATRIX_RED, CHEST = MATRIX_RED, LEG_LEFT = MATRIX_RED, LEG_RIGHT = MATRIX_RED, ARM_LEFT = MATRIX_RED, ARM_RIGHT = MATRIX_RED) + covered_limbs = list(num2text(HEAD) = MATRIX_RED, num2text(CHEST) = MATRIX_RED, num2text(LEG_LEFT) = MATRIX_RED, num2text(LEG_RIGHT) = MATRIX_RED, num2text(ARM_LEFT) = MATRIX_RED, num2text(ARM_RIGHT) = MATRIX_RED) /datum/sprite_accessory/mam_body_markings/possum name = "Possum" icon_state = "possum" - covered_limbs = list(HEAD = MATRIX_RED_GREEN, CHEST = MATRIX_RED_GREEN, LEG_LEFT = MATRIX_RED_BLUE, LEG_RIGHT = MATRIX_RED_BLUE, ARM_LEFT = MATRIX_RED_BLUE, ARM_RIGHT = MATRIX_RED_BLUE) + covered_limbs = list(num2text(HEAD) = MATRIX_RED_GREEN, num2text(CHEST) = MATRIX_RED_GREEN, num2text(LEG_LEFT) = MATRIX_RED_BLUE, num2text(LEG_RIGHT) = MATRIX_RED_BLUE, num2text(ARM_LEFT) = MATRIX_RED_BLUE, num2text(ARM_RIGHT) = MATRIX_RED_BLUE) /datum/sprite_accessory/mam_body_markings/raccoon name = "Raccoon" icon_state = "raccoon" - covered_limbs = list(HEAD = MATRIX_ALL, CHEST = MATRIX_RED_GREEN, LEG_LEFT = MATRIX_ALL, LEG_RIGHT = MATRIX_ALL, ARM_LEFT = MATRIX_RED_GREEN, ARM_RIGHT = MATRIX_RED_GREEN) + covered_limbs = list(num2text(HEAD) = MATRIX_ALL, num2text(CHEST) = MATRIX_RED_GREEN, num2text(LEG_LEFT) = MATRIX_ALL, num2text(LEG_RIGHT) = MATRIX_ALL, num2text(ARM_LEFT) = MATRIX_RED_GREEN, num2text(ARM_RIGHT) = MATRIX_RED_GREEN) /datum/sprite_accessory/mam_body_markings/sergal name = "Sergal" icon_state = "sergal" - covered_limbs = list(HEAD = MATRIX_RED_GREEN, CHEST = MATRIX_RED_GREEN) + covered_limbs = list(num2text(HEAD) = MATRIX_RED_GREEN, num2text(CHEST) = MATRIX_RED_GREEN) /datum/sprite_accessory/mam_body_markings/pede name = "Scolipede" icon_state = "scolipede" icon = 'modular_citadel/icons/mob/markings_notmammals.dmi' - covered_limbs = list(HEAD = MATRIX_GREEN, CHEST = MATRIX_GREEN_BLUE, LEG_LEFT = MATRIX_GREEN, LEG_RIGHT = MATRIX_GREEN, ARM_LEFT = MATRIX_GREEN, ARM_RIGHT = MATRIX_GREEN) + covered_limbs = list(num2text(HEAD) = MATRIX_GREEN, num2text(CHEST) = MATRIX_GREEN_BLUE, num2text(LEG_LEFT) = MATRIX_GREEN, num2text(LEG_RIGHT) = MATRIX_GREEN, num2text(ARM_LEFT) = MATRIX_GREEN, num2text(ARM_RIGHT) = MATRIX_GREEN) /datum/sprite_accessory/mam_body_markings/shark name = "Shark" icon_state = "shark" - covered_limbs = list(HEAD = MATRIX_RED_GREEN, CHEST = MATRIX_RED, LEG_LEFT = MATRIX_RED, LEG_RIGHT = MATRIX_RED_GREEN, ARM_LEFT = MATRIX_RED_GREEN, ARM_RIGHT = MATRIX_RED_GREEN) + covered_limbs = list(num2text(HEAD) = MATRIX_RED_GREEN, num2text(CHEST) = MATRIX_RED, num2text(LEG_LEFT) = MATRIX_RED, num2text(LEG_RIGHT) = MATRIX_RED_GREEN, num2text(ARM_LEFT) = MATRIX_RED_GREEN, num2text(ARM_RIGHT) = MATRIX_RED_GREEN) /datum/sprite_accessory/mam_body_markings/shepherd name = "Shepherd" icon_state = "shepherd" - covered_limbs = list(HEAD = MATRIX_ALL, CHEST = MATRIX_ALL, LEG_LEFT = MATRIX_RED_GREEN, LEG_RIGHT = MATRIX_RED_GREEN, ARM_LEFT = MATRIX_RED, ARM_RIGHT = MATRIX_RED) + covered_limbs = list(num2text(HEAD) = MATRIX_ALL, num2text(CHEST) = MATRIX_ALL, num2text(LEG_LEFT) = MATRIX_RED_GREEN, num2text(LEG_RIGHT) = MATRIX_RED_GREEN, num2text(ARM_LEFT) = MATRIX_RED, num2text(ARM_RIGHT) = MATRIX_RED) /datum/sprite_accessory/mam_body_markings/skunk name = "Skunk" icon_state = "skunk" - covered_limbs = list(HEAD = MATRIX_RED_GREEN, CHEST = MATRIX_RED_GREEN, LEG_LEFT = MATRIX_RED_GREEN, LEG_RIGHT = MATRIX_RED_GREEN, ARM_LEFT = MATRIX_RED, ARM_RIGHT = MATRIX_RED) + covered_limbs = list(num2text(HEAD) = MATRIX_RED_GREEN, num2text(CHEST) = MATRIX_RED_GREEN, num2text(LEG_LEFT) = MATRIX_RED_GREEN, num2text(LEG_RIGHT) = MATRIX_RED_GREEN, num2text(ARM_LEFT) = MATRIX_RED, num2text(ARM_RIGHT) = MATRIX_RED) /datum/sprite_accessory/mam_body_markings/tajaran name = "Tajaran" icon_state = "tajaran" - covered_limbs = list(HEAD = MATRIX_RED_GREEN, CHEST = MATRIX_RED_GREEN, LEG_LEFT = MATRIX_RED, LEG_RIGHT = MATRIX_RED, ARM_LEFT = MATRIX_RED, ARM_RIGHT = MATRIX_RED) + covered_limbs = list(num2text(HEAD) = MATRIX_RED_GREEN, num2text(CHEST) = MATRIX_RED_GREEN, num2text(LEG_LEFT) = MATRIX_RED, num2text(LEG_RIGHT) = MATRIX_RED, num2text(ARM_LEFT) = MATRIX_RED, num2text(ARM_RIGHT) = MATRIX_RED) /datum/sprite_accessory/mam_body_markings/tiger name = "Tiger" icon_state = "tiger" - covered_limbs = list(HEAD = MATRIX_ALL, CHEST = MATRIX_ALL, LEG_LEFT = MATRIX_ALL, LEG_RIGHT = MATRIX_ALL, ARM_LEFT = MATRIX_RED_BLUE, ARM_RIGHT = MATRIX_RED_BLUE) + covered_limbs = list(num2text(HEAD) = MATRIX_ALL, num2text(CHEST) = MATRIX_ALL, num2text(LEG_LEFT) = MATRIX_ALL, num2text(LEG_RIGHT) = MATRIX_ALL, num2text(ARM_LEFT) = MATRIX_RED_BLUE, num2text(ARM_RIGHT) = MATRIX_RED_BLUE) /datum/sprite_accessory/mam_body_markings/turian name = "Turian" icon_state = "turian" icon = 'modular_citadel/icons/mob/markings_notmammals.dmi' - covered_limbs = list(HEAD = MATRIX_RED_GREEN, CHEST = MATRIX_RED, LEG_LEFT = MATRIX_RED, LEG_RIGHT = MATRIX_RED, ARM_LEFT = MATRIX_RED, ARM_RIGHT = MATRIX_RED) + covered_limbs = list(num2text(HEAD) = MATRIX_RED_GREEN, num2text(CHEST) = MATRIX_RED, num2text(LEG_LEFT) = MATRIX_RED, num2text(LEG_RIGHT) = MATRIX_RED, num2text(ARM_LEFT) = MATRIX_RED, num2text(ARM_RIGHT) = MATRIX_RED) /datum/sprite_accessory/mam_body_markings/wolf name = "Wolf" icon_state = "wolf" - covered_limbs = list(HEAD = MATRIX_ALL, CHEST = MATRIX_ALL, LEG_LEFT = MATRIX_RED_BLUE, LEG_RIGHT = MATRIX_RED_BLUE, ARM_LEFT = MATRIX_RED_BLUE, ARM_RIGHT = MATRIX_RED_BLUE) + covered_limbs = list(num2text(HEAD) = MATRIX_ALL, num2text(CHEST) = MATRIX_ALL, num2text(LEG_LEFT) = MATRIX_RED_BLUE, num2text(LEG_RIGHT) = MATRIX_RED_BLUE, num2text(ARM_LEFT) = MATRIX_RED_BLUE, num2text(ARM_RIGHT) = MATRIX_RED_BLUE) /datum/sprite_accessory/mam_body_markings/xeno name = "Xeno" icon_state = "xeno" icon = 'modular_citadel/icons/mob/markings_notmammals.dmi' - covered_limbs = list(HEAD = MATRIX_BLUE, CHEST = MATRIX_GREEN, LEG_LEFT = MATRIX_GREEN, LEG_RIGHT = MATRIX_GREEN, ARM_LEFT = MATRIX_GREEN, ARM_RIGHT = MATRIX_GREEN) + covered_limbs = list(num2text(HEAD) = MATRIX_BLUE, num2text(CHEST) = MATRIX_GREEN, num2text(LEG_LEFT) = MATRIX_GREEN, num2text(LEG_RIGHT) = MATRIX_GREEN, num2text(ARM_LEFT) = MATRIX_GREEN, num2text(ARM_RIGHT) = MATRIX_GREEN) // sticking old lizard markings here for now /datum/sprite_accessory/mam_body_markings/dtiger name = "Dark Tiger Body" icon_state = "dtiger" - covered_limbs = list(HEAD = MATRIX_RED, CHEST = MATRIX_RED, LEG_LEFT = MATRIX_RED, LEG_RIGHT = MATRIX_RED, ARM_LEFT = MATRIX_RED, ARM_RIGHT = MATRIX_RED) + covered_limbs = list(num2text(HEAD) = MATRIX_RED, num2text(CHEST) = MATRIX_RED, num2text(LEG_LEFT) = MATRIX_RED, num2text(LEG_RIGHT) = MATRIX_RED, num2text(ARM_LEFT) = MATRIX_RED, num2text(ARM_RIGHT) = MATRIX_RED) /datum/sprite_accessory/mam_body_markings/guilmon name = "Guilmon" icon_state = "guilmon" icon = 'modular_citadel/icons/mob/markings_notmammals.dmi' - covered_limbs = list(HEAD = MATRIX_RED_BLUE, CHEST = MATRIX_GREEN_BLUE, LEG_LEFT = MATRIX_BLUE, LEG_RIGHT = MATRIX_BLUE, ARM_LEFT = MATRIX_GREEN_BLUE, ARM_RIGHT = MATRIX_GREEN_BLUE) + covered_limbs = list(num2text(HEAD) = MATRIX_RED_BLUE, num2text(CHEST) = MATRIX_GREEN_BLUE, num2text(LEG_LEFT) = MATRIX_BLUE, num2text(LEG_RIGHT) = MATRIX_BLUE, num2text(ARM_LEFT) = MATRIX_GREEN_BLUE, num2text(ARM_RIGHT) = MATRIX_GREEN_BLUE) /datum/sprite_accessory/mam_body_markings/ltiger name = "Light Tiger Body" icon_state = "ltiger" - covered_limbs = list(HEAD = MATRIX_RED, CHEST = MATRIX_RED, LEG_LEFT = MATRIX_RED, LEG_RIGHT = MATRIX_RED, ARM_LEFT = MATRIX_RED, ARM_RIGHT = MATRIX_RED) + covered_limbs = list(num2text(HEAD) = MATRIX_RED, num2text(CHEST) = MATRIX_RED, num2text(LEG_LEFT) = MATRIX_RED, num2text(LEG_RIGHT) = MATRIX_RED, num2text(ARM_LEFT) = MATRIX_RED, num2text(ARM_RIGHT) = MATRIX_RED) /datum/sprite_accessory/mam_body_markings/lbelly name = "Light Belly" icon_state = "lbelly" - covered_limbs = list(HEAD = MATRIX_RED, CHEST = MATRIX_RED, LEG_LEFT = MATRIX_RED, LEG_RIGHT = MATRIX_RED, ARM_LEFT = MATRIX_RED, ARM_RIGHT = MATRIX_RED) + covered_limbs = list(num2text(HEAD) = MATRIX_RED, num2text(CHEST) = MATRIX_RED, num2text(LEG_LEFT) = MATRIX_RED, num2text(LEG_RIGHT) = MATRIX_RED, num2text(ARM_LEFT) = MATRIX_RED, num2text(ARM_RIGHT) = MATRIX_RED) /****************************************** ************* Insect Markings ************* From 80599201cf212013d86b8ca02e4ea2e1cd388f49 Mon Sep 17 00:00:00 2001 From: timothyteakettle <59849408+timothyteakettle@users.noreply.github.com> Date: Thu, 6 May 2021 22:39:07 +0100 Subject: [PATCH 138/259] better fix --- code/modules/client/preferences.dm | 4 +- .../sprite_accessories/body_markings.dm | 92 +++++++++---------- 2 files changed, 48 insertions(+), 48 deletions(-) diff --git a/code/modules/client/preferences.dm b/code/modules/client/preferences.dm index b6b134cb1a..1572d45d2f 100644 --- a/code/modules/client/preferences.dm +++ b/code/modules/client/preferences.dm @@ -535,7 +535,7 @@ GLOBAL_LIST_EMPTY(preferences_datums) var/color_marking_dat = "" var/number_colors = 1 var/datum/sprite_accessory/mam_body_markings/S = GLOB.mam_body_markings_list[marking_list[2]] - var/matrixed_sections = S.covered_limbs[limb_value] + var/matrixed_sections = S.covered_limbs[actual_name] if(S && matrixed_sections) // if it has nothing initialize it to white if(length(marking_list) == 2) @@ -2446,7 +2446,7 @@ GLOBAL_LIST_EMPTY(preferences_datums) if(istype(S)) if(istype(S, /datum/sprite_accessory/mam_body_markings)) var/datum/sprite_accessory/mam_body_markings/marking = S - if(!(limb_value in marking.covered_limbs)) + if(!(selected_limb in marking.covered_limbs)) continue if((!S.ckeys_allowed) || (S.ckeys_allowed.Find(user.client.ckey))) diff --git a/code/modules/mob/dead/new_player/sprite_accessories/body_markings.dm b/code/modules/mob/dead/new_player/sprite_accessories/body_markings.dm index 0d9e845d74..285e7ca7e2 100644 --- a/code/modules/mob/dead/new_player/sprite_accessories/body_markings.dm +++ b/code/modules/mob/dead/new_player/sprite_accessories/body_markings.dm @@ -14,7 +14,7 @@ icon = 'modular_citadel/icons/mob/mam_markings.dmi' recommended_species = list("mammal", "xeno", "slimeperson", "podweak") matrixed_sections = MATRIX_ALL // this value is used if there is no value in covered_limbs, don't rely on it, it's a backup value - var/list/covered_limbs = list(HEAD, CHEST, LEG_LEFT, LEG_RIGHT, ARM_LEFT, ARM_RIGHT) + var/list/covered_limbs = list("Head", "Chest", "Left Leg", "Right Leg", "Left Arm", "Right Arm") /datum/sprite_accessory/mam_body_markings/none name = "None" @@ -27,107 +27,107 @@ /datum/sprite_accessory/mam_body_markings/redpanda name = "Redpanda" icon_state = "redpanda" - covered_limbs = list(num2text(HEAD) = MATRIX_RED_BLUE, num2text(CHEST) = MATRIX_RED_GREEN, num2text(LEG_LEFT) = MATRIX_RED_GREEN, num2text(LEG_RIGHT) = MATRIX_RED_GREEN, num2text(ARM_LEFT) = MATRIX_RED_GREEN, num2text(ARM_RIGHT) = MATRIX_RED_GREEN) + covered_limbs = list("Head" = MATRIX_RED_BLUE, "Chest" = MATRIX_RED_GREEN, "Left Leg" = MATRIX_RED_GREEN, "Right Leg" = MATRIX_RED_GREEN, "Left Arm" = MATRIX_RED_GREEN, "Right Arm" = MATRIX_RED_GREEN) /datum/sprite_accessory/mam_body_markings/bat name = "Bat" icon_state = "bat" - covered_limbs = list(num2text(HEAD) = MATRIX_RED_GREEN, num2text(CHEST) = MATRIX_ALL, num2text(LEG_LEFT) = MATRIX_RED_BLUE, num2text(LEG_RIGHT) = MATRIX_RED_BLUE, num2text(ARM_LEFT) = MATRIX_RED, num2text(ARM_RIGHT) = MATRIX_RED) + covered_limbs = list("Head" = MATRIX_RED_GREEN, "Chest" = MATRIX_ALL, "Left Leg" = MATRIX_RED_BLUE, "Right Leg" = MATRIX_RED_BLUE, "Left Arm" = MATRIX_RED, "Right Arm" = MATRIX_RED) /datum/sprite_accessory/mam_body_markings/bee name = "Bee" icon_state = "bee" icon = 'modular_citadel/icons/mob/markings_notmammals.dmi' - covered_limbs = list(num2text(HEAD) = MATRIX_RED_GREEN, num2text(CHEST) = MATRIX_GREEN, num2text(LEG_LEFT) = MATRIX_GREEN, num2text(LEG_RIGHT) = MATRIX_GREEN, num2text(ARM_LEFT) = MATRIX_GREEN, num2text(ARM_RIGHT) = MATRIX_GREEN) + covered_limbs = list("Head" = MATRIX_RED_GREEN, "Chest" = MATRIX_GREEN, "Left Leg" = MATRIX_GREEN, "Right Leg" = MATRIX_GREEN, "Left Arm" = MATRIX_GREEN, "Right Arm" = MATRIX_GREEN) /datum/sprite_accessory/mam_body_markings/belly name = "Belly" icon_state = "belly" icon = 'modular_citadel/icons/mob/markings_notmammals.dmi' - covered_limbs = list(num2text(HEAD) = MATRIX_RED_GREEN, num2text(CHEST) = MATRIX_GREEN, num2text(LEG_LEFT) = MATRIX_RED, num2text(LEG_RIGHT) = MATRIX_RED) + covered_limbs = list("Head" = MATRIX_RED_GREEN, "Chest" = MATRIX_GREEN, "Left Leg" = MATRIX_RED, "Right Leg" = MATRIX_RED) /datum/sprite_accessory/mam_body_markings/bellyslim name = "Bellyslim" icon_state = "bellyslim" icon = 'modular_citadel/icons/mob/markings_notmammals.dmi' - covered_limbs = list(num2text(HEAD) = MATRIX_RED_GREEN, num2text(CHEST) = MATRIX_RED_GREEN, num2text(LEG_LEFT) = MATRIX_RED, num2text(LEG_RIGHT) = MATRIX_RED, num2text(ARM_LEFT) = MATRIX_RED, num2text(ARM_RIGHT) = MATRIX_RED) + covered_limbs = list("Head" = MATRIX_RED_GREEN, "Chest" = MATRIX_RED_GREEN, "Left Leg" = MATRIX_RED, "Right Leg" = MATRIX_RED, "Left Arm" = MATRIX_RED, "Right Arm" = MATRIX_RED) /datum/sprite_accessory/mam_body_markings/cow name = "Bovine" icon_state = "bovine" - covered_limbs = list(num2text(HEAD) = MATRIX_ALL, num2text(CHEST) = MATRIX_RED_GREEN, num2text(LEG_LEFT) = MATRIX_ALL, num2text(LEG_RIGHT) = MATRIX_ALL, num2text(ARM_LEFT) = MATRIX_RED_GREEN, num2text(ARM_RIGHT) = MATRIX_RED_GREEN) + covered_limbs = list("Head" = MATRIX_ALL, "Chest" = MATRIX_RED_GREEN, "Left Leg" = MATRIX_ALL, "Right Leg" = MATRIX_ALL, "Left Arm" = MATRIX_RED_GREEN, "Right Arm" = MATRIX_RED_GREEN) /datum/sprite_accessory/mam_body_markings/corgi name = "Corgi" icon_state = "corgi" - covered_limbs = list(num2text(HEAD) = MATRIX_RED_GREEN, num2text(CHEST) = MATRIX_RED_GREEN, num2text(LEG_LEFT) = MATRIX_RED_GREEN, num2text(LEG_RIGHT) = MATRIX_RED_GREEN, num2text(ARM_LEFT) = MATRIX_RED_GREEN, num2text(ARM_RIGHT) = MATRIX_RED_GREEN) + covered_limbs = list("Head" = MATRIX_RED_GREEN, "Chest" = MATRIX_RED_GREEN, "Left Leg" = MATRIX_RED_GREEN, "Right Leg" = MATRIX_RED_GREEN, "Left Arm" = MATRIX_RED_GREEN, "Right Arm" = MATRIX_RED_GREEN) /datum/sprite_accessory/mam_body_markings/corvid name = "Corvid" icon_state = "corvid" - covered_limbs = list(num2text(HEAD) = MATRIX_RED_GREEN, num2text(CHEST) = MATRIX_RED_GREEN, num2text(LEG_LEFT) = MATRIX_ALL, num2text(LEG_RIGHT) = MATRIX_ALL, num2text(ARM_LEFT) = MATRIX_RED, num2text(ARM_RIGHT) = MATRIX_RED) + covered_limbs = list("Head" = MATRIX_RED_GREEN, "Chest" = MATRIX_RED_GREEN, "Left Leg" = MATRIX_ALL, "Right Leg" = MATRIX_ALL, "Left Arm" = MATRIX_RED, "Right Arm" = MATRIX_RED) /datum/sprite_accessory/mam_body_markings/dalmation name = "Dalmation" icon_state = "dalmation" - covered_limbs = list(num2text(HEAD) = MATRIX_RED_GREEN, num2text(CHEST) = MATRIX_RED_GREEN, num2text(LEG_LEFT) = MATRIX_RED_GREEN, num2text(LEG_RIGHT) = MATRIX_RED_GREEN, num2text(ARM_LEFT) = MATRIX_RED_GREEN, num2text(ARM_RIGHT) = MATRIX_RED_GREEN) + covered_limbs = list("Head" = MATRIX_RED_GREEN, "Chest" = MATRIX_RED_GREEN, "Left Leg" = MATRIX_RED_GREEN, "Right Leg" = MATRIX_RED_GREEN, "Left Arm" = MATRIX_RED_GREEN, "Right Arm" = MATRIX_RED_GREEN) /datum/sprite_accessory/mam_body_markings/deer name = "Deer" icon_state = "deer" - covered_limbs = list(num2text(HEAD) = MATRIX_RED_GREEN, num2text(CHEST) = MATRIX_RED_GREEN, num2text(LEG_LEFT) = MATRIX_GREEN_BLUE, num2text(LEG_RIGHT) = MATRIX_GREEN_BLUE, num2text(ARM_LEFT) = MATRIX_GREEN, num2text(ARM_RIGHT) = MATRIX_GREEN) + covered_limbs = list("Head" = MATRIX_RED_GREEN, "Chest" = MATRIX_RED_GREEN, "Left Leg" = MATRIX_GREEN_BLUE, "Right Leg" = MATRIX_GREEN_BLUE, "Left Arm" = MATRIX_GREEN, "Right Arm" = MATRIX_GREEN) /datum/sprite_accessory/mam_body_markings/dog name = "Dog" icon_state = "dog" - covered_limbs = list(num2text(HEAD) = MATRIX_RED_BLUE, num2text(CHEST) = MATRIX_ALL, num2text(LEG_LEFT) = MATRIX_GREEN_BLUE, num2text(LEG_RIGHT) = MATRIX_GREEN_BLUE, num2text(ARM_LEFT) = MATRIX_ALL, num2text(ARM_RIGHT) = MATRIX_ALL) + covered_limbs = list("Head" = MATRIX_RED_BLUE, "Chest" = MATRIX_ALL, "Left Leg" = MATRIX_GREEN_BLUE, "Right Leg" = MATRIX_GREEN_BLUE, "Left Arm" = MATRIX_ALL, "Right Arm" = MATRIX_ALL) /datum/sprite_accessory/mam_body_markings/eevee name = "Eevee" icon_state = "eevee" - covered_limbs = list(num2text(HEAD) = MATRIX_RED_GREEN, num2text(CHEST) = MATRIX_GREEN) + covered_limbs = list("Head" = MATRIX_RED_GREEN, "Chest" = MATRIX_GREEN) /datum/sprite_accessory/mam_body_markings/fennec name = "Fennec" icon_state = "Fennec" - covered_limbs = list(num2text(HEAD) = MATRIX_RED_GREEN, num2text(CHEST) = MATRIX_RED_GREEN, num2text(LEG_LEFT) = MATRIX_RED_GREEN, num2text(LEG_RIGHT) = MATRIX_RED_GREEN, num2text(ARM_LEFT) = MATRIX_RED_GREEN, num2text(ARM_RIGHT) = MATRIX_RED_GREEN) + covered_limbs = list("Head" = MATRIX_RED_GREEN, "Chest" = MATRIX_RED_GREEN, "Left Leg" = MATRIX_RED_GREEN, "Right Leg" = MATRIX_RED_GREEN, "Left Arm" = MATRIX_RED_GREEN, "Right Arm" = MATRIX_RED_GREEN) /datum/sprite_accessory/mam_body_markings/fox name = "Fox" icon_state = "fox" - covered_limbs = list(num2text(HEAD) = MATRIX_RED_GREEN, num2text(CHEST) = MATRIX_RED_GREEN, num2text(LEG_LEFT) = MATRIX_RED_GREEN, num2text(LEG_RIGHT) = MATRIX_RED_GREEN, num2text(ARM_LEFT) = MATRIX_RED_BLUE, num2text(ARM_RIGHT) = MATRIX_RED_BLUE) + covered_limbs = list("Head" = MATRIX_RED_GREEN, "Chest" = MATRIX_RED_GREEN, "Left Leg" = MATRIX_RED_GREEN, "Right Leg" = MATRIX_RED_GREEN, "Left Arm" = MATRIX_RED_BLUE, "Right Arm" = MATRIX_RED_BLUE) /datum/sprite_accessory/mam_body_markings/frog name = "Frog" icon_state = "frog" icon = 'modular_citadel/icons/mob/markings_notmammals.dmi' - covered_limbs = list(num2text(HEAD) = MATRIX_RED_GREEN, num2text(CHEST) = MATRIX_GREEN, num2text(LEG_LEFT) = MATRIX_GREEN, num2text(LEG_RIGHT) = MATRIX_GREEN, num2text(ARM_LEFT) = MATRIX_GREEN, num2text(ARM_RIGHT) = MATRIX_GREEN) + covered_limbs = list("Head" = MATRIX_RED_GREEN, "Chest" = MATRIX_GREEN, "Left Leg" = MATRIX_GREEN, "Right Leg" = MATRIX_GREEN, "Left Arm" = MATRIX_GREEN, "Right Arm" = MATRIX_GREEN) /datum/sprite_accessory/mam_body_markings/goat name = "Goat" icon_state = "goat" - covered_limbs = list(num2text(HEAD) = MATRIX_RED, num2text(CHEST) = MATRIX_RED, num2text(LEG_LEFT) = MATRIX_RED_BLUE, num2text(LEG_RIGHT) = MATRIX_RED_BLUE, num2text(ARM_LEFT) = MATRIX_RED_BLUE, num2text(ARM_RIGHT) = MATRIX_RED_BLUE) + covered_limbs = list("Head" = MATRIX_RED, "Chest" = MATRIX_RED, "Left Leg" = MATRIX_RED_BLUE, "Right Leg" = MATRIX_RED_BLUE, "Left Arm" = MATRIX_RED_BLUE, "Right Arm" = MATRIX_RED_BLUE) /datum/sprite_accessory/mam_body_markings/handsfeet name = "Handsfeet" icon_state = "handsfeet" icon = 'modular_citadel/icons/mob/markings_notmammals.dmi' - covered_limbs = list(num2text(HEAD) = MATRIX_RED, num2text(CHEST) = MATRIX_RED, num2text(LEG_LEFT) = MATRIX_RED_GREEN, num2text(LEG_RIGHT) = MATRIX_RED_GREEN, num2text(ARM_LEFT) = MATRIX_RED_GREEN, num2text(ARM_RIGHT) = MATRIX_RED_GREEN) + covered_limbs = list("Head" = MATRIX_RED, "Chest" = MATRIX_RED, "Left Leg" = MATRIX_RED_GREEN, "Right Leg" = MATRIX_RED_GREEN, "Left Arm" = MATRIX_RED_GREEN, "Right Arm" = MATRIX_RED_GREEN) /datum/sprite_accessory/mam_body_markings/hawk name = "Hawk" icon_state = "hawk" - covered_limbs = list(num2text(HEAD) = MATRIX_RED_GREEN, num2text(CHEST) = MATRIX_RED_GREEN, num2text(LEG_LEFT) = MATRIX_ALL, num2text(LEG_RIGHT) = MATRIX_ALL, num2text(ARM_LEFT) = MATRIX_RED, num2text(ARM_RIGHT) = MATRIX_RED) + covered_limbs = list("Head" = MATRIX_RED_GREEN, "Chest" = MATRIX_RED_GREEN, "Left Leg" = MATRIX_ALL, "Right Leg" = MATRIX_ALL, "Left Arm" = MATRIX_RED, "Right Arm" = MATRIX_RED) /datum/sprite_accessory/mam_body_markings/husky name = "Husky" icon_state = "husky" - covered_limbs = list(num2text(HEAD) = MATRIX_RED_GREEN, num2text(CHEST) = MATRIX_RED_GREEN, num2text(LEG_LEFT) = MATRIX_ALL, num2text(LEG_RIGHT) = MATRIX_ALL, num2text(ARM_LEFT) = MATRIX_RED_GREEN, num2text(ARM_RIGHT) = MATRIX_RED_GREEN) + covered_limbs = list("Head" = MATRIX_RED_GREEN, "Chest" = MATRIX_RED_GREEN, "Left Leg" = MATRIX_ALL, "Right Leg" = MATRIX_ALL, "Left Arm" = MATRIX_RED_GREEN, "Right Arm" = MATRIX_RED_GREEN) /datum/sprite_accessory/mam_body_markings/hyena name = "Hyena" icon_state = "hyena" - covered_limbs = list(num2text(HEAD) = MATRIX_ALL, num2text(CHEST) = MATRIX_ALL, num2text(LEG_LEFT) = MATRIX_RED_GREEN, num2text(LEG_RIGHT) = MATRIX_RED_GREEN, num2text(ARM_LEFT) = MATRIX_RED_GREEN, num2text(ARM_RIGHT) = MATRIX_RED_GREEN) + covered_limbs = list("Head" = MATRIX_ALL, "Chest" = MATRIX_ALL, "Left Leg" = MATRIX_RED_GREEN, "Right Leg" = MATRIX_RED_GREEN, "Left Arm" = MATRIX_RED_GREEN, "Right Arm" = MATRIX_RED_GREEN) /datum/sprite_accessory/mam_body_markings/insect name = "Insect" @@ -137,118 +137,118 @@ /datum/sprite_accessory/mam_body_markings/lab name = "Lab" icon_state = "lab" - covered_limbs = list(num2text(HEAD) = MATRIX_RED, num2text(CHEST) = MATRIX_RED, num2text(LEG_LEFT) = MATRIX_RED, num2text(LEG_RIGHT) = MATRIX_RED, num2text(ARM_LEFT) = MATRIX_RED, num2text(ARM_RIGHT) = MATRIX_RED) + covered_limbs = list("Head" = MATRIX_RED, "Chest" = MATRIX_RED, "Left Leg" = MATRIX_RED, "Right Leg" = MATRIX_RED, "Left Arm" = MATRIX_RED, "Right Arm" = MATRIX_RED) /datum/sprite_accessory/mam_body_markings/orca name = "Orca" icon_state = "orca" - covered_limbs = list(num2text(HEAD) = MATRIX_RED_GREEN, num2text(CHEST) = MATRIX_RED_GREEN, num2text(LEG_LEFT) = MATRIX_RED_GREEN, num2text(LEG_RIGHT) = MATRIX_RED_GREEN, num2text(ARM_LEFT) = MATRIX_RED_GREEN, num2text(ARM_RIGHT) = MATRIX_RED_GREEN) + covered_limbs = list("Head" = MATRIX_RED_GREEN, "Chest" = MATRIX_RED_GREEN, "Left Leg" = MATRIX_RED_GREEN, "Right Leg" = MATRIX_RED_GREEN, "Left Arm" = MATRIX_RED_GREEN, "Right Arm" = MATRIX_RED_GREEN) /datum/sprite_accessory/mam_body_markings/otie name = "Otie" icon_state = "otie" - covered_limbs = list(num2text(HEAD) = MATRIX_ALL, num2text(CHEST) = MATRIX_ALL, num2text(LEG_LEFT) = MATRIX_ALL, num2text(LEG_RIGHT) = MATRIX_ALL, num2text(ARM_LEFT) = MATRIX_ALL, num2text(ARM_RIGHT) = MATRIX_ALL) + covered_limbs = list("Head" = MATRIX_ALL, "Chest" = MATRIX_ALL, "Left Leg" = MATRIX_ALL, "Right Leg" = MATRIX_ALL, "Left Arm" = MATRIX_ALL, "Right Arm" = MATRIX_ALL) /datum/sprite_accessory/mam_body_markings/otter name = "Otter" icon_state = "otter" - covered_limbs = list(num2text(HEAD) = MATRIX_ALL, num2text(CHEST) = MATRIX_GREEN) + covered_limbs = list("Head" = MATRIX_ALL, "Chest" = MATRIX_GREEN) /datum/sprite_accessory/mam_body_markings/panther name = "Panther" icon_state = "panther" - covered_limbs = list(num2text(HEAD) = MATRIX_RED_GREEN, num2text(CHEST) = MATRIX_RED_GREEN, num2text(LEG_LEFT) = MATRIX_RED_GREEN, num2text(LEG_RIGHT) = MATRIX_RED_GREEN, num2text(ARM_LEFT) = MATRIX_RED_GREEN, num2text(ARM_RIGHT) = MATRIX_RED_GREEN) + covered_limbs = list("Head" = MATRIX_RED_GREEN, "Chest" = MATRIX_RED_GREEN, "Left Leg" = MATRIX_RED_GREEN, "Right Leg" = MATRIX_RED_GREEN, "Left Arm" = MATRIX_RED_GREEN, "Right Arm" = MATRIX_RED_GREEN) /datum/sprite_accessory/mam_body_markings/plain name = "Plain" icon_state = "plain" icon = 'modular_citadel/icons/mob/markings_notmammals.dmi' - covered_limbs = list(num2text(HEAD) = MATRIX_RED, num2text(CHEST) = MATRIX_RED, num2text(LEG_LEFT) = MATRIX_RED, num2text(LEG_RIGHT) = MATRIX_RED, num2text(ARM_LEFT) = MATRIX_RED, num2text(ARM_RIGHT) = MATRIX_RED) + covered_limbs = list("Head" = MATRIX_RED, "Chest" = MATRIX_RED, "Left Leg" = MATRIX_RED, "Right Leg" = MATRIX_RED, "Left Arm" = MATRIX_RED, "Right Arm" = MATRIX_RED) /datum/sprite_accessory/mam_body_markings/possum name = "Possum" icon_state = "possum" - covered_limbs = list(num2text(HEAD) = MATRIX_RED_GREEN, num2text(CHEST) = MATRIX_RED_GREEN, num2text(LEG_LEFT) = MATRIX_RED_BLUE, num2text(LEG_RIGHT) = MATRIX_RED_BLUE, num2text(ARM_LEFT) = MATRIX_RED_BLUE, num2text(ARM_RIGHT) = MATRIX_RED_BLUE) + covered_limbs = list("Head" = MATRIX_RED_GREEN, "Chest" = MATRIX_RED_GREEN, "Left Leg" = MATRIX_RED_BLUE, "Right Leg" = MATRIX_RED_BLUE, "Left Arm" = MATRIX_RED_BLUE, "Right Arm" = MATRIX_RED_BLUE) /datum/sprite_accessory/mam_body_markings/raccoon name = "Raccoon" icon_state = "raccoon" - covered_limbs = list(num2text(HEAD) = MATRIX_ALL, num2text(CHEST) = MATRIX_RED_GREEN, num2text(LEG_LEFT) = MATRIX_ALL, num2text(LEG_RIGHT) = MATRIX_ALL, num2text(ARM_LEFT) = MATRIX_RED_GREEN, num2text(ARM_RIGHT) = MATRIX_RED_GREEN) + covered_limbs = list("Head" = MATRIX_ALL, "Chest" = MATRIX_RED_GREEN, "Left Leg" = MATRIX_ALL, "Right Leg" = MATRIX_ALL, "Left Arm" = MATRIX_RED_GREEN, "Right Arm" = MATRIX_RED_GREEN) /datum/sprite_accessory/mam_body_markings/sergal name = "Sergal" icon_state = "sergal" - covered_limbs = list(num2text(HEAD) = MATRIX_RED_GREEN, num2text(CHEST) = MATRIX_RED_GREEN) + covered_limbs = list("Head" = MATRIX_RED_GREEN, "Chest" = MATRIX_RED_GREEN) /datum/sprite_accessory/mam_body_markings/pede name = "Scolipede" icon_state = "scolipede" icon = 'modular_citadel/icons/mob/markings_notmammals.dmi' - covered_limbs = list(num2text(HEAD) = MATRIX_GREEN, num2text(CHEST) = MATRIX_GREEN_BLUE, num2text(LEG_LEFT) = MATRIX_GREEN, num2text(LEG_RIGHT) = MATRIX_GREEN, num2text(ARM_LEFT) = MATRIX_GREEN, num2text(ARM_RIGHT) = MATRIX_GREEN) + covered_limbs = list("Head" = MATRIX_GREEN, "Chest" = MATRIX_GREEN_BLUE, "Left Leg" = MATRIX_GREEN, "Right Leg" = MATRIX_GREEN, "Left Arm" = MATRIX_GREEN, "Right Arm" = MATRIX_GREEN) /datum/sprite_accessory/mam_body_markings/shark name = "Shark" icon_state = "shark" - covered_limbs = list(num2text(HEAD) = MATRIX_RED_GREEN, num2text(CHEST) = MATRIX_RED, num2text(LEG_LEFT) = MATRIX_RED, num2text(LEG_RIGHT) = MATRIX_RED_GREEN, num2text(ARM_LEFT) = MATRIX_RED_GREEN, num2text(ARM_RIGHT) = MATRIX_RED_GREEN) + covered_limbs = list("Head" = MATRIX_RED_GREEN, "Chest" = MATRIX_RED, "Left Leg" = MATRIX_RED, "Right Leg" = MATRIX_RED_GREEN, "Left Arm" = MATRIX_RED_GREEN, "Right Arm" = MATRIX_RED_GREEN) /datum/sprite_accessory/mam_body_markings/shepherd name = "Shepherd" icon_state = "shepherd" - covered_limbs = list(num2text(HEAD) = MATRIX_ALL, num2text(CHEST) = MATRIX_ALL, num2text(LEG_LEFT) = MATRIX_RED_GREEN, num2text(LEG_RIGHT) = MATRIX_RED_GREEN, num2text(ARM_LEFT) = MATRIX_RED, num2text(ARM_RIGHT) = MATRIX_RED) + covered_limbs = list("Head" = MATRIX_ALL, "Chest" = MATRIX_ALL, "Left Leg" = MATRIX_RED_GREEN, "Right Leg" = MATRIX_RED_GREEN, "Left Arm" = MATRIX_RED, "Right Arm" = MATRIX_RED) /datum/sprite_accessory/mam_body_markings/skunk name = "Skunk" icon_state = "skunk" - covered_limbs = list(num2text(HEAD) = MATRIX_RED_GREEN, num2text(CHEST) = MATRIX_RED_GREEN, num2text(LEG_LEFT) = MATRIX_RED_GREEN, num2text(LEG_RIGHT) = MATRIX_RED_GREEN, num2text(ARM_LEFT) = MATRIX_RED, num2text(ARM_RIGHT) = MATRIX_RED) + covered_limbs = list("Head" = MATRIX_RED_GREEN, "Chest" = MATRIX_RED_GREEN, "Left Leg" = MATRIX_RED_GREEN, "Right Leg" = MATRIX_RED_GREEN, "Left Arm" = MATRIX_RED, "Right Arm" = MATRIX_RED) /datum/sprite_accessory/mam_body_markings/tajaran name = "Tajaran" icon_state = "tajaran" - covered_limbs = list(num2text(HEAD) = MATRIX_RED_GREEN, num2text(CHEST) = MATRIX_RED_GREEN, num2text(LEG_LEFT) = MATRIX_RED, num2text(LEG_RIGHT) = MATRIX_RED, num2text(ARM_LEFT) = MATRIX_RED, num2text(ARM_RIGHT) = MATRIX_RED) + covered_limbs = list("Head" = MATRIX_RED_GREEN, "Chest" = MATRIX_RED_GREEN, "Left Leg" = MATRIX_RED, "Right Leg" = MATRIX_RED, "Left Arm" = MATRIX_RED, "Right Arm" = MATRIX_RED) /datum/sprite_accessory/mam_body_markings/tiger name = "Tiger" icon_state = "tiger" - covered_limbs = list(num2text(HEAD) = MATRIX_ALL, num2text(CHEST) = MATRIX_ALL, num2text(LEG_LEFT) = MATRIX_ALL, num2text(LEG_RIGHT) = MATRIX_ALL, num2text(ARM_LEFT) = MATRIX_RED_BLUE, num2text(ARM_RIGHT) = MATRIX_RED_BLUE) + covered_limbs = list("Head" = MATRIX_ALL, "Chest" = MATRIX_ALL, "Left Leg" = MATRIX_ALL, "Right Leg" = MATRIX_ALL, "Left Arm" = MATRIX_RED_BLUE, "Right Arm" = MATRIX_RED_BLUE) /datum/sprite_accessory/mam_body_markings/turian name = "Turian" icon_state = "turian" icon = 'modular_citadel/icons/mob/markings_notmammals.dmi' - covered_limbs = list(num2text(HEAD) = MATRIX_RED_GREEN, num2text(CHEST) = MATRIX_RED, num2text(LEG_LEFT) = MATRIX_RED, num2text(LEG_RIGHT) = MATRIX_RED, num2text(ARM_LEFT) = MATRIX_RED, num2text(ARM_RIGHT) = MATRIX_RED) + covered_limbs = list("Head" = MATRIX_RED_GREEN, "Chest" = MATRIX_RED, "Left Leg" = MATRIX_RED, "Right Leg" = MATRIX_RED, "Left Arm" = MATRIX_RED, "Right Arm" = MATRIX_RED) /datum/sprite_accessory/mam_body_markings/wolf name = "Wolf" icon_state = "wolf" - covered_limbs = list(num2text(HEAD) = MATRIX_ALL, num2text(CHEST) = MATRIX_ALL, num2text(LEG_LEFT) = MATRIX_RED_BLUE, num2text(LEG_RIGHT) = MATRIX_RED_BLUE, num2text(ARM_LEFT) = MATRIX_RED_BLUE, num2text(ARM_RIGHT) = MATRIX_RED_BLUE) + covered_limbs = list("Head" = MATRIX_ALL, "Chest" = MATRIX_ALL, "Left Leg" = MATRIX_RED_BLUE, "Right Leg" = MATRIX_RED_BLUE, "Left Arm" = MATRIX_RED_BLUE, "Right Arm" = MATRIX_RED_BLUE) /datum/sprite_accessory/mam_body_markings/xeno name = "Xeno" icon_state = "xeno" icon = 'modular_citadel/icons/mob/markings_notmammals.dmi' - covered_limbs = list(num2text(HEAD) = MATRIX_BLUE, num2text(CHEST) = MATRIX_GREEN, num2text(LEG_LEFT) = MATRIX_GREEN, num2text(LEG_RIGHT) = MATRIX_GREEN, num2text(ARM_LEFT) = MATRIX_GREEN, num2text(ARM_RIGHT) = MATRIX_GREEN) + covered_limbs = list("Head" = MATRIX_BLUE, "Chest" = MATRIX_GREEN, "Left Leg" = MATRIX_GREEN, "Right Leg" = MATRIX_GREEN, "Left Arm" = MATRIX_GREEN, "Right Arm" = MATRIX_GREEN) // sticking old lizard markings here for now /datum/sprite_accessory/mam_body_markings/dtiger name = "Dark Tiger Body" icon_state = "dtiger" - covered_limbs = list(num2text(HEAD) = MATRIX_RED, num2text(CHEST) = MATRIX_RED, num2text(LEG_LEFT) = MATRIX_RED, num2text(LEG_RIGHT) = MATRIX_RED, num2text(ARM_LEFT) = MATRIX_RED, num2text(ARM_RIGHT) = MATRIX_RED) + covered_limbs = list("Head" = MATRIX_RED, "Chest" = MATRIX_RED, "Left Leg" = MATRIX_RED, "Right Leg" = MATRIX_RED, "Left Arm" = MATRIX_RED, "Right Arm" = MATRIX_RED) /datum/sprite_accessory/mam_body_markings/guilmon name = "Guilmon" icon_state = "guilmon" icon = 'modular_citadel/icons/mob/markings_notmammals.dmi' - covered_limbs = list(num2text(HEAD) = MATRIX_RED_BLUE, num2text(CHEST) = MATRIX_GREEN_BLUE, num2text(LEG_LEFT) = MATRIX_BLUE, num2text(LEG_RIGHT) = MATRIX_BLUE, num2text(ARM_LEFT) = MATRIX_GREEN_BLUE, num2text(ARM_RIGHT) = MATRIX_GREEN_BLUE) + covered_limbs = list("Head" = MATRIX_RED_BLUE, "Chest" = MATRIX_GREEN_BLUE, "Left Leg" = MATRIX_BLUE, "Right Leg" = MATRIX_BLUE, "Left Arm" = MATRIX_GREEN_BLUE, "Right Arm" = MATRIX_GREEN_BLUE) /datum/sprite_accessory/mam_body_markings/ltiger name = "Light Tiger Body" icon_state = "ltiger" - covered_limbs = list(num2text(HEAD) = MATRIX_RED, num2text(CHEST) = MATRIX_RED, num2text(LEG_LEFT) = MATRIX_RED, num2text(LEG_RIGHT) = MATRIX_RED, num2text(ARM_LEFT) = MATRIX_RED, num2text(ARM_RIGHT) = MATRIX_RED) + covered_limbs = list("Head" = MATRIX_RED, "Chest" = MATRIX_RED, "Left Leg" = MATRIX_RED, "Right Leg" = MATRIX_RED, "Left Arm" = MATRIX_RED, "Right Arm" = MATRIX_RED) /datum/sprite_accessory/mam_body_markings/lbelly name = "Light Belly" icon_state = "lbelly" - covered_limbs = list(num2text(HEAD) = MATRIX_RED, num2text(CHEST) = MATRIX_RED, num2text(LEG_LEFT) = MATRIX_RED, num2text(LEG_RIGHT) = MATRIX_RED, num2text(ARM_LEFT) = MATRIX_RED, num2text(ARM_RIGHT) = MATRIX_RED) + covered_limbs = list("Head" = MATRIX_RED, "Chest" = MATRIX_RED, "Left Leg" = MATRIX_RED, "Right Leg" = MATRIX_RED, "Left Arm" = MATRIX_RED, "Right Arm" = MATRIX_RED) /****************************************** ************* Insect Markings ************* @@ -296,9 +296,9 @@ icon_state = "snow" color_src = HAIR -/datum/sprite_accessory/insect_fluff/deathhead - name = "Deathshead" - icon_state = "deathhead" +/datum/sprite_accessory/insect_fluff/death"Head" + name = "Deaths"Head"" + icon_state = "death"Head"" /datum/sprite_accessory/insect_fluff/featherymoth name = "Feathery Moth" From b1f84f94db8901acff3f377b1f6517d89a562a02 Mon Sep 17 00:00:00 2001 From: timothyteakettle <59849408+timothyteakettle@users.noreply.github.com> Date: Thu, 6 May 2021 22:43:31 +0100 Subject: [PATCH 139/259] Update body_markings.dm --- .../mob/dead/new_player/sprite_accessories/body_markings.dm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/modules/mob/dead/new_player/sprite_accessories/body_markings.dm b/code/modules/mob/dead/new_player/sprite_accessories/body_markings.dm index 285e7ca7e2..7e275e49a2 100644 --- a/code/modules/mob/dead/new_player/sprite_accessories/body_markings.dm +++ b/code/modules/mob/dead/new_player/sprite_accessories/body_markings.dm @@ -296,9 +296,9 @@ icon_state = "snow" color_src = HAIR -/datum/sprite_accessory/insect_fluff/death"Head" - name = "Deaths"Head"" - icon_state = "death"Head"" +/datum/sprite_accessory/insect_fluff/deathhead + name = "Deathshead" + icon_state = "deathhead" /datum/sprite_accessory/insect_fluff/featherymoth name = "Feathery Moth" From 8d96de6b03f9047c045a6352e630704df3bc5eae Mon Sep 17 00:00:00 2001 From: Putnam Date: Thu, 6 May 2021 14:52:17 -0700 Subject: [PATCH 140/259] More tweaks, whoops --- code/modules/events/supernova.dm | 19 ++++++++++++------- code/modules/power/solar.dm | 2 +- 2 files changed, 13 insertions(+), 8 deletions(-) diff --git a/code/modules/events/supernova.dm b/code/modules/events/supernova.dm index f09bdab890..ca64984cde 100644 --- a/code/modules/events/supernova.dm +++ b/code/modules/events/supernova.dm @@ -17,15 +17,20 @@ announceWhen = rand(4, 60) supernova = new SSsun.suns += supernova - if(prob(20)) - power = rand(5,100) / 100 - else - power = rand(5,5000) / 100 + switch(rand(1,5)) + if(1) + power = rand(5,100) / 100 + if(2) + power = rand(5,500) / 100 + if(3) + power = rand(5,1000) / 100 + if(4, 5) + power = rand(5,5000) / 100 supernova.azimuth = rand(0, 359) supernova.power_mod = 0 /datum/round_event/supernova/announce() - var/message = "Our tachyon-doppler array has detected a supernova in your vicinity. Peak flux from the supernova estimated to be [round(power,0.1)] times current solar flux. [power > 1 ? "Short burts of radiation may be possible, so please prepare accordingly." : ""]" + var/message = "[station_name()]: Our tachyon-doppler array has detected a supernova in your vicinity. Peak flux from the supernova estimated to be [round(power,0.1)] times current solar flux; if the supernova is close to your sun in the sky, your solars may receive this as a power boost.[power > 1 ? " Short burts of radiation may be possible, so please prepare accordingly." : ""] We hope you enjoy the light." if(prob(power * 25)) priority_announce(message, sender_override = "Nanotrasen Meteorology Division") else @@ -34,7 +39,7 @@ /datum/round_event/supernova/start() supernova.power_mod = 0.001 * power - var/explosion_size = rand(1000000000, 999999999) + var/explosion_size = rand(1000000000, 10000000000) var/turf/epicenter = get_turf_in_angle(supernova.azimuth, SSmapping.get_station_center(), round(world.maxx * 0.45)) for(var/array in GLOB.doppler_arrays) var/obj/machinery/doppler_array/A = array @@ -51,7 +56,7 @@ supernova.power_mod = min(supernova.power_mod*1.2, power) if(activeFor > endWhen-10) supernova.power_mod /= 4 - if(prob(round(supernova.power_mod)) && prob(3) && storm_count < 5 && !SSweather.get_weather_by_type(/datum/weather/rad_storm)) + if(prob(round(supernova.power_mod*2)) && prob(3) && storm_count < 5 && !SSweather.get_weather_by_type(/datum/weather/rad_storm)) SSweather.run_weather(/datum/weather/rad_storm/supernova) storm_count++ diff --git a/code/modules/power/solar.dm b/code/modules/power/solar.dm index 92aa95bfb7..9cc289b06d 100644 --- a/code/modules/power/solar.dm +++ b/code/modules/power/solar.dm @@ -152,7 +152,7 @@ else //dot product of sun and panel -- Lambert's Cosine Law cur_pow = cos(azimuth_current - sun_azimuth) * sun.power_mod - cur_pow = clamp(round(cur_pow, 0.01), 0, 1) + cur_pow = clamp(round(cur_pow, 0.01), 0, sun.power_mod) total_flux += cur_pow /obj/machinery/power/solar/process() From 6c8fa561326bdda5809818f133de28856dcc0760 Mon Sep 17 00:00:00 2001 From: Putnam Date: Thu, 6 May 2021 15:10:36 -0700 Subject: [PATCH 141/259] Adds make priority announcement verb --- code/modules/admin/verbs/randomverbs.dm | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/code/modules/admin/verbs/randomverbs.dm b/code/modules/admin/verbs/randomverbs.dm index 7e7bac9ff0..59eee83b35 100644 --- a/code/modules/admin/verbs/randomverbs.dm +++ b/code/modules/admin/verbs/randomverbs.dm @@ -571,6 +571,26 @@ Traitors and the like can also be revived with the previous role mostly intact. message_admins("[key_name_admin(src)] has created a command report") SSblackbox.record_feedback("tally", "admin_verb", 1, "Create Command Report") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc! +/client/proc/cmd_admin_make_priority_announcement() + set category = "Admin.Events" + set name = "Make Priority Announcement" + + if(!check_rights(R_ADMIN)) + return + + var/input = input(usr, "Enter a priority announcement. Ensure it makes sense IC.", "What?", "") as message|null + if(!input) + return + + var/title = input(src, "What should the title be?", "What?","") as text|null + + var/special_name = input(src, "Who is making the announcement?", "Who?", "") as text|null + priority_announce(input, title, sender_override = special_name) + + log_admin("[key_name(src)] has sent a priority announcement: [input]") + message_admins("[key_name_admin(src)] has made a priority announcement") + SSblackbox.record_feedback("tally", "admin_verb", 1, "Make Priority Announcement") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc! + /client/proc/cmd_change_command_name() set category = "Admin.Events" set name = "Change Command Name" From e95e4ed106ec3b31268613aecd2c756d2dc87a73 Mon Sep 17 00:00:00 2001 From: timothyteakettle <59849408+timothyteakettle@users.noreply.github.com> Date: Thu, 6 May 2021 23:39:41 +0100 Subject: [PATCH 142/259] Update preferences_savefile.dm --- code/modules/client/preferences_savefile.dm | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/code/modules/client/preferences_savefile.dm b/code/modules/client/preferences_savefile.dm index ca993be7c4..a59f35e111 100644 --- a/code/modules/client/preferences_savefile.dm +++ b/code/modules/client/preferences_savefile.dm @@ -47,6 +47,7 @@ SAVEFILE UPDATING/VERSIONING - 'Simplified', or rather, more coder-friendly ~Car addtimer(CALLBACK(src, .proc/force_reset_keybindings), 30) //No mob available when this is run, timer allows user choice. /datum/preferences/proc/update_character(current_version, savefile/S) + message_admins(current_version) if(current_version < 19) pda_style = "mono" if(current_version < 20) @@ -296,6 +297,7 @@ SAVEFILE UPDATING/VERSIONING - 'Simplified', or rather, more coder-friendly ~Car S["be_special"] << L if(current_version < 51) // rp markings means markings are now stored as a list, lizard markings now mam like the rest + message_admins("migrating") var/marking_type var/species_id = S["species"] var/datum/species/actual_species = GLOB.species_datums[species_id] @@ -318,7 +320,7 @@ SAVEFILE UPDATING/VERSIONING - 'Simplified', or rather, more coder-friendly ~Car var/marking_list = list() for(var/part in list(ARM_LEFT, ARM_RIGHT, LEG_LEFT, LEG_RIGHT, CHEST, HEAD)) marking_list += list(list(part, old_marking_value, color_list.Copy())) - + message_admins("saved data of length [length(marking_list)]") S[marking_type] = safe_json_encode(marking_list) /datum/preferences/proc/load_path(ckey,filename="preferences.sav") From 440a6633ea3add97b3c89065406cb4974ca6f3b5 Mon Sep 17 00:00:00 2001 From: timothyteakettle <59849408+timothyteakettle@users.noreply.github.com> Date: Fri, 7 May 2021 00:37:33 +0100 Subject: [PATCH 143/259] Update preferences_savefile.dm --- code/modules/client/preferences_savefile.dm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/code/modules/client/preferences_savefile.dm b/code/modules/client/preferences_savefile.dm index a59f35e111..9e7c942967 100644 --- a/code/modules/client/preferences_savefile.dm +++ b/code/modules/client/preferences_savefile.dm @@ -317,11 +317,12 @@ SAVEFILE UPDATING/VERSIONING - 'Simplified', or rather, more coder-friendly ~Car if(S["feature_mcolor2"]) color_list[2] = S["feature_mcolor2"] if(S["feature_mcolor3"]) color_list[3] = S["feature_mcolor3"] - var/marking_list = list() + var/list/marking_list = list() for(var/part in list(ARM_LEFT, ARM_RIGHT, LEG_LEFT, LEG_RIGHT, CHEST, HEAD)) marking_list += list(list(part, old_marking_value, color_list.Copy())) message_admins("saved data of length [length(marking_list)]") S[marking_type] = safe_json_encode(marking_list) + message_admins("final json code is: [S[marking_type]]") /datum/preferences/proc/load_path(ckey,filename="preferences.sav") if(!ckey) From eab47bb6ae2a01fb80c7eacbf45b6b9c172e20e8 Mon Sep 17 00:00:00 2001 From: timothyteakettle <59849408+timothyteakettle@users.noreply.github.com> Date: Fri, 7 May 2021 00:43:33 +0100 Subject: [PATCH 144/259] Update preferences_savefile.dm --- code/modules/client/preferences_savefile.dm | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/code/modules/client/preferences_savefile.dm b/code/modules/client/preferences_savefile.dm index 9e7c942967..285f34ddd4 100644 --- a/code/modules/client/preferences_savefile.dm +++ b/code/modules/client/preferences_savefile.dm @@ -47,7 +47,6 @@ SAVEFILE UPDATING/VERSIONING - 'Simplified', or rather, more coder-friendly ~Car addtimer(CALLBACK(src, .proc/force_reset_keybindings), 30) //No mob available when this is run, timer allows user choice. /datum/preferences/proc/update_character(current_version, savefile/S) - message_admins(current_version) if(current_version < 19) pda_style = "mono" if(current_version < 20) @@ -297,7 +296,6 @@ SAVEFILE UPDATING/VERSIONING - 'Simplified', or rather, more coder-friendly ~Car S["be_special"] << L if(current_version < 51) // rp markings means markings are now stored as a list, lizard markings now mam like the rest - message_admins("migrating") var/marking_type var/species_id = S["species"] var/datum/species/actual_species = GLOB.species_datums[species_id] @@ -320,9 +318,7 @@ SAVEFILE UPDATING/VERSIONING - 'Simplified', or rather, more coder-friendly ~Car var/list/marking_list = list() for(var/part in list(ARM_LEFT, ARM_RIGHT, LEG_LEFT, LEG_RIGHT, CHEST, HEAD)) marking_list += list(list(part, old_marking_value, color_list.Copy())) - message_admins("saved data of length [length(marking_list)]") - S[marking_type] = safe_json_encode(marking_list) - message_admins("final json code is: [S[marking_type]]") + features["mam_body_markings"] = safe_json_encode(marking_list) /datum/preferences/proc/load_path(ckey,filename="preferences.sav") if(!ckey) From f5e2d3de2c1487efca70e4aa0907ef49b6c9f222 Mon Sep 17 00:00:00 2001 From: timothyteakettle <59849408+timothyteakettle@users.noreply.github.com> Date: Fri, 7 May 2021 00:44:44 +0100 Subject: [PATCH 145/259] Update preferences_savefile.dm --- code/modules/client/preferences_savefile.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/client/preferences_savefile.dm b/code/modules/client/preferences_savefile.dm index 285f34ddd4..70e4e1656d 100644 --- a/code/modules/client/preferences_savefile.dm +++ b/code/modules/client/preferences_savefile.dm @@ -302,7 +302,7 @@ SAVEFILE UPDATING/VERSIONING - 'Simplified', or rather, more coder-friendly ~Car // convert lizard markings to lizard markings if(species_id == SPECIES_LIZARD && S["feature_lizard_body_markings"]) - S["feature_mam_body_markings"] = S["feature_lizard_body_markings"] + features["mam_body_markings"] = features["body_markings"] // convert mam body marking data to the new rp marking data if(actual_species.mutant_bodyparts["mam_body_markings"] && S["feature_mam_body_markings"]) marking_type = "feature_mam_body_markings" From 3b07164fb4c90c106122458128a8ff70638d9fe7 Mon Sep 17 00:00:00 2001 From: timothyteakettle <59849408+timothyteakettle@users.noreply.github.com> Date: Fri, 7 May 2021 00:56:27 +0100 Subject: [PATCH 146/259] Update preferences_savefile.dm --- code/modules/client/preferences_savefile.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/client/preferences_savefile.dm b/code/modules/client/preferences_savefile.dm index 70e4e1656d..a759fd1411 100644 --- a/code/modules/client/preferences_savefile.dm +++ b/code/modules/client/preferences_savefile.dm @@ -283,7 +283,7 @@ SAVEFILE UPDATING/VERSIONING - 'Simplified', or rather, more coder-friendly ~Car qdel(temporary_gear_item) //it's double packed into a list because += will union the two lists contents - S["loadout"] = safe_json_encode(loadout_data) + S["loadout"] = loadout_data if(current_version < 48) //unlockable loadout items but we need to clear bad data from a mistake S["unlockable_loadout"] = list() From b305d3b55ba1f9b5e56a4992d391c5a1841e297e Mon Sep 17 00:00:00 2001 From: Changelogs Date: Fri, 7 May 2021 00:17:01 +0000 Subject: [PATCH 147/259] Automatic changelog compile [ci skip] --- html/changelog.html | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/html/changelog.html b/html/changelog.html index c8b088fd02..193d320cbe 100644 --- a/html/changelog.html +++ b/html/changelog.html @@ -749,17 +749,6 @@

- -

05 March 2021

-

Putnam3145 updated:

-
    -
  • Lowered ash storm volume
  • -
  • Minesweeper can no longer be made to lag the server on purpose
  • -
-

keronshb updated:

-
    -
  • Prevents heat from going through reinforced plasma glass.
  • -
GoonStation 13 Development Team From 8acaf643430fe1a33ce3fb43a27ab60afdd6ad3f Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Fri, 7 May 2021 00:54:55 -0500 Subject: [PATCH 148/259] Automatic changelog generation for PR #14687 [ci skip] --- html/changelogs/AutoChangeLog-pr-14687.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-14687.yml diff --git a/html/changelogs/AutoChangeLog-pr-14687.yml b/html/changelogs/AutoChangeLog-pr-14687.yml new file mode 100644 index 0000000000..f1dcdbfe44 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-14687.yml @@ -0,0 +1,4 @@ +author: "Arturlang" +delete-after: True +changes: + - bugfix: "Synthblood bottles now have the proper color and probably won't poison you anymore" From 5699da56c3470d7fbde1f1aff44bef428fac4984 Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Fri, 7 May 2021 01:00:30 -0500 Subject: [PATCH 149/259] Automatic changelog generation for PR #14671 [ci skip] --- html/changelogs/AutoChangeLog-pr-14671.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-14671.yml diff --git a/html/changelogs/AutoChangeLog-pr-14671.yml b/html/changelogs/AutoChangeLog-pr-14671.yml new file mode 100644 index 0000000000..af1cea597a --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-14671.yml @@ -0,0 +1,4 @@ +author: "timothyteakettle" +delete-after: True +changes: + - rscadd: "lets humans have digi legs (and avian legs)" From 94db1c3d46747e72e0003853d56a19e1513a36ce Mon Sep 17 00:00:00 2001 From: bunny232 Date: Fri, 7 May 2021 08:31:49 -0400 Subject: [PATCH 150/259] Update DeltaStation2.dmm --- .../map_files/Deltastation/DeltaStation2.dmm | 594 +++++++++++++++--- 1 file changed, 498 insertions(+), 96 deletions(-) diff --git a/_maps/map_files/Deltastation/DeltaStation2.dmm b/_maps/map_files/Deltastation/DeltaStation2.dmm index 19c8e68546..f9da727d53 100644 --- a/_maps/map_files/Deltastation/DeltaStation2.dmm +++ b/_maps/map_files/Deltastation/DeltaStation2.dmm @@ -7322,6 +7322,22 @@ }, /turf/open/floor/plasteel, /area/maintenance/starboard/fore) +"avT" = ( +/obj/effect/turf_decal/tile/neutral{ + 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 = 5 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) "avX" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/door/airlock/maintenance_hatch{ @@ -7726,6 +7742,13 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/fore) +"ayq" = ( +/obj/structure/sign/warning/electricshock, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/science/xenobiology) "ayS" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -18573,6 +18596,18 @@ }, /turf/open/floor/plasteel/dark, /area/ai_monitored/turret_protected/ai) +"bxE" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) "bxV" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 6 @@ -39771,6 +39806,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 8 }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/dark, /area/science/xenobiology) "cQw" = ( @@ -40614,6 +40650,7 @@ id = "xeno4"; name = "Creature Cell #4" }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plating, /area/science/xenobiology) "cRX" = ( @@ -40654,6 +40691,7 @@ id = "xeno4"; name = "Creature Cell #4" }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plating, /area/science/xenobiology) "cRZ" = ( @@ -40665,6 +40703,7 @@ id = "xeno5"; name = "Creature Cell #5" }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plating, /area/science/xenobiology) "cSa" = ( @@ -40705,6 +40744,7 @@ id = "xeno5"; name = "Creature Cell #5" }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plating, /area/science/xenobiology) "cSc" = ( @@ -40716,6 +40756,7 @@ id = "xeno6"; name = "Creature Cell #6" }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plating, /area/science/xenobiology) "cSd" = ( @@ -40756,6 +40797,7 @@ id = "xeno6"; name = "Creature Cell #6" }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plating, /area/science/xenobiology) "cSf" = ( @@ -41528,6 +41570,10 @@ /area/science/xenobiology) "cTA" = ( /obj/structure/sign/warning/electricshock, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, /turf/closed/wall/r_wall, /area/science/xenobiology) "cTB" = ( @@ -41539,6 +41585,9 @@ id = "xenosecure"; name = "Secure Pen Shutters" }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, /turf/open/floor/plating, /area/science/xenobiology) "cTC" = ( @@ -41548,16 +41597,19 @@ network = list("xeno") }, /obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, /turf/open/floor/plasteel, /area/science/xenobiology) "cTD" = ( /obj/structure/cable/white{ icon_state = "1-2" }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, /obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, /turf/open/floor/plasteel, /area/science/xenobiology) "cTE" = ( @@ -41600,6 +41652,7 @@ req_access_txt = "55" }, /obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel, /area/science/xenobiology) "cTI" = ( @@ -41622,6 +41675,7 @@ dir = 1 }, /obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel, /area/science/xenobiology) "cTK" = ( @@ -41639,6 +41693,7 @@ req_access_txt = "55" }, /obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel, /area/science/xenobiology) "cTM" = ( @@ -41654,6 +41709,7 @@ dir = 1 }, /obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel, /area/science/xenobiology) "cTN" = ( @@ -41679,6 +41735,7 @@ req_access_txt = "55" }, /obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel, /area/science/xenobiology) "cTP" = ( @@ -42650,6 +42707,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 8 }, +/obj/machinery/atmospherics/components/unary/vent_pump/on, /turf/open/floor/plasteel, /area/science/xenobiology) "cVF" = ( @@ -42751,18 +42809,6 @@ }, /turf/open/floor/plasteel, /area/science/xenobiology) -"cVN" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) "cVO" = ( /obj/structure/cable/white{ icon_state = "1-2" @@ -43488,10 +43534,12 @@ dir = 4; name = "emergency shower" }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, /obj/effect/turf_decal/stripes/end{ dir = 8 }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, /turf/open/floor/plasteel/white, /area/science/xenobiology) "cXd" = ( @@ -43539,12 +43587,12 @@ dir = 8; name = "emergency shower" }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, /obj/effect/turf_decal/stripes/end{ dir = 4 }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, /turf/open/floor/plasteel/white, /area/science/xenobiology) "cXh" = ( @@ -43560,6 +43608,9 @@ /obj/effect/turf_decal/stripes/line{ dir = 4 }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, /turf/open/floor/plasteel, /area/science/xenobiology) "cXi" = ( @@ -44311,6 +44362,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 8 }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, /turf/open/floor/plasteel/dark, /area/science/xenobiology) "cYL" = ( @@ -44386,11 +44438,11 @@ /turf/open/floor/plasteel, /area/science/xenobiology) "cYS" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ dir = 8 }, +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers, /turf/open/floor/plasteel, /area/science/xenobiology) "cYT" = ( @@ -45144,22 +45196,26 @@ id = "xenosecure"; name = "Secure Pen Shutters" }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, /turf/open/floor/plating, /area/science/xenobiology) "dar" = ( /obj/structure/table/reinforced, /obj/machinery/cell_charger, /obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, /turf/open/floor/plasteel, /area/science/xenobiology) "das" = ( /obj/structure/cable/white{ icon_state = "1-2" }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, /obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, /turf/open/floor/plasteel, /area/science/xenobiology) "dat" = ( @@ -45191,6 +45247,7 @@ /obj/machinery/disposal/bin, /obj/structure/disposalpipe/trunk, /obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel, /area/science/xenobiology) "daw" = ( @@ -45220,6 +45277,7 @@ req_access_txt = "55" }, /obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel, /area/science/xenobiology) "day" = ( @@ -45233,6 +45291,7 @@ }, /obj/structure/disposalpipe/trunk, /obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel, /area/science/xenobiology) "daz" = ( @@ -45246,6 +45305,7 @@ req_access_txt = "55" }, /obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel, /area/science/xenobiology) "daA" = ( @@ -45259,6 +45319,7 @@ req_access_txt = "55" }, /obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel, /area/science/xenobiology) "daB" = ( @@ -46056,6 +46117,9 @@ dir = 5 }, /obj/machinery/shieldwallgen/xenobiologyaccess, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 4 + }, /turf/open/floor/plating, /area/science/xenobiology) "dcd" = ( @@ -46067,6 +46131,10 @@ pixel_y = -22 }, /obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/components/binary/valve/digital{ + icon_state = "dvalve_map-2"; + dir = 8 + }, /turf/open/floor/plasteel, /area/science/xenobiology) "dce" = ( @@ -46075,6 +46143,9 @@ }, /obj/effect/turf_decal/bot, /obj/machinery/portable_atmospherics/canister/bz, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, /turf/open/floor/plasteel, /area/science/xenobiology) "dcf" = ( @@ -46100,6 +46171,7 @@ id = "xeno1"; name = "Creature Cell #1" }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plating, /area/science/xenobiology) "dch" = ( @@ -46138,6 +46210,7 @@ id = "xeno1"; name = "Creature Cell #1" }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plating, /area/science/xenobiology) "dcj" = ( @@ -46150,6 +46223,7 @@ id = "xeno2"; name = "Creature Cell #2" }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plating, /area/science/xenobiology) "dck" = ( @@ -46188,6 +46262,7 @@ id = "xeno2"; name = "Creature Cell #2" }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plating, /area/science/xenobiology) "dcm" = ( @@ -46200,6 +46275,7 @@ id = "xeno3"; name = "Creature Cell #3" }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plating, /area/science/xenobiology) "dcn" = ( @@ -46238,6 +46314,7 @@ id = "xeno3"; name = "Creature Cell #3" }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plating, /area/science/xenobiology) "dcp" = ( @@ -47050,7 +47127,9 @@ /turf/open/floor/plasteel, /area/maintenance/port) "ddQ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, /turf/closed/wall/r_wall, /area/science/xenobiology) "ddR" = ( @@ -47068,6 +47147,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 8 }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/dark, /area/science/xenobiology) "ddS" = ( @@ -47718,8 +47798,8 @@ "dfb" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 }, /turf/open/floor/plating, /area/maintenance/port) @@ -48270,6 +48350,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 8 }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel, /area/maintenance/port) "dgn" = ( @@ -73719,6 +73800,11 @@ }, /turf/open/floor/plasteel, /area/engineering/main) +"fdK" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers, +/turf/open/floor/plasteel, +/area/science/xenobiology) "fdM" = ( /obj/structure/cable/white{ icon_state = "1-2" @@ -77437,6 +77523,13 @@ }, /turf/open/floor/plasteel, /area/engineering/main) +"grf" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + icon_state = "pipe11-2"; + dir = 5 + }, +/turf/closed/wall/r_wall, +/area/science/xenobiology) "grh" = ( /obj/item/kirbyplants/random, /turf/open/floor/plasteel/dark, @@ -77551,6 +77644,10 @@ icon_state = "wood-broken2" }, /area/service/abandoned_gambling_den/secondary) +"gux" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/service/abandoned_gambling_den) "guH" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -77753,6 +77850,23 @@ }, /turf/open/floor/plasteel/white, /area/command/heads_quarters/cmo) +"gzQ" = ( +/obj/effect/turf_decal/tile/neutral{ + 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/components/unary/outlet_injector/on{ + icon_state = "inje_map-2"; + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) "gAA" = ( /obj/effect/mapping_helpers/airlock/cyclelink_helper{ dir = 8 @@ -80895,6 +81009,16 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/cargo/storage) +"hDD" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold4w/supply, +/turf/open/floor/plasteel, +/area/science/xenobiology) "hDE" = ( /obj/machinery/light{ dir = 4 @@ -84800,6 +84924,11 @@ }, /turf/open/floor/plasteel/dark, /area/ai_monitored/command/nuke_storage) +"iMf" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/manifold4w/supply, +/turf/open/floor/plasteel, +/area/science/xenobiology) "iMm" = ( /obj/structure/cable{ icon_state = "2-4" @@ -86986,6 +87115,14 @@ }, /turf/open/floor/plasteel/white, /area/command/heads_quarters/cmo) +"jyy" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/science/xenobiology) "jyI" = ( /obj/structure/chair/stool/bar, /obj/item/radio/intercom{ @@ -87613,6 +87750,24 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/cargo/qm) +"jJL" = ( +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) "jJT" = ( /obj/machinery/photocopier, /obj/machinery/firealarm{ @@ -89077,6 +89232,20 @@ }, /turf/open/floor/plasteel/dark/corner, /area/engineering/atmospherics_engine) +"kiv" = ( +/obj/effect/turf_decal/tile/neutral{ + 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/xenobiology) "kiP" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/tile/neutral{ @@ -92058,6 +92227,14 @@ icon_state = "chapel" }, /area/service/chapel/main) +"lnO" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/science/xenobiology) "lnY" = ( /obj/structure/weightmachine/stacklifter, /obj/effect/turf_decal/tile/neutral{ @@ -93157,6 +93334,20 @@ }, /turf/open/floor/plasteel/dark, /area/ai_monitored/aisat/exterior) +"lIV" = ( +/obj/effect/turf_decal/tile/neutral{ + 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/components/unary/vent_scrubber/on, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) "lIY" = ( /obj/effect/turf_decal/tile/blue, /obj/effect/turf_decal/tile/green{ @@ -95681,6 +95872,13 @@ }, /turf/open/floor/plasteel, /area/engineering/main) +"mFc" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/port) "mFj" = ( /obj/machinery/disposal/bin, /obj/machinery/airalarm{ @@ -96639,6 +96837,16 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/engineering/main) +"mSI" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) "mSP" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/reagent_dispensers/fueltank, @@ -96685,6 +96893,17 @@ }, /turf/open/floor/plasteel, /area/engineering/atmos) +"mTS" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) "mTU" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/disposalpipe/segment{ @@ -96979,6 +97198,12 @@ /obj/structure/chair/office/dark, /turf/open/floor/wood, /area/commons/dorms) +"mYQ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/science/circuit) "mYT" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/closet/cardboard, @@ -97895,6 +98120,20 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/closed/wall, /area/service/hydroponics/garden/abandoned) +"nqC" = ( +/obj/effect/turf_decal/tile/neutral{ + 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/science/xenobiology) "nqX" = ( /obj/structure/table/wood, /obj/item/storage/dice, @@ -100236,6 +100475,12 @@ "ohd" = ( /turf/open/floor/plasteel/freezer, /area/service/kitchen) +"ohp" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/closed/wall/r_wall, +/area/science/xenobiology) "ohv" = ( /obj/effect/decal/cleanable/dirt, /obj/item/kirbyplants/random, @@ -101343,6 +101588,17 @@ /obj/structure/sign/poster/random, /turf/closed/wall, /area/service/bar/atrium) +"oCR" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) "oDg" = ( /obj/structure/lattice, /turf/open/space, @@ -101730,6 +101986,17 @@ }, /turf/open/floor/plasteel/dark, /area/service/chapel/office) +"oJE" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/science/xenobiology) "oKj" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/effect/turf_decal/tile/neutral{ @@ -101788,6 +102055,20 @@ }, /turf/open/floor/plasteel/dark, /area/ai_monitored/command/storage/eva) +"oKZ" = ( +/obj/effect/turf_decal/tile/neutral{ + 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/components/unary/vent_pump/on, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) "oLg" = ( /obj/machinery/vending/cart, /obj/machinery/computer/security/telescreen/entertainment{ @@ -102573,6 +102854,22 @@ }, /turf/open/floor/plating, /area/command/heads_quarters/hos) +"paH" = ( +/obj/effect/turf_decal/tile/neutral{ + 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/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) "paM" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on, /obj/structure/disposalpipe/segment{ @@ -103613,6 +103910,12 @@ }, /turf/open/floor/plasteel, /area/cargo/sorting) +"puJ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/closed/wall, +/area/science/circuit) "puK" = ( /obj/machinery/light, /obj/machinery/status_display/evac{ @@ -107266,6 +107569,14 @@ icon_state = "chapel" }, /area/service/chapel/main) +"qMB" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/science/xenobiology) "qMI" = ( /obj/structure/table/wood, /obj/item/storage/briefcase, @@ -111076,6 +111387,7 @@ /turf/open/floor/wood, /area/service/library/abandoned) "saw" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/closed/wall, /area/science/circuit) "sax" = ( @@ -111947,6 +112259,12 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/plating, /area/engineering/main) +"spV" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 1 + }, +/turf/open/floor/plating, +/area/science/xenobiology) "sqb" = ( /obj/structure/cable/white, /obj/effect/turf_decal/stripes/line{ @@ -114385,6 +114703,10 @@ /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, /area/cargo/storage) +"thh" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/science/research/abandoned) "tin" = ( /obj/machinery/light{ dir = 1 @@ -115245,7 +115567,7 @@ /turf/open/floor/plasteel/dark, /area/engineering/atmos) "tvv" = ( -/obj/machinery/atmospherics/pipe/simple/yellow/visible{ +/obj/machinery/atmospherics/pipe/layer_manifold{ dir = 4 }, /turf/closed/wall/r_wall, @@ -116748,6 +117070,19 @@ }, /turf/open/floor/plating, /area/command/heads_quarters/ce) +"tXb" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/science/xenobiology) "tXd" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, @@ -118682,6 +119017,12 @@ }, /turf/open/floor/plasteel, /area/engineering/atmospherics_engine) +"uGN" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/closed/wall/r_wall, +/area/science/circuit) "uGQ" = ( /obj/structure/table/glass, /obj/item/clipboard, @@ -121009,6 +121350,11 @@ /obj/machinery/status_display/evac, /turf/closed/wall, /area/cargo/qm) +"vDi" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/space/nearstation) "vDp" = ( /obj/structure/cable/white{ icon_state = "2-4" @@ -122486,6 +122832,22 @@ }, /turf/closed/wall/r_wall, /area/engineering/atmospherics_engine) +"wiI" = ( +/obj/effect/turf_decal/tile/neutral{ + 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/orange/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) "wiL" = ( /obj/structure/table/reinforced, /obj/item/paper_bin, @@ -124099,6 +124461,22 @@ }, /turf/closed/wall/r_wall, /area/engineering/gravity_generator) +"wKw" = ( +/obj/effect/turf_decal/tile/neutral{ + 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/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) "wKz" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 4 @@ -126005,6 +126383,14 @@ }, /turf/open/floor/plasteel, /area/security/office) +"xxJ" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/science/xenobiology) "xxK" = ( /obj/structure/table/reinforced, /obj/item/crowbar/red, @@ -127019,6 +127405,22 @@ }, /turf/open/floor/plasteel/dark, /area/commons/fitness/recreation) +"xPN" = ( +/obj/effect/turf_decal/tile/neutral{ + 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{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) "xQl" = ( /obj/machinery/airalarm{ dir = 1; @@ -152893,6 +153295,7 @@ cLs cJT caE caE +puJ saw saw saw @@ -152900,18 +153303,17 @@ saw saw saw saw -saw -dhQ -dhQ -dhQ -dhQ -dhQ -dhQ -dhQ -dhQ -efN -ajr -aaa +thh +thh +thh +thh +thh +thh +thh +thh +gux +vDi +spV aaa aad aaa @@ -153150,7 +153552,7 @@ cEo ddO cQt dgl -dhR +mYQ djn dle dmr @@ -153407,7 +153809,7 @@ cRP ddP deW cKk -dhR +mYQ jjN hNZ hic @@ -153661,10 +154063,10 @@ cMY cMY cMY cMY -cMY -cCM +ohp +mFc dgm -dhR +uGN djp qpq dmt @@ -153918,7 +154320,7 @@ cWV cNd cNd cNd -cMY +cLI cLO lEm gmj @@ -154175,7 +154577,7 @@ cON cON cON dcb -cMY +cLI deX dgn dhR @@ -154426,13 +154828,13 @@ cMW cOG cMY cNd +xPN +paH +gzQ +oKZ +avT cNd -cNd -cNd -cNd -cNd -cNd -cMY +cLI deX dgo dhR @@ -154683,13 +155085,13 @@ ceb cCM cMY cMY -cTA -cNd +ayq cNd +wiI cYK cTA -cMY -cMY +grf +cLI deY cKl dhR @@ -154946,7 +155348,7 @@ cWW cYL daq dcc -cMY +cLI cOD cKj dhR @@ -155202,8 +155604,8 @@ cVD cWX cYM dar -cRS -cMY +mSI +cLI deZ dgo dhR @@ -155455,12 +155857,12 @@ cOJ cNc cRT cTD -cVE +bxE cWY cVE das dcd -cMY +cLI deX dgo dhR @@ -155717,7 +156119,7 @@ cWZ cYN dat dce -cMY +cLI dfa dgp fGq @@ -156479,17 +156881,17 @@ caE cJZ cLI cNd -cNd -cNd +oKZ +kiv cRW cTH -cVI -cRS -cYQ +iMf +xxJ +lnO dav dcg ddR -cNd +wKw cNd cMY djz @@ -156741,7 +157143,7 @@ cNd cRX cTI cVJ -cWY +jJL cYR daw dch @@ -156993,17 +157395,17 @@ caE cKa cLI cNd -cNd +lIV cQv cRY cTJ -cVK +tXb cXc cYS dax dci -cNd -cNd +nqC +paH cNd cMY djB @@ -157507,17 +157909,17 @@ caE cKg cLI cNd -cNd -cNd +oKZ +kiv cRZ cTL -cVK -cXd -cYU +hDD +mTS +oJE day dcj ddR -cNd +wKw cNd cMY djD @@ -158021,17 +158423,17 @@ cqL cKi cLI cNd -cNd +lIV cQv cSb cTM -cVK -cXd -cYU +tXb +oCR +cYS daz dcl -cNd -cNd +nqC +paH cNd cMY sYo @@ -158535,17 +158937,17 @@ cjp cJZ cLI cNd -cNd -cNd +oKZ +kiv cSc cTO -cVN +hDD cXg -cYU +oJE dav dcm ddR -cNd +wKw cNd cMY djH @@ -159049,17 +159451,17 @@ ceb cJZ cLI cNd -cNd +lIV cQv cSe cTJ -cVI -cRS -cYQ +qMB +jyy +fdK daA dco -cNd -cNd +nqC +paH cNd cMY djJ From bef9473fa1727bdccce604c901ef1d399c0b33f1 Mon Sep 17 00:00:00 2001 From: timothyteakettle <59849408+timothyteakettle@users.noreply.github.com> Date: Fri, 7 May 2021 16:10:20 +0100 Subject: [PATCH 151/259] more migration fixes and general bugfixes --- code/modules/client/preferences_savefile.dm | 2 +- .../dead/new_player/sprite_accessories/Citadel_Snowflake.dm | 4 ++-- .../mob/dead/new_player/sprite_accessories/synthliz.dm | 6 +++--- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/code/modules/client/preferences_savefile.dm b/code/modules/client/preferences_savefile.dm index a759fd1411..d33f249956 100644 --- a/code/modules/client/preferences_savefile.dm +++ b/code/modules/client/preferences_savefile.dm @@ -318,7 +318,7 @@ SAVEFILE UPDATING/VERSIONING - 'Simplified', or rather, more coder-friendly ~Car var/list/marking_list = list() for(var/part in list(ARM_LEFT, ARM_RIGHT, LEG_LEFT, LEG_RIGHT, CHEST, HEAD)) marking_list += list(list(part, old_marking_value, color_list.Copy())) - features["mam_body_markings"] = safe_json_encode(marking_list) + features["mam_body_markings"] = marking_list /datum/preferences/proc/load_path(ckey,filename="preferences.sav") if(!ckey) diff --git a/code/modules/mob/dead/new_player/sprite_accessories/Citadel_Snowflake.dm b/code/modules/mob/dead/new_player/sprite_accessories/Citadel_Snowflake.dm index 860c299baf..016b12d8ec 100644 --- a/code/modules/mob/dead/new_player/sprite_accessories/Citadel_Snowflake.dm +++ b/code/modules/mob/dead/new_player/sprite_accessories/Citadel_Snowflake.dm @@ -12,7 +12,7 @@ name = "DataShark" icon_state = "datashark" ckeys_allowed = list("rubyflamewing") - covered_limbs = list(HEAD = MATRIX_RED_GREEN, CHEST = MATRIX_GREEN, LEG_LEFT = MATRIX_GREEN, LEG_RIGHT = MATRIX_GREEN, ARM_LEFT = MATRIX_GREEN, ARM_RIGHT = MATRIX_GREEN) + covered_limbs = list("Head" = MATRIX_RED_GREEN, "Chest" = MATRIX_GREEN, "Left Leg" = MATRIX_GREEN, "Right Leg" = MATRIX_GREEN, "Left Arm" = MATRIX_GREEN, "Right Arm" = MATRIX_GREEN) //Sabresune /datum/sprite_accessory/ears/mam_ears/sabresune @@ -40,7 +40,7 @@ name = "Sabresune" icon_state = "sabresune" ckeys_allowed = list("poojawa") - covered_limbs = list(HEAD = MATRIX_RED_GREEN, CHEST = MATRIX_RED_GREEN, LEG_LEFT = MATRIX_RED_GREEN, LEG_RIGHT = MATRIX_RED_GREEN, ARM_LEFT = MATRIX_RED_GREEN, ARM_RIGHT = MATRIX_RED_GREEN) + covered_limbs = list("Head" = MATRIX_RED_GREEN, "Chest" = MATRIX_RED_GREEN, "Left Leg" = MATRIX_RED_GREEN, "Right Leg" = MATRIX_RED_GREEN, "Left Arm" = MATRIX_RED_GREEN, "Right Arm" = MATRIX_RED_GREEN) //Lunasune /datum/sprite_accessory/ears/mam_ears/lunasune diff --git a/code/modules/mob/dead/new_player/sprite_accessories/synthliz.dm b/code/modules/mob/dead/new_player/sprite_accessories/synthliz.dm index 22015a9e92..c7cd699ec9 100644 --- a/code/modules/mob/dead/new_player/sprite_accessories/synthliz.dm +++ b/code/modules/mob/dead/new_player/sprite_accessories/synthliz.dm @@ -32,20 +32,20 @@ icon = 'modular_citadel/icons/mob/synthliz_body_markings.dmi' name = "Synthetic Lizard - Pecs" icon_state = "synthlizpecs" - covered_limbs = list(CHEST = MATRIX_GREEN) + covered_limbs = list("Chest" = MATRIX_GREEN) /datum/sprite_accessory/mam_body_markings/synthliz/synthliz_pecslight icon = 'modular_citadel/icons/mob/synthliz_body_markings.dmi' name = "Synthetic Lizard - Pecs Light" icon_state = "synthlizpecslight" - covered_limbs = list(CHEST = MATRIX_GREEN_BLUE) + covered_limbs = list("Chest" = MATRIX_GREEN_BLUE) /datum/sprite_accessory/mam_body_markings/synthliz recommended_species = list("synthliz") icon = 'modular_citadel/icons/mob/synthliz_body_markings.dmi' name = "Synthetic Lizard - Plates" icon_state = "synthlizscutes" - covered_limbs = list(CHEST = MATRIX_GREEN) + covered_limbs = list("Chest" = MATRIX_GREEN) //Synth tails /datum/sprite_accessory/tails/mam_tails/synthliz From 0fb72497ff9799c3475aa4c65afe9436dbe43553 Mon Sep 17 00:00:00 2001 From: timothyteakettle <59849408+timothyteakettle@users.noreply.github.com> Date: Fri, 7 May 2021 16:46:40 +0100 Subject: [PATCH 152/259] color fix --- code/modules/client/preferences_savefile.dm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/modules/client/preferences_savefile.dm b/code/modules/client/preferences_savefile.dm index d33f249956..25c96aed1a 100644 --- a/code/modules/client/preferences_savefile.dm +++ b/code/modules/client/preferences_savefile.dm @@ -311,9 +311,9 @@ SAVEFILE UPDATING/VERSIONING - 'Simplified', or rather, more coder-friendly ~Car var/old_marking_value = S[marking_type] var/list/color_list = list("#FFFFFF","#FFFFFF","#FFFFFF") - if(S["feature_mcolor"]) color_list[1] = S["feature_mcolor"] - if(S["feature_mcolor2"]) color_list[2] = S["feature_mcolor2"] - if(S["feature_mcolor3"]) color_list[3] = S["feature_mcolor3"] + if(S["feature_mcolor"]) color_list[1] = "#" + S["feature_mcolor"] + if(S["feature_mcolor2"]) color_list[2] = "#" + S["feature_mcolor2"] + if(S["feature_mcolor3"]) color_list[3] = "#" + S["feature_mcolor3"] var/list/marking_list = list() for(var/part in list(ARM_LEFT, ARM_RIGHT, LEG_LEFT, LEG_RIGHT, CHEST, HEAD)) From bb893383bc7b00f84dc93518f7dab4cb8272fde5 Mon Sep 17 00:00:00 2001 From: timothyteakettle <59849408+timothyteakettle@users.noreply.github.com> Date: Fri, 7 May 2021 17:27:55 +0100 Subject: [PATCH 153/259] Update _bodyparts.dm --- code/modules/surgery/bodyparts/_bodyparts.dm | 1 - 1 file changed, 1 deletion(-) diff --git a/code/modules/surgery/bodyparts/_bodyparts.dm b/code/modules/surgery/bodyparts/_bodyparts.dm index 712f0a33a0..bd5095059b 100644 --- a/code/modules/surgery/bodyparts/_bodyparts.dm +++ b/code/modules/surgery/bodyparts/_bodyparts.dm @@ -833,7 +833,6 @@ markings_list.Add(image(marking_list[1], "[marking_list[2]]_[digitigrade_type]_[use_digitigrade]_[body_zone]", -MARKING_LAYER, image_dir)) if(color_src && length(marking_list) == 3) - message_admins("trying to color list of length [length(marking_list)] and also trying to access index [length(markings_list)] on a list of the same length") markings_list[length(markings_list)].color = marking_list[3] . += markings_list From dbb8d82d64dd8b392ea4fd45bbcc5a09bdfb8bed Mon Sep 17 00:00:00 2001 From: Changelogs Date: Sat, 8 May 2021 00:17:45 +0000 Subject: [PATCH 154/259] Automatic changelog compile [ci skip] --- html/changelog.html | 10 ++++++++++ html/changelogs/.all_changelog.yml | 6 ++++++ html/changelogs/AutoChangeLog-pr-14671.yml | 4 ---- html/changelogs/AutoChangeLog-pr-14687.yml | 4 ---- 4 files changed, 16 insertions(+), 8 deletions(-) delete mode 100644 html/changelogs/AutoChangeLog-pr-14671.yml delete mode 100644 html/changelogs/AutoChangeLog-pr-14687.yml diff --git a/html/changelog.html b/html/changelog.html index 193d320cbe..39b6dff804 100644 --- a/html/changelog.html +++ b/html/changelog.html @@ -50,6 +50,16 @@ -->
+

08 May 2021

+

Arturlang updated:

+
    +
  • Synthblood bottles now have the proper color and probably won't poison you anymore
  • +
+

timothyteakettle updated:

+
    +
  • lets humans have digi legs (and avian legs)
  • +
+

05 May 2021

The0bserver, with a great amount of advice from TripleZeta/TetraZeta updated:

    diff --git a/html/changelogs/.all_changelog.yml b/html/changelogs/.all_changelog.yml index 74a9c9400e..600077d4af 100644 --- a/html/changelogs/.all_changelog.yml +++ b/html/changelogs/.all_changelog.yml @@ -29241,3 +29241,9 @@ DO NOT EDIT THIS FILE BY HAND! AUTOMATICALLY GENERATED BY ss13_genchangelog.py. keronshb: - balance: Nightmare Shadow Jaunt threshold up to 0.4 - balance: Vendor and Engraved message light down to 0.3 +2021-05-08: + Arturlang: + - bugfix: Synthblood bottles now have the proper color and probably won't poison + you anymore + timothyteakettle: + - rscadd: lets humans have digi legs (and avian legs) diff --git a/html/changelogs/AutoChangeLog-pr-14671.yml b/html/changelogs/AutoChangeLog-pr-14671.yml deleted file mode 100644 index af1cea597a..0000000000 --- a/html/changelogs/AutoChangeLog-pr-14671.yml +++ /dev/null @@ -1,4 +0,0 @@ -author: "timothyteakettle" -delete-after: True -changes: - - rscadd: "lets humans have digi legs (and avian legs)" diff --git a/html/changelogs/AutoChangeLog-pr-14687.yml b/html/changelogs/AutoChangeLog-pr-14687.yml deleted file mode 100644 index f1dcdbfe44..0000000000 --- a/html/changelogs/AutoChangeLog-pr-14687.yml +++ /dev/null @@ -1,4 +0,0 @@ -author: "Arturlang" -delete-after: True -changes: - - bugfix: "Synthblood bottles now have the proper color and probably won't poison you anymore" From 5e271c239fe22f8b76ee6a433b5018cf9063d2a3 Mon Sep 17 00:00:00 2001 From: Timothy Teakettle <59849408+timothyteakettle@users.noreply.github.com> Date: Sat, 8 May 2021 01:31:44 +0100 Subject: [PATCH 155/259] conflict resolving caused runtimes --- code/modules/client/preferences_savefile.dm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/modules/client/preferences_savefile.dm b/code/modules/client/preferences_savefile.dm index 339d831881..05370b29cd 100644 --- a/code/modules/client/preferences_savefile.dm +++ b/code/modules/client/preferences_savefile.dm @@ -322,9 +322,9 @@ SAVEFILE UPDATING/VERSIONING - 'Simplified', or rather, more coder-friendly ~Car var/list/marking_list = list() for(var/part in list(ARM_LEFT, ARM_RIGHT, LEG_LEFT, LEG_RIGHT, CHEST, HEAD)) var/list/copied_color_list = color_list.Copy() - var/datum/sprite_accessory/mam_body_markings/S = GLOB.mam_body_markings_list[old_marking_value] - if(length(S.covered_limbs) && S.covered_limbs[part]) - var/matrixed_sections = S.covered_limbs[part] + var/datum/sprite_accessory/mam_body_markings/mam_marking = GLOB.mam_body_markings_list[old_marking_value] + if(length(mam_marking.covered_limbs) && mam_marking.covered_limbs[part]) + var/matrixed_sections = mam_marking.covered_limbs[part] // just trust me this is fine switch(matrixed_sections) if(MATRIX_GREEN) From 149cdeb9fdacfe812bb2043c17a55038b6d90476 Mon Sep 17 00:00:00 2001 From: Timothy Teakettle <59849408+timothyteakettle@users.noreply.github.com> Date: Sat, 8 May 2021 01:34:43 +0100 Subject: [PATCH 156/259] Update preferences_savefile.dm --- code/modules/client/preferences_savefile.dm | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/code/modules/client/preferences_savefile.dm b/code/modules/client/preferences_savefile.dm index 05370b29cd..4a1c0b0d98 100644 --- a/code/modules/client/preferences_savefile.dm +++ b/code/modules/client/preferences_savefile.dm @@ -328,15 +328,15 @@ SAVEFILE UPDATING/VERSIONING - 'Simplified', or rather, more coder-friendly ~Car // just trust me this is fine switch(matrixed_sections) if(MATRIX_GREEN) - color_list[1] = color_list[2] + copied_color_list[1] = copied_color_list[2] if(MATRIX_BLUE) - color_list[1] = color_list[3] + copied_color_list[1] = copied_color_list[3] if(MATRIX_RED_BLUE) - color_list[2] = color_list[3] + copied_color_list[2] = copied_color_list[3] if(MATRIX_GREEN_BLUE) - color_list[1] = color_list[2] - color_list[2] = color_list[3] - marking_list += list(list(part, old_marking_value, color_list.Copy())) + copied_color_list[1] = copied_color_list[2] + copied_color_list[2] = copied_color_list[3] + marking_list += list(list(part, old_marking_value, copied_color_list)) features["mam_body_markings"] = marking_list /datum/preferences/proc/load_path(ckey,filename="preferences.sav") From 2b9924b2c3bd24239b081502205a75d487cf4348 Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Fri, 7 May 2021 19:40:36 -0500 Subject: [PATCH 157/259] Automatic changelog generation for PR #14664 [ci skip] --- html/changelogs/AutoChangeLog-pr-14664.yml | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-14664.yml diff --git a/html/changelogs/AutoChangeLog-pr-14664.yml b/html/changelogs/AutoChangeLog-pr-14664.yml new file mode 100644 index 0000000000..c3d172a60c --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-14664.yml @@ -0,0 +1,5 @@ +author: "WanderingFox95" +delete-after: True +changes: + - rscadd: "added the unrolling pin, an innovative solution to dough-based mishaps." + - imageadd: "added visuals for the unrolling pin" From eea0fa240dedbdb9ab10931d7f84b7811f489002 Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Fri, 7 May 2021 19:40:43 -0500 Subject: [PATCH 158/259] Automatic changelog generation for PR #14684 [ci skip] --- html/changelogs/AutoChangeLog-pr-14684.yml | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-14684.yml diff --git a/html/changelogs/AutoChangeLog-pr-14684.yml b/html/changelogs/AutoChangeLog-pr-14684.yml new file mode 100644 index 0000000000..6b601d9579 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-14684.yml @@ -0,0 +1,5 @@ +author: "zeroisthebiggay" +delete-after: True +changes: + - balance: "pirates now have a medbay and several other things qualifying as a buff" + - balance: "pirates lost their toilet" From e933556667eafe9679b95db91110ae566a91d4c8 Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Fri, 7 May 2021 19:41:25 -0500 Subject: [PATCH 159/259] Automatic changelog generation for PR #14688 [ci skip] --- html/changelogs/AutoChangeLog-pr-14688.yml | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-14688.yml diff --git a/html/changelogs/AutoChangeLog-pr-14688.yml b/html/changelogs/AutoChangeLog-pr-14688.yml new file mode 100644 index 0000000000..df20b92695 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-14688.yml @@ -0,0 +1,6 @@ +author: "SandPoot" +delete-after: True +changes: + - bugfix: "Fixed Cyborg examines adding an extra weird line." + - code_imp: "Everything can be set to have tooltips, and even coded to have neat tooltips." + - rscadd: "Makes it so humans and borgs already have tooltips." From 3d4ee80b9c17a29bac1c8c12e9ccef54af9eb50c Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Fri, 7 May 2021 19:41:51 -0500 Subject: [PATCH 160/259] Automatic changelog generation for PR #14696 [ci skip] --- html/changelogs/AutoChangeLog-pr-14696.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-14696.yml diff --git a/html/changelogs/AutoChangeLog-pr-14696.yml b/html/changelogs/AutoChangeLog-pr-14696.yml new file mode 100644 index 0000000000..8d3185c647 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-14696.yml @@ -0,0 +1,4 @@ +author: "Putnam3145" +delete-after: True +changes: + - rscadd: "Priority announcement admeme verb" From 838ef5db0f0c4650502e7ad5a0e9496aefc87526 Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Fri, 7 May 2021 19:42:26 -0500 Subject: [PATCH 161/259] Automatic changelog generation for PR #14637 [ci skip] --- html/changelogs/AutoChangeLog-pr-14637.yml | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-14637.yml diff --git a/html/changelogs/AutoChangeLog-pr-14637.yml b/html/changelogs/AutoChangeLog-pr-14637.yml new file mode 100644 index 0000000000..679e234e4a --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-14637.yml @@ -0,0 +1,5 @@ +author: "TheObserver-sys" +delete-after: True +changes: + - bugfix: "Fixes most of the weird handling bugs and improves cigarette case handling in general." + - rscadd: "The Gorlex Marauders have seen fit to allow you to purchase the .45-70 GOVT rare ammo, at a premium cost. Don't waste it." From 931b913d57f3f4ea17b50ba633873a3ce9e3cd98 Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Fri, 7 May 2021 19:43:50 -0500 Subject: [PATCH 162/259] Automatic changelog generation for PR #14693 [ci skip] --- html/changelogs/AutoChangeLog-pr-14693.yml | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-14693.yml diff --git a/html/changelogs/AutoChangeLog-pr-14693.yml b/html/changelogs/AutoChangeLog-pr-14693.yml new file mode 100644 index 0000000000..a223095ecf --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-14693.yml @@ -0,0 +1,5 @@ +author: "dzahlus" +delete-after: True +changes: + - soundadd: "added new malf AI spawn and doomsday sound" + - sounddel: "removed old malf AI spawn and doomsday sound" From 42d8d83ca2af474323c19a2c1fcc0e2988356176 Mon Sep 17 00:00:00 2001 From: Timothy Teakettle <59849408+timothyteakettle@users.noreply.github.com> Date: Sat, 8 May 2021 01:52:55 +0100 Subject: [PATCH 163/259] Update preferences_savefile.dm --- code/modules/client/preferences_savefile.dm | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/code/modules/client/preferences_savefile.dm b/code/modules/client/preferences_savefile.dm index 4a1c0b0d98..b5a54375e8 100644 --- a/code/modules/client/preferences_savefile.dm +++ b/code/modules/client/preferences_savefile.dm @@ -323,8 +323,9 @@ SAVEFILE UPDATING/VERSIONING - 'Simplified', or rather, more coder-friendly ~Car for(var/part in list(ARM_LEFT, ARM_RIGHT, LEG_LEFT, LEG_RIGHT, CHEST, HEAD)) var/list/copied_color_list = color_list.Copy() var/datum/sprite_accessory/mam_body_markings/mam_marking = GLOB.mam_body_markings_list[old_marking_value] - if(length(mam_marking.covered_limbs) && mam_marking.covered_limbs[part]) - var/matrixed_sections = mam_marking.covered_limbs[part] + var/part_name = GLOB.bodypart_names[num2text(part)] + if(length(mam_marking.covered_limbs) && mam_marking.covered_limbs[part_name]) + var/matrixed_sections = mam_marking.covered_limbs[part_name] // just trust me this is fine switch(matrixed_sections) if(MATRIX_GREEN) From 022003dc7c314d519ae390460561f5b6c6b73961 Mon Sep 17 00:00:00 2001 From: Timothy Teakettle <59849408+timothyteakettle@users.noreply.github.com> Date: Sat, 8 May 2021 02:05:20 +0100 Subject: [PATCH 164/259] funny comment --- code/modules/client/preferences_savefile.dm | 1 + 1 file changed, 1 insertion(+) diff --git a/code/modules/client/preferences_savefile.dm b/code/modules/client/preferences_savefile.dm index b5a54375e8..45c5357c4d 100644 --- a/code/modules/client/preferences_savefile.dm +++ b/code/modules/client/preferences_savefile.dm @@ -762,6 +762,7 @@ SAVEFILE UPDATING/VERSIONING - 'Simplified', or rather, more coder-friendly ~Car S["feature_genitals_use_skintone"] >> features["genitals_use_skintone"] S["feature_mcolor2"] >> features["mcolor2"] S["feature_mcolor3"] >> features["mcolor3"] + // note safe json decode will runtime the first time it migrates but this is fine and it solves itself don't worry about it if you see it error features["mam_body_markings"] = safe_json_decode(S["feature_mam_body_markings"]) S["feature_mam_tail"] >> features["mam_tail"] S["feature_mam_ears"] >> features["mam_ears"] From 0bc90971ffdd90d82f58ef7577517f029513dc08 Mon Sep 17 00:00:00 2001 From: Timothy Teakettle <59849408+timothyteakettle@users.noreply.github.com> Date: Sat, 8 May 2021 21:04:01 +0100 Subject: [PATCH 165/259] removes the newline --- code/_globalvars/lists/flavor_misc.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/_globalvars/lists/flavor_misc.dm b/code/_globalvars/lists/flavor_misc.dm index d94c677a42..9417d52bea 100644 --- a/code/_globalvars/lists/flavor_misc.dm +++ b/code/_globalvars/lists/flavor_misc.dm @@ -352,4 +352,4 @@ GLOBAL_LIST_INIT(eye_types, list("normal", "insect", "moth", "double", "double2" //list linking bodypart bitflags to their actual names GLOBAL_LIST_INIT(bodypart_names, list(num2text(HEAD) = "Head", num2text(CHEST) = "Chest", num2text(LEG_LEFT) = "Left Leg", num2text(LEG_RIGHT) = "Right Leg", num2text(ARM_LEFT) = "Left Arm", num2text(ARM_RIGHT) = "Right Arm")) // list linking bodypart names back to the bitflags -GLOBAL_LIST_INIT(bodypart_values, list("Head" = num2text(HEAD), "Chest" = num2text(CHEST), "Left Leg" = num2text(LEG_LEFT), "Right Leg" = num2text(LEG_RIGHT), "Left Arm" = num2text(ARM_LEFT), "Right Arm" = num2text(ARM_RIGHT))) +GLOBAL_LIST_INIT(bodypart_values, list("Head" = num2text(HEAD), "Chest" = num2text(CHEST), "Left Leg" = num2text(LEG_LEFT), "Right Leg" = num2text(LEG_RIGHT), "Left Arm" = num2text(ARM_LEFT), "Right Arm" = num2text(ARM_RIGHT))) \ No newline at end of file From 23015f83c43907ef9048d7458c1aa67974d2c2a4 Mon Sep 17 00:00:00 2001 From: Timothy Teakettle <59849408+timothyteakettle@users.noreply.github.com> Date: Sat, 8 May 2021 21:04:27 +0100 Subject: [PATCH 166/259] re-adds the newline --- code/_globalvars/lists/flavor_misc.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/_globalvars/lists/flavor_misc.dm b/code/_globalvars/lists/flavor_misc.dm index 9417d52bea..d94c677a42 100644 --- a/code/_globalvars/lists/flavor_misc.dm +++ b/code/_globalvars/lists/flavor_misc.dm @@ -352,4 +352,4 @@ GLOBAL_LIST_INIT(eye_types, list("normal", "insect", "moth", "double", "double2" //list linking bodypart bitflags to their actual names GLOBAL_LIST_INIT(bodypart_names, list(num2text(HEAD) = "Head", num2text(CHEST) = "Chest", num2text(LEG_LEFT) = "Left Leg", num2text(LEG_RIGHT) = "Right Leg", num2text(ARM_LEFT) = "Left Arm", num2text(ARM_RIGHT) = "Right Arm")) // list linking bodypart names back to the bitflags -GLOBAL_LIST_INIT(bodypart_values, list("Head" = num2text(HEAD), "Chest" = num2text(CHEST), "Left Leg" = num2text(LEG_LEFT), "Right Leg" = num2text(LEG_RIGHT), "Left Arm" = num2text(ARM_LEFT), "Right Arm" = num2text(ARM_RIGHT))) \ No newline at end of file +GLOBAL_LIST_INIT(bodypart_values, list("Head" = num2text(HEAD), "Chest" = num2text(CHEST), "Left Leg" = num2text(LEG_LEFT), "Right Leg" = num2text(LEG_RIGHT), "Left Arm" = num2text(ARM_LEFT), "Right Arm" = num2text(ARM_RIGHT))) From d479f80f9b5a403c3fbed79d95d3849d737cda68 Mon Sep 17 00:00:00 2001 From: Timothy Teakettle <59849408+timothyteakettle@users.noreply.github.com> Date: Sat, 8 May 2021 21:19:07 +0100 Subject: [PATCH 167/259] linters are literally stupid --- code/modules/client/preferences.dm | 4 +++- code/modules/surgery/bodyparts/_bodyparts.dm | 3 ++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/code/modules/client/preferences.dm b/code/modules/client/preferences.dm index 1572d45d2f..4acf911e7b 100644 --- a/code/modules/client/preferences.dm +++ b/code/modules/client/preferences.dm @@ -2430,7 +2430,9 @@ GLOBAL_LIST_EMPTY(preferences_datums) var/index = text2num(href_list["marking_index"]) var/marking_type = href_list["marking_type"] if(index && marking_type && features[marking_type]) - features[marking_type].Cut(index, index + 1) + // because linters are just absolutely awful: + var/list/L = features[marking_type] + L.Cut(index, index + 1) if("marking_add") // add a marking diff --git a/code/modules/surgery/bodyparts/_bodyparts.dm b/code/modules/surgery/bodyparts/_bodyparts.dm index bd5095059b..50d8cdaed5 100644 --- a/code/modules/surgery/bodyparts/_bodyparts.dm +++ b/code/modules/surgery/bodyparts/_bodyparts.dm @@ -833,7 +833,8 @@ markings_list.Add(image(marking_list[1], "[marking_list[2]]_[digitigrade_type]_[use_digitigrade]_[body_zone]", -MARKING_LAYER, image_dir)) if(color_src && length(marking_list) == 3) - markings_list[length(markings_list)].color = marking_list[3] + var/image/I = markings_list[length(markings_list)] + I.color = marking_list[3] . += markings_list // Citadel End From 1804b7ba63ad82bc697c4a8b99dd08d4deb5122f Mon Sep 17 00:00:00 2001 From: keronshb Date: Sat, 8 May 2021 19:35:55 -0400 Subject: [PATCH 168/259] Skewer Pain Replaces ouchie with *pain --- .../clockcult/clock_structures/traps/brass_skewer.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/antagonists/clockcult/clock_structures/traps/brass_skewer.dm b/code/modules/antagonists/clockcult/clock_structures/traps/brass_skewer.dm index f1ce13a90f..e8ae133ede 100644 --- a/code/modules/antagonists/clockcult/clock_structures/traps/brass_skewer.dm +++ b/code/modules/antagonists/clockcult/clock_structures/traps/brass_skewer.dm @@ -115,7 +115,7 @@ skewee.visible_message("[skewee] painfully slides back down [src].") if(skewee.stat >= UNCONSCIOUS) return //by ratvar, no more spamming my deadchat, holy fuck - skewee.say("Oof, ouch owwie!!", forced = "fail brass skewer removal") + skewee.emote("pain") return skewee.visible_message("[skewee] comes free of [src] with a squelching pop!", \ "You come free of [src]!") From df2f94b3be72d005b828461e6205a19a567c1b19 Mon Sep 17 00:00:00 2001 From: Changelogs Date: Sun, 9 May 2021 00:19:34 +0000 Subject: [PATCH 169/259] Automatic changelog compile [ci skip] --- html/changelog.html | 57 ++++++++++++---------- html/changelogs/.all_changelog.yml | 22 +++++++++ html/changelogs/AutoChangeLog-pr-14637.yml | 5 -- html/changelogs/AutoChangeLog-pr-14664.yml | 5 -- html/changelogs/AutoChangeLog-pr-14684.yml | 5 -- html/changelogs/AutoChangeLog-pr-14688.yml | 6 --- html/changelogs/AutoChangeLog-pr-14693.yml | 5 -- html/changelogs/AutoChangeLog-pr-14696.yml | 4 -- 8 files changed, 54 insertions(+), 55 deletions(-) delete mode 100644 html/changelogs/AutoChangeLog-pr-14637.yml delete mode 100644 html/changelogs/AutoChangeLog-pr-14664.yml delete mode 100644 html/changelogs/AutoChangeLog-pr-14684.yml delete mode 100644 html/changelogs/AutoChangeLog-pr-14688.yml delete mode 100644 html/changelogs/AutoChangeLog-pr-14693.yml delete mode 100644 html/changelogs/AutoChangeLog-pr-14696.yml diff --git a/html/changelog.html b/html/changelog.html index 39b6dff804..34311cf190 100644 --- a/html/changelog.html +++ b/html/changelog.html @@ -50,6 +50,38 @@ -->
    +

    09 May 2021

    +

    Putnam3145 updated:

    +
      +
    • Priority announcement admeme verb
    • +
    +

    SandPoot updated:

    +
      +
    • Fixed Cyborg examines adding an extra weird line.
    • +
    • Everything can be set to have tooltips, and even coded to have neat tooltips.
    • +
    • Makes it so humans and borgs already have tooltips.
    • +
    +

    TheObserver-sys updated:

    +
      +
    • Fixes most of the weird handling bugs and improves cigarette case handling in general.
    • +
    • The Gorlex Marauders have seen fit to allow you to purchase the .45-70 GOVT rare ammo, at a premium cost. Don't waste it.
    • +
    +

    WanderingFox95 updated:

    +
      +
    • added the unrolling pin, an innovative solution to dough-based mishaps.
    • +
    • added visuals for the unrolling pin
    • +
    +

    dzahlus updated:

    +
      +
    • added new malf AI spawn and doomsday sound
    • +
    • removed old malf AI spawn and doomsday sound
    • +
    +

    zeroisthebiggay updated:

    +
      +
    • pirates now have a medbay and several other things qualifying as a buff
    • +
    • pirates lost their toilet
    • +
    +

    08 May 2021

    Arturlang updated:

      @@ -734,31 +766,6 @@
      • tg hardsync, mostly contains tgui
      - -

      07 March 2021

      -

      Hatterhat updated:

      -
        -
      • You can now reskin your improvised shotguns.
      • -
      • The spontaneous brain trauma event now announces to ghosts whoever got funnied upon.
      • -
      • Ports EikoBiko's cat tail sprite.
      • -
      -

      Putnam3145 updated:

      -
        -
      • nitryl now consumes oxygen/nitrogen instead of generating them
      • -
      • Hyper-nob and nitryl are easier to make.
      • -
      -

      dzahlus updated:

      -
        -
      • Added taser microbattery for MWS-01
      • -
      • tweaked MWS-01 beacondrop to have more batteries
      • -
      • rebalanced MWS-01 disabler battery to fire 10 shots
      • -
      • added unique sound to the MWS-01
      • -
      • fixed Modula Weapons System to "Modular Weapon System"
      • -
      -

      timothyteakettle updated:

      -
        -
      • exiting a bluespace jar through any means, hardstuns you for 5 seconds
      • -
    GoonStation 13 Development Team diff --git a/html/changelogs/.all_changelog.yml b/html/changelogs/.all_changelog.yml index 600077d4af..8fbcc35763 100644 --- a/html/changelogs/.all_changelog.yml +++ b/html/changelogs/.all_changelog.yml @@ -29247,3 +29247,25 @@ DO NOT EDIT THIS FILE BY HAND! AUTOMATICALLY GENERATED BY ss13_genchangelog.py. you anymore timothyteakettle: - rscadd: lets humans have digi legs (and avian legs) +2021-05-09: + Putnam3145: + - rscadd: Priority announcement admeme verb + SandPoot: + - bugfix: Fixed Cyborg examines adding an extra weird line. + - code_imp: Everything can be set to have tooltips, and even coded to have neat + tooltips. + - rscadd: Makes it so humans and borgs already have tooltips. + TheObserver-sys: + - bugfix: Fixes most of the weird handling bugs and improves cigarette case handling + in general. + - rscadd: The Gorlex Marauders have seen fit to allow you to purchase the .45-70 + GOVT rare ammo, at a premium cost. Don't waste it. + WanderingFox95: + - rscadd: added the unrolling pin, an innovative solution to dough-based mishaps. + - imageadd: added visuals for the unrolling pin + dzahlus: + - soundadd: added new malf AI spawn and doomsday sound + - sounddel: removed old malf AI spawn and doomsday sound + zeroisthebiggay: + - balance: pirates now have a medbay and several other things qualifying as a buff + - balance: pirates lost their toilet diff --git a/html/changelogs/AutoChangeLog-pr-14637.yml b/html/changelogs/AutoChangeLog-pr-14637.yml deleted file mode 100644 index 679e234e4a..0000000000 --- a/html/changelogs/AutoChangeLog-pr-14637.yml +++ /dev/null @@ -1,5 +0,0 @@ -author: "TheObserver-sys" -delete-after: True -changes: - - bugfix: "Fixes most of the weird handling bugs and improves cigarette case handling in general." - - rscadd: "The Gorlex Marauders have seen fit to allow you to purchase the .45-70 GOVT rare ammo, at a premium cost. Don't waste it." diff --git a/html/changelogs/AutoChangeLog-pr-14664.yml b/html/changelogs/AutoChangeLog-pr-14664.yml deleted file mode 100644 index c3d172a60c..0000000000 --- a/html/changelogs/AutoChangeLog-pr-14664.yml +++ /dev/null @@ -1,5 +0,0 @@ -author: "WanderingFox95" -delete-after: True -changes: - - rscadd: "added the unrolling pin, an innovative solution to dough-based mishaps." - - imageadd: "added visuals for the unrolling pin" diff --git a/html/changelogs/AutoChangeLog-pr-14684.yml b/html/changelogs/AutoChangeLog-pr-14684.yml deleted file mode 100644 index 6b601d9579..0000000000 --- a/html/changelogs/AutoChangeLog-pr-14684.yml +++ /dev/null @@ -1,5 +0,0 @@ -author: "zeroisthebiggay" -delete-after: True -changes: - - balance: "pirates now have a medbay and several other things qualifying as a buff" - - balance: "pirates lost their toilet" diff --git a/html/changelogs/AutoChangeLog-pr-14688.yml b/html/changelogs/AutoChangeLog-pr-14688.yml deleted file mode 100644 index df20b92695..0000000000 --- a/html/changelogs/AutoChangeLog-pr-14688.yml +++ /dev/null @@ -1,6 +0,0 @@ -author: "SandPoot" -delete-after: True -changes: - - bugfix: "Fixed Cyborg examines adding an extra weird line." - - code_imp: "Everything can be set to have tooltips, and even coded to have neat tooltips." - - rscadd: "Makes it so humans and borgs already have tooltips." diff --git a/html/changelogs/AutoChangeLog-pr-14693.yml b/html/changelogs/AutoChangeLog-pr-14693.yml deleted file mode 100644 index a223095ecf..0000000000 --- a/html/changelogs/AutoChangeLog-pr-14693.yml +++ /dev/null @@ -1,5 +0,0 @@ -author: "dzahlus" -delete-after: True -changes: - - soundadd: "added new malf AI spawn and doomsday sound" - - sounddel: "removed old malf AI spawn and doomsday sound" diff --git a/html/changelogs/AutoChangeLog-pr-14696.yml b/html/changelogs/AutoChangeLog-pr-14696.yml deleted file mode 100644 index 8d3185c647..0000000000 --- a/html/changelogs/AutoChangeLog-pr-14696.yml +++ /dev/null @@ -1,4 +0,0 @@ -author: "Putnam3145" -delete-after: True -changes: - - rscadd: "Priority announcement admeme verb" From 181dcc347be0cfe7831cffdc5ccc36ec297ad196 Mon Sep 17 00:00:00 2001 From: zerothebigboy Date: Sun, 9 May 2021 04:34:25 -0400 Subject: [PATCH 170/259] cum sex balls penis --- .../new_player/sprite_accessories/ears.dm | 12 ++++++++++++ modular_citadel/icons/mob/mam_ears.dmi | Bin 10453 -> 10684 bytes 2 files changed, 12 insertions(+) diff --git a/code/modules/mob/dead/new_player/sprite_accessories/ears.dm b/code/modules/mob/dead/new_player/sprite_accessories/ears.dm index e09a0386ee..8fb735e10a 100644 --- a/code/modules/mob/dead/new_player/sprite_accessories/ears.dm +++ b/code/modules/mob/dead/new_player/sprite_accessories/ears.dm @@ -67,6 +67,13 @@ matrixed_sections = MATRIX_RED_GREEN icon = 'modular_citadel/icons/mob/mam_ears.dmi' +/datum/sprite_accessory/ears/bunnyalt + name = "Bunny (Vegas)" + icon_state = "bunnyalt" + color_src = MATRIXED + matrixed_sections = MATRIX_RED_GREEN + icon = 'modular_citadel/icons/mob/mam_ears.dmi' + /datum/sprite_accessory/ears/cat name = "Cat" icon_state = "cat" @@ -258,6 +265,11 @@ icon_state = "bunny" matrixed_sections = MATRIX_RED_GREEN +/datum/sprite_accessory/ears/mam_ears/bunnyalt + name = "Bunny (Vegas)" + icon_state = "bunnyalt" + matrixed_sections = MATRIX_RED_GREEN + /datum/sprite_accessory/ears/mam_ears/cat name = "Cat" icon_state = "cat" diff --git a/modular_citadel/icons/mob/mam_ears.dmi b/modular_citadel/icons/mob/mam_ears.dmi index a3f09819f25890acbcc3d9dc2bff60b154efed80..7848e3c2febe9c68b506fb1b464d50f1306ae5ba 100644 GIT binary patch literal 10684 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 From 389617ac2f4dcb45652f9453005b958b38d5ab1c Mon Sep 17 00:00:00 2001 From: zerothebigboy Date: Sun, 9 May 2021 05:01:07 -0400 Subject: [PATCH 171/259] this looks marginally better --- modular_citadel/icons/mob/mam_ears.dmi | Bin 10684 -> 10745 bytes 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/modular_citadel/icons/mob/mam_ears.dmi b/modular_citadel/icons/mob/mam_ears.dmi index 7848e3c2febe9c68b506fb1b464d50f1306ae5ba..352eb6a1e81aa5825385f431b1fcc767e73d18c4 100644 GIT binary patch delta 8798 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 F{~x9AL}ma0 delta 8747 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 From 2bf221be4ff4d81b791520cb4b5a8e6290d2fc98 Mon Sep 17 00:00:00 2001 From: LetterN <24603524+LetterN@users.noreply.github.com> Date: Sun, 9 May 2021 21:35:15 +0800 Subject: [PATCH 172/259] fixes syndie simplemob --- .../mob/living/simple_animal/hostile/syndicate.dm | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/code/modules/mob/living/simple_animal/hostile/syndicate.dm b/code/modules/mob/living/simple_animal/hostile/syndicate.dm index 103868e1d3..df73516337 100644 --- a/code/modules/mob/living/simple_animal/hostile/syndicate.dm +++ b/code/modules/mob/living/simple_animal/hostile/syndicate.dm @@ -130,11 +130,11 @@ QDEL_NULL(sord) return ..() -/mob/living/simple_animal/hostile/syndicate/melee/bullet_act(obj/item/projectile/Proj) - if(prob(25)) - return ..() - visible_message("[src] blocks [Proj] with its shield!") - return BULLET_ACT_BLOCK +/mob/living/simple_animal/hostile/syndicate/melee/sword/bullet_act(obj/item/projectile/Proj) + if(prob(50)) + visible_message("[src] blocks [Proj] with its shield!") + return BULLET_ACT_BLOCK + return ..() /mob/living/simple_animal/hostile/syndicate/melee/sword/space icon_state = "syndicate_space_sword" From 57044515d286114eb9aa4f1d24ec53b8c7e0d4dd Mon Sep 17 00:00:00 2001 From: LetterN <24603524+LetterN@users.noreply.github.com> Date: Sun, 9 May 2021 21:39:26 +0800 Subject: [PATCH 173/259] fixes-emag-on-console --- code/game/machinery/computer/communications.dm | 1 + 1 file changed, 1 insertion(+) diff --git a/code/game/machinery/computer/communications.dm b/code/game/machinery/computer/communications.dm index 048247c630..5621b47885 100755 --- a/code/game/machinery/computer/communications.dm +++ b/code/game/machinery/computer/communications.dm @@ -79,6 +79,7 @@ if (obj_flags & EMAGGED) return obj_flags |= EMAGGED + SSshuttle.shuttle_purchase_requirements_met |= "emagged" if (authenticated) authorize_access = get_all_accesses() to_chat(user, "You scramble the communication routing circuits!") From 1bee003d495b13a4b0b59b95d0ad096eb75a75df Mon Sep 17 00:00:00 2001 From: LetterN <24603524+LetterN@users.noreply.github.com> Date: Sun, 9 May 2021 22:48:50 +0800 Subject: [PATCH 174/259] fixes roundend runtime --- code/__HELPERS/roundend.dm | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/code/__HELPERS/roundend.dm b/code/__HELPERS/roundend.dm index 75ce77302b..2c13f30707 100644 --- a/code/__HELPERS/roundend.dm +++ b/code/__HELPERS/roundend.dm @@ -551,8 +551,7 @@ ///How many players joined the round. var/total_players = GLOB.joined_player_list.len var/list/typecache_bank = typecacheof(list(/datum/bank_account/department, /datum/bank_account/remote)) - for(var/i in SSeconomy.generated_accounts) - var/datum/bank_account/current_acc = SSeconomy.generated_accounts[i] + for(var/datum/bank_account/current_acc in SSeconomy.generated_accounts) if(typecache_bank[current_acc.type]) continue station_vault += current_acc.account_balance From fe96caefdc373c03912e5fea0ffdd442d4d69157 Mon Sep 17 00:00:00 2001 From: zerothebigboy Date: Sun, 9 May 2021 19:15:31 -0400 Subject: [PATCH 175/259] this is layered correctly --- modular_citadel/icons/mob/mam_ears.dmi | Bin 10745 -> 10751 bytes 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/modular_citadel/icons/mob/mam_ears.dmi b/modular_citadel/icons/mob/mam_ears.dmi index 352eb6a1e81aa5825385f431b1fcc767e73d18c4..1ed3d8fbbe98dd3808dc6a5e0e86c1e08812b38c 100644 GIT binary patch literal 10751 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 literal 10745 zcmch7c{r49-~W(kW5_Kb1{JALh_a0sDQlE%7)oR(`#PpOV!A0kB?=jZBx{(l&yX!N z*=LNw6d}uyb(k?T@8y1;-}`&tKi=o~9mns!-#Lz1kLxjXy6zK#Pc=!rb8&qBjir7_q|Z>zyJ^^GP@wd!is7j zoY=ck?$9FrBE1-FEaZRsAExgke7`)Q`;)5X7F8@cdIHBy?!RBn%q!4kr6{g_#B0c-q z(=o|z93c^ywMc|kHFXlp%CRc`JXJdRS)*wn3%8Y(f<#YFTOn|(BS@5|_RB9(*RR9II zp(sU_CK~E{UKs|bI2Z;W3Ri@l&wmLj!GGE(W`FeKn)02sLA7&5tlYy3DmqZUOXS=k z4HdcbO~NBL-9K&ei`Kr8ztDaD;7vJ2ua+DK_t<2^3F&JllDzWS5@)kYq;KE2BQM+I zy2%--A36S3G=c4z!_eD*b51=zOjh~27Yse0=wX+R*N7JPn&r<)ABMQ`lkZTif2Uyy$SA+fXd<|eHS6@VM2z>Zup z{NrpepSaVJOV5%zy1(p@L%m7V?wgFPNr{o1$i#o}D@cGqvY>0Q%Qqvl>Eo(?CmeGW zf6;WX8aDrM`o^!9YtRca3nS+~I#>&fm1>m9>!Pw5w-_syw~dq%vD#C41R}l+3`d z$Swd(iXKz@eE{tc~yXo5Ia8ttp%N#wk>6@26#?E{Dsc*N9l< zd_fVca?%KKEPorb+B4k>gv1_L)gkKaw?WP7&1QsV^_0IC{r9l_vLFL(lmH*-s^WbR zXpT=9B>Nh~3(6NY0NoGe-3NMV3E}|_{CO15UvZHCZw7Iv3OLtI$3r0v=T8?rITG8^ zvpH^T6h$!dHsNQNyXtd&|NPR4ujB>(h?CC!YJ07__S)(6J6fYkF`7ZD)Clp%rbS?< zRFcxWZ-@S>hbilAI7 z7`=n+2I=K>lNtHiz|8H(k6nDe_mB#az#{b`D(q|co7d9pZLl%t7;)#8<#6JFS z;e5g)eT(@K5XBa`rdc`c$=2jo3>{YXxKxHs=NbLku2=PO^X8W;+po$ooMZ<+I}8eMgQSgvjJ&aWrFKV z@uIw+Wq_PWI=HEqy;K-eCAuuE;FcSsI4gqb^<%}>HW{Ahpo!f0u)neUhR zD{_EfFPe5%A{Sjs38$)hO{U|{#%Gh5oF?#hK`V}OV&Ai4fs?JaeMy7#(AiqjYGqn< zu!wc)JaLNqKK*b3K2}?aY|AG4bb7#!Su9-ofOSr{NtJgyHa<*yVY9%#6v?0fVJAF6 zL$9)S#naC`c)csut0HePZGIC{J@7B@1*|Bxu!- zlR);O^Y2oxZ5xKVP5Yaa-~Dz6}Hv21_w5B9f8bW;DgzjDn#avGOKM ziGb1K-P40*R<^(3dJCz`@d~kNYj~&N((DL`VJ2Ds<&ECjwCHm;%95F2yCG;GWO3kq z8q*jS+aF;B&)f`^Ftp6E!mH}=cx6zr6 zhQc1S*H6C`-i>NZgy?Bd1@~_+;Qu|;`tuDuAR|qc0vrZHhBJM7)K~+SUi)O7>a%6m zO}YeP?3$|L;cYv=`;P}#bc0Lrp<*IX?4}+X?Mj@p2Lc*VIx8TuQn9h~+-b8tNNM8) z#}&3S$;M?2ZVDElv^poQRfAigodA@pP%mbZLbPWuWYFV{ogYvPMR{Eq*CTGsPG>(t z*G{0CWb`@@>bpp}IFZ)DyD9;8v5J;6k3FOXkrBS;4!<>!|26yqLO>3TGjhphvE8|C4vge%+qKLE-EQgjk}OK zyFoyAeK5&$OyC=%N7ECB$O%OwKO=(Y6Zl~t^094;a9(%=}?9>e~9aW z5~E#=ulwI40sqROTdBa}?#VIA2&ZuMNAZ_J>BdSME$b^mr5@IGE7iw$eiN}uPm8xm zaoY1mn;mFdhw$dd59TnVAseZtMV_cf7ybQpSZ1&^8y53eE%eC4$NkDI+Lbf103V9H zyeFMb#eS(L^@qjCz}mX1y2zEi1f{iGE<7WjhSz-^xxU@*M+Y2H(N1@vKT5#T;eK?` zfK23Ffj1tkaDQi0y-U59TH)lN(&-j{?lQwH(;Gmi{v&8pL|K_;?|PX^2HuC%m5`l zxNG`_A~t3%6feBJLJ)|4WaFBSRx$jXY%?D}H-&je%MkoYY^HG}coL}5)}}~x zIdd4*UfSSxJ+)#G%cR?D)H)bCjV$o(^?38?}>Ym1fs zE)KsVE~Z?g#fbK>Xj$HMtxrE_;;^YzsrJ~PZy*~idg$9Q`0D&%q+5h=n5zNw(Druy~V);R}l#J zyx@vQa+?IX^^GCTFP6c@INC#|r{Zb}qkjMQcrdnN(-RcycHd{Rth_Ni2mB97^MzM^mR6E0_4R> z9!~&2QqWU8eCnhsE3G%Y_j-Ynr#RcwYSQM;?TY$J2Q4Ooc$;MbJ>xkmvZC@fC0!s{ z?ev8S(x=o9RKSn)` zggDDjPTyc89C~GT4s@t{c%9{McOC$bUd%+SbYjHtoV^>?jJFF7Wvqc0oB0hTTo3-=DVrXoR|wa( zA8W|%FxasxLwQ+YoqV`ZZu!Xo85WxlpLcr-eq zpB^*uV@6HuElJbv+ihLjCmfD-Y#7kIaIbZ<(vpq7$J1Yv z;4W4Wh&dsBgYeG0E&BU$w|LO1iu@CJFZeFLGnCtK^_gA2Wa7|~Z(lE#Vs%lH&tc~U zM47a6jYt+wWt6ef z31N-R-Ndj1t;eZD4Wt8~-=~do>is0Q}*cd|9}y#Fw9WT%ZgSgTgePP9b0P%tijv4%fP}JM>1wGCmpI zbqm_t-fpZLz5YIqIae67a_J+KG=~~wzuqKJ>LJj$ofdp&Duf(nZ*0f^bP#T4ZuEI- zcJL4Q<@{yg0U6n>&GySc9yEZj3YUY2}E9;V!l5oee0m-C!`erEyU zEWpLbU)6~`b_K}$B`f_*o~`~olMsRL9eF0H6B#uJK9%`Jd!KCJUSQ)tcIn9#kTz)4 zNNpZWwu!SY9reo_@E#x-EB;ROu9gW=xVXHLRb|AJP_{nK1q5nUGP*YNm@l$CvAVUh zYx_q_nbC+QdHA6)4)CXl2V1J-WZksbfs}cZ8_R{5IQZxr&*z}({=gQEJv2b`UH=5& zBq-L=lzuu=BVEuBpp#Q7XJ#iB8n{^1PMH!ftHeBbkF_&xt$+AHUrAKFZ-y4gklI-B z59?XKeXqz*EbLtYrP@~wx%{6~J zNWdL(m?IC5!<)MN%91ag5L9F3p~V5sVsK57??iaUEf9Yj8?x?A75l>$N;tLX2QLKi zp1Tu%!6-KuTqVk0Tq{#;C<$5a(&Q7qFYT4|+wF%cXAd5uBVRG({cmId$0iB42(Jg- z35hB2aQPV|dfMPw*e7(eA&!!DU43D^ePN$0s6wEgW07%%#8o_gAJm-Vuo-c={zG|j z-;~wIJ)pUg|BrIMl;RXvZ%-(!y1G}j8pVlx~ zEHKMDI>McU@jCL8kzaZ6K3qH*%ot84ecX_h2YC1Mon#xIs-}+%!sik+4en^rQw#MN zAN{ExHxGOUrrKFXFFN#iX)I$rqNXV14ge4Xmnl< z6MjX4KnKxd+*Ct^V~&>JO}mJ?*qyP0gWa*HFk`ik)@%y zNPjzx%+B2ph~Esuu?N&t3gTo$Fkh&SzK>pAJ|{n!gx*pJuR7cx!R`wOw0P$Dk!`sX zRno-y)~uI&_l+~4ne30bU+^_Nqi2NZpr_J?cNg$<)6b)XL@M7C3f-d50qZYyP?5XI zu$^Yq#-U%DGr_Zd7(rf%nc?ko`p#mMhj-;&HCD7d>a(|!`uLY>{;XL-Q`+ct5q&qf zXVvQYa-dEQ(|Ei;U9GBL`PrW*<%*ChkBlQP%yJ}yYv~{S>1MLUjgPVzzGDTN_Xq%- zmB~+@R(OtF8_o!q$_x*~@v1E!Hm?e#c%(-aD=cI-G34EXqweHT=$%1p9ev0W2q`EE zJnxKK?ei)(7#sfQAfuOmeCWhgQ~RoY2gxH$)i*eMqwsAf)#NV?HGoI9YC#qQ=f^D- zMlqaWXNB5;8$$lpKsdCPPpVux`Pia+$w^9flKIR8Mj-4R971N9sXlfZ-&6TB?&)2c zzhvcS@IjeCr*PN#B##Lgl(0ACrmrL88DE7I5r)d@kw$pg-H{IvHw0GrD{+;(s-0h0 zul!Y7Vde^JGg@Zp+wW|{Gni!%dHqFuqo1BeexhSxM*AR-{YNW@xqGX=sMr~fqCE4W z@Fjk20bE%J+D2>1-3QzgW!woEW}+=$`GG)a;MJDA(lsbd^UPFSDw?Rcg0NyD$zYM^ zW-|1cGtBz+0n!jO4VuEgnDLmSUT-{uNc84@tSqVE1uZ6(q7Ev^2VUR<)k=jQHb|$m zTf7IT)xb4S5M?jO;jSVBSe1Tn*8su=s`?*f^nXI?R{Q#PzmPyHejy3BQeBQP=E?!mRxev$-_px$ z+o(ttW65hGYA|680F_2bGrwjN-wn5we4HPxY~2?1YAy1r0JTw*o{uE9$pq=usSZrg zICaP}$S43qGxMLm4?Me+sp)KNi76)(O#}Wd-%g%(luGP9DV3IzKv$uP*SNLhT9+ua zLu^L`+?R6V?4lXFkCgN4xcn2A&*!11pM?EPLAQ(Y;AUT(c^&VPGYo*-8co#v4ptU! zQQ#A{gL_V5lw(4Z=98{e@sdk$8+zZhTJn}-tiNe$HtiP!-SXueKK=KRtN)rI6-j{Q zj;A)WH{1l+fgT_w)G2I=sdR=-4-?1m_mH&{BUVW~ro4W>mO=OMAL z)$U0F-h$EGf*$scvng9CL6~_ybF-m8ogKJw;Bx~yxe5)KGEvV_>O7qd*Xok1u2Ejc zhzG5NMmeb=f8jA#w3Zu+mL0!9e!Zi1S1rvaqR|hZ`_I4}OqRj%4 z_(}J?7=tH1%Bj7_U2?|9IIDia!ZIgiKo(9Mx}Qh?*BvMDG5|ia;#!!D2J5&%c_# zkWwe0k?|P4r6iv-1lRWM_a}`bKp=t9-Ms)u033ywLm=Sl#~=e(5w;9bD{UyBC<=2i zrw$u$9kp;}g~pQ`iM`FbOjj;&F!)_63j0HyJ-8l%5^s=}0=j&yb5kC7oYeJQAEILF z$?G-#GgPd-fqYqfXVx6!?&R_rw8n-OJ!-^S53okgm!5IswCMTJp*pFNoa(%ed&|c< zh#c$(u5^d{;ZZC=78mwzfLs1-^BkksB7v@gYmS8s*H?<|CXEmR+s-Pf>jHyKR&+j;nhH28HM8^}}%vveFnOuxr z-LX<%u8EpR6VV?jm@xr-b8UQ*kZs$KnY-e~^ zyp&$foaI(def#*?>m7$O3tZ6`PbC2!wSOQy6?`XH_-<)}1|zy!V6@B*I)R~EK-YW4 z(^$H|EL`sura&!RB}@Cc_*dJn%ChxRBjb()4SAfD@_JxxA7|^kO+J}n4+JN(M}y1U zSnbiM33B#z43C-y9G4{z$&rV}B*v7oi{}*Wfw!IHU8yzMU^~N^hp8`dMa9C0gVu5} z(zix?AA;+1xf=`i*mMs@xbCYZTG*DC#v8YOLSPkQOSbj4xn*sQbf9Maez96YW{d&H z*PNGIwv4SU1?IdJy+sr0Z`YGG(Atp}zNMUs(%I$^SKXStMu)0Jj_RM;-CpqL%U`m4 z;Qt8@|7AUkhyZF~Ttnc#1z;^hjoY%&wSS;#5gIbwvR$hQe0=iqQ3hqgj^~8i!1uhg z59+*#?eTSYMK=y#gAW%6phoe9d1wlHu`fZ1M|q5S9xNc$*AMXm zY_lt>t*7w$tl_@ChpQ3KA1!Z_A(qv|SKE}Tt~Dm30g}{Bdm*_jpTk{y#zaYp2#gOw ztwii~)qo9puLRFl~MOiDS7-6Eh2f z+F9B34#$SMHWX{FBe+d=TzvY)mkBAYwJt%mBKq3dJ2Wzvx_3h{DHVO~mzN#1vdMcG zV;|x)Z&K+0$`am`*Ig$ z<+b_Y;>cg$E-SJtmYJ_I%hWVPmzDunV;*M5rtjyn-Lq}ELslXy!1~PZ45}%D9uIbH zpBEi(t&k)H;_3ww;u@nj<_W0n=?t#Ae4-j<7#NnFs!G^dMQw}=e+!VXPz`zQ3>(U8 z|Gn5bow>SlBEfxP-xoTNOowcAVs%lCx(nSc`_?a`pB;Vu7J(vVEr!&yAs4DI2 zfK&K3EgJZi5#L~eiP|}N6U0ApaTV%IRtF-(*`)F9Z zdj|wei$nkmo#O52(5b&pcsJ2ewy^wj!z}3K0E8!D+O%leao3!*nIHJQJPi)GA3l#O zE1t}?={!MCU0~8K%0J1%^vt6y2tcDMGnVSj4SdpqMz;#NK%(XESB!*yYuJiruE%yY zYe^@l=2&9%)vs0-*ll^?RS(Gx{#wC1udN{%1mFiIXUbD&kz4w!|5#FLul=#)3dONK zpWpz@0_1TIO`xZx^jDC(fqPQs^&nlk{S>;69T-r@H?8`7*@6cBfYrEsJ3|E@(8L+c z3TwrW7K=UIEyePdv*y8oKXls}Y=G!4@s;k;&p>Dc8ywPXdW>N){HMf4#8ZKK73SQ+1I^imq^wA|2F{twS@S{0jVhplVid8lQx6hEgAErPlxz#r$x<9N` zEhk4XT+Bcv@KWFS=4`HiY|pJADyAWDEWs4BIdk}nZ6kr}^QJWt1$OYv{1x={I$68S zZ6Lk%Wwk%K97PqDi>)|VBPjAo;1JD)@9Abf!8}9sJg7n^9xO}$wGwSiA^$_vFcTMw z>}}Tuymumt|332k7HB{SQmnAE>E1XWO!Ti_W*?O=hJqH8TLhj`Cp^z5u+%~Kw>Kwi zZUM{GLM6fv9yf@C9hzD-qh6=(J(NLv@Wv_zNUae)o&M#PsSGX; Ys-Sqx^wDua5b(HWYzZqfy!GHe0Bjl^EC2ui From 6095b4724f2641f9551f9eb81ddf10a00dd3d244 Mon Sep 17 00:00:00 2001 From: Timothy Teakettle <59849408+timothyteakettle@users.noreply.github.com> Date: Mon, 10 May 2021 01:54:24 +0100 Subject: [PATCH 176/259] fixes fox markings legs --- .../mob/dead/new_player/sprite_accessories/body_markings.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/dead/new_player/sprite_accessories/body_markings.dm b/code/modules/mob/dead/new_player/sprite_accessories/body_markings.dm index 7e275e49a2..148af35247 100644 --- a/code/modules/mob/dead/new_player/sprite_accessories/body_markings.dm +++ b/code/modules/mob/dead/new_player/sprite_accessories/body_markings.dm @@ -95,7 +95,7 @@ /datum/sprite_accessory/mam_body_markings/fox name = "Fox" icon_state = "fox" - covered_limbs = list("Head" = MATRIX_RED_GREEN, "Chest" = MATRIX_RED_GREEN, "Left Leg" = MATRIX_RED_GREEN, "Right Leg" = MATRIX_RED_GREEN, "Left Arm" = MATRIX_RED_BLUE, "Right Arm" = MATRIX_RED_BLUE) + covered_limbs = list("Head" = MATRIX_RED_GREEN, "Chest" = MATRIX_RED_GREEN, "Left Leg" = MATRIX_ALL, "Right Leg" = MATRIX_ALL, "Left Arm" = MATRIX_RED_BLUE, "Right Arm" = MATRIX_RED_BLUE) /datum/sprite_accessory/mam_body_markings/frog name = "Frog" From d9e86fdd492f078d4308449728ec5fa3b3a7d2d3 Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Mon, 10 May 2021 01:27:50 -0500 Subject: [PATCH 177/259] Automatic changelog generation for PR #14698 [ci skip] --- html/changelogs/AutoChangeLog-pr-14698.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-14698.yml diff --git a/html/changelogs/AutoChangeLog-pr-14698.yml b/html/changelogs/AutoChangeLog-pr-14698.yml new file mode 100644 index 0000000000..09270483e6 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-14698.yml @@ -0,0 +1,4 @@ +author: "bunny232" +delete-after: True +changes: + - rscadd: "Delta station xenobiology department has received enhanced scrubbing and ventilation capabilities similar to box and meta" From 6926ea74abe299c0beadfd995809f6ec46936745 Mon Sep 17 00:00:00 2001 From: Timothy Teakettle <59849408+timothyteakettle@users.noreply.github.com> Date: Mon, 10 May 2021 13:58:53 +0100 Subject: [PATCH 178/259] Update preferences.dm --- code/modules/client/preferences.dm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/code/modules/client/preferences.dm b/code/modules/client/preferences.dm index 4acf911e7b..fd2235234b 100644 --- a/code/modules/client/preferences.dm +++ b/code/modules/client/preferences.dm @@ -527,6 +527,9 @@ GLOBAL_LIST_EMPTY(preferences_datums) if(length(features[marking_type])) dat += "" var/list/markings = features[marking_type] + if(!islist(markings)) + # something went terribly wrong + markings = [] var/list/reverse_markings = reverseList(markings) for(var/list/marking_list in reverse_markings) var/marking_index = markings.Find(marking_list) // consider changing loop to go through indexes over lists instead of using Find here From cfcbaa001b4f9f8097a854cacdf78ac4042dfb67 Mon Sep 17 00:00:00 2001 From: Timothy Teakettle <59849408+timothyteakettle@users.noreply.github.com> Date: Mon, 10 May 2021 14:31:36 +0100 Subject: [PATCH 179/259] fixes --- code/modules/client/preferences.dm | 2 +- code/modules/surgery/bodyparts/_bodyparts.dm | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/code/modules/client/preferences.dm b/code/modules/client/preferences.dm index fd2235234b..6a463d53bb 100644 --- a/code/modules/client/preferences.dm +++ b/code/modules/client/preferences.dm @@ -528,7 +528,7 @@ GLOBAL_LIST_EMPTY(preferences_datums) dat += "
    " var/list/markings = features[marking_type] if(!islist(markings)) - # something went terribly wrong + // something went terribly wrong markings = [] var/list/reverse_markings = reverseList(markings) for(var/list/marking_list in reverse_markings) diff --git a/code/modules/surgery/bodyparts/_bodyparts.dm b/code/modules/surgery/bodyparts/_bodyparts.dm index 50d8cdaed5..8c7a99f8b1 100644 --- a/code/modules/surgery/bodyparts/_bodyparts.dm +++ b/code/modules/surgery/bodyparts/_bodyparts.dm @@ -848,7 +848,7 @@ auxmarking += image('modular_citadel/icons/mob/markings_notmammals.dmi', "husk_[I]", -aux_layer, image_dir) else for(var/marking_list in body_markings_list) - auxmarking += image(body_markings_list[1], "[body_markings_list[2]]_[I]", -aux_layer, image_dir) + auxmarking += image(marking_list[1], "[marking_list[2]]_[I]", -aux_layer, image_dir) . += aux . += auxmarking @@ -868,7 +868,7 @@ auxmarking += image('modular_citadel/icons/mob/markings_notmammals.dmi', "husk_[I]", -aux_layer, image_dir) else for(var/marking_list in body_markings_list) - auxmarking += image(body_markings_list[1], "[body_markings_list[2]]_[I]", -aux_layer, image_dir) + auxmarking += image(marking_list[1], "[marking_list[2]]_[I]", -aux_layer, image_dir) . += auxmarking . += aux From 24774856bcaba368cbafc125093efca1fada1312 Mon Sep 17 00:00:00 2001 From: Timothy Teakettle <59849408+timothyteakettle@users.noreply.github.com> Date: Mon, 10 May 2021 14:34:22 +0100 Subject: [PATCH 180/259] Update preferences.dm --- code/modules/client/preferences.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/client/preferences.dm b/code/modules/client/preferences.dm index 6a463d53bb..7ae8ec280b 100644 --- a/code/modules/client/preferences.dm +++ b/code/modules/client/preferences.dm @@ -529,7 +529,7 @@ GLOBAL_LIST_EMPTY(preferences_datums) var/list/markings = features[marking_type] if(!islist(markings)) // something went terribly wrong - markings = [] + markings = list() var/list/reverse_markings = reverseList(markings) for(var/list/marking_list in reverse_markings) var/marking_index = markings.Find(marking_list) // consider changing loop to go through indexes over lists instead of using Find here From be9b1ddffb7c3b1ae6e28b1ec93e14c09b20dba0 Mon Sep 17 00:00:00 2001 From: Timothy Teakettle <59849408+timothyteakettle@users.noreply.github.com> Date: Mon, 10 May 2021 14:43:45 +0100 Subject: [PATCH 181/259] fixes --- code/__HELPERS/mobs.dm | 10 +--------- .../mob/living/carbon/human/species_types/podpeople.dm | 2 +- 2 files changed, 2 insertions(+), 10 deletions(-) diff --git a/code/__HELPERS/mobs.dm b/code/__HELPERS/mobs.dm index c6c8c0bced..245f8e5d4c 100644 --- a/code/__HELPERS/mobs.dm +++ b/code/__HELPERS/mobs.dm @@ -114,14 +114,6 @@ if(!S.ckeys_allowed) snowflake_mam_tails_list[S.name] = mtpath var/list/snowflake_markings_list = list() - for(var/mmpath in GLOB.mam_body_markings_list) - var/datum/sprite_accessory/mam_body_markings/instance = GLOB.mam_body_markings_list[mmpath] - if(istype(instance, /datum/sprite_accessory)) - var/datum/sprite_accessory/S = instance - if(intendedspecies && S.recommended_species && !S.recommended_species.Find(intendedspecies)) - continue - if(!S.ckeys_allowed) - snowflake_markings_list[S.name] = mmpath var/list/snowflake_ears_list = list() for(var/mepath in GLOB.mam_ears_list) var/datum/sprite_accessory/ears/mam_ears/instance = GLOB.mam_ears_list[mepath] @@ -184,7 +176,7 @@ "arachnid_spinneret" = pick(GLOB.arachnid_spinneret_list), "arachnid_mandibles" = pick(GLOB.arachnid_mandibles_list), "taur" = "None", - "mam_body_markings" = snowflake_markings_list.len ? pick(snowflake_markings_list) : "None", + "mam_body_markings" = list(), "mam_ears" = snowflake_ears_list ? pick(snowflake_ears_list) : "None", "mam_snouts" = snowflake_mam_snouts_list ? pick(snowflake_mam_snouts_list) : "None", "mam_tail" = snowflake_mam_tails_list ? pick(snowflake_mam_tails_list) : "None", diff --git a/code/modules/mob/living/carbon/human/species_types/podpeople.dm b/code/modules/mob/living/carbon/human/species_types/podpeople.dm index 697c3db35e..e30f4622a0 100644 --- a/code/modules/mob/living/carbon/human/species_types/podpeople.dm +++ b/code/modules/mob/living/carbon/human/species_types/podpeople.dm @@ -74,7 +74,7 @@ name = "Anthromorphic Plant" id = SPECIES_POD_WEAK species_traits = list(EYECOLOR,HAIR,FACEHAIR,LIPS,MUTCOLORS,CAN_SCAR,HAS_FLESH,HAS_BONE) - mutant_bodyparts = list("mcolor" = "FFFFFF","mcolor2" = "FFFFFF","mcolor3" = "FFFFFF", "mam_snouts" = "Husky", "mam_tail" = "Husky", "mam_ears" = "Husky", "mam_body_markings" = "Husky", "taur" = "None", "legs" = "Normal Legs") + mutant_bodyparts = list("mcolor" = "FFFFFF","mcolor2" = "FFFFFF","mcolor3" = "FFFFFF", "mam_snouts" = "Husky", "mam_tail" = "Husky", "mam_ears" = "Husky", "mam_body_markings" = list(), "taur" = "None", "legs" = "Normal Legs") limbs_id = SPECIES_POD light_nutrition_gain_factor = 3 light_bruteheal = -0.2 From c51fa954cf5fc524b152c1f334b4a71a83301c37 Mon Sep 17 00:00:00 2001 From: Timothy Teakettle <59849408+timothyteakettle@users.noreply.github.com> Date: Mon, 10 May 2021 14:51:18 +0100 Subject: [PATCH 182/259] Update mobs.dm --- code/__HELPERS/mobs.dm | 1 - 1 file changed, 1 deletion(-) diff --git a/code/__HELPERS/mobs.dm b/code/__HELPERS/mobs.dm index 245f8e5d4c..02af6fab79 100644 --- a/code/__HELPERS/mobs.dm +++ b/code/__HELPERS/mobs.dm @@ -113,7 +113,6 @@ continue if(!S.ckeys_allowed) snowflake_mam_tails_list[S.name] = mtpath - var/list/snowflake_markings_list = list() var/list/snowflake_ears_list = list() for(var/mepath in GLOB.mam_ears_list) var/datum/sprite_accessory/ears/mam_ears/instance = GLOB.mam_ears_list[mepath] From 0c0e5f6d184496af75edbc4218421db7e5b861a7 Mon Sep 17 00:00:00 2001 From: DeltaFire Date: Mon, 10 May 2021 17:44:21 +0200 Subject: [PATCH 183/259] fixes --- code/datums/helper_datums/teleport.dm | 3 ++- .../antagonists/eldritch_cult/eldritch_items.dm | 15 +++++++++++++-- 2 files changed, 15 insertions(+), 3 deletions(-) diff --git a/code/datums/helper_datums/teleport.dm b/code/datums/helper_datums/teleport.dm index 7855c4e87b..c1aed96d61 100644 --- a/code/datums/helper_datums/teleport.dm +++ b/code/datums/helper_datums/teleport.dm @@ -142,7 +142,8 @@ // Can most things breathe? if(trace_gases) continue - if(A.get_moles(/datum/gas/oxygen) >= 16) + var/oxy_moles = A.get_moles(/datum/gas/oxygen) + if(oxy_moles < 16 || oxy_moles > 50) continue if(A.get_moles(/datum/gas/plasma)) continue diff --git a/code/modules/antagonists/eldritch_cult/eldritch_items.dm b/code/modules/antagonists/eldritch_cult/eldritch_items.dm index 0dd9cf6bea..a6380a81b2 100644 --- a/code/modules/antagonists/eldritch_cult/eldritch_items.dm +++ b/code/modules/antagonists/eldritch_cult/eldritch_items.dm @@ -62,13 +62,24 @@ /datum/action/innate/heretic_shatter/IsAvailable() if(IS_HERETIC(holder) || IS_HERETIC_MONSTER(holder)) - return TRUE + return ..() else return FALSE /datum/action/innate/heretic_shatter/Activate() if(do_after(holder,10, target = holder)) - var/turf/safe_turf = find_safe_turf(zlevels = sword.z, extended_safety_checks = TRUE) + if(!sword || QDELETED(sword)) + return + if(!IsAvailable()) //Never trust the user. + return + var/swordz = (get_turf(sword))?.z //SHOULD usually have a turf but if it doesn't better be prepared. + if(!swordz) + to_chat(holder, "[sword] flickers but remains in place, as do you...") + return + var/turf/safe_turf = find_safe_turf(zlevels = swordz, extended_safety_checks = TRUE) + if(!safe_turf) + to_chat(holder, "[sword] flickers but remains in place, as do you...") + return do_teleport(holder,safe_turf,forceMove = TRUE,channel=TELEPORT_CHANNEL_MAGIC) to_chat(holder,"You feel a gust of energy flow through your body... the Rusted Hills heard your call...") qdel(sword) From 60673d9c5c09fd4b9498d568d9bcb3ddadbc38f3 Mon Sep 17 00:00:00 2001 From: Timothy Teakettle <59849408+timothyteakettle@users.noreply.github.com> Date: Mon, 10 May 2021 17:13:24 +0100 Subject: [PATCH 184/259] AAAAAA --- code/modules/client/preferences.dm | 17 +++++++++ code/modules/surgery/bodyparts/_bodyparts.dm | 39 ++++++++++---------- 2 files changed, 37 insertions(+), 19 deletions(-) diff --git a/code/modules/client/preferences.dm b/code/modules/client/preferences.dm index 7ae8ec280b..19103d8d9a 100644 --- a/code/modules/client/preferences.dm +++ b/code/modules/client/preferences.dm @@ -2477,6 +2477,23 @@ GLOBAL_LIST_EMPTY(preferences_datums) if(color_option) if(color_option == "Secondary") color_number = 2 if(color_option == "Tertiary") color_number = 3 + // perform some magic on the color number + var/list/marking_list = features[marking_type][index] + var/datum/sprite_accessory/mam_body_markings/S = GLOB.mam_body_markings_list[marking_list[2]] + var/matrixed_sections = S.covered_limbs[GLOB.bodypart_names[num2text(marking_list[1])]] + if(color_number == 1) + switch(matrixed_sections) + if(MATRIX_GREEN) + color_number = 2 + if(MATRIX_BLUE) + color_number = 3 + else if(color_number == 2) + switch(matrixed_sections) + if(MATRIX_RED_BLUE) + color_number = 3 + if(MATRIX_GREEN_BLUE) + color_number = 3 + var/color_list = features[marking_type][index][3] var/new_marking_color = input(user, "Choose your character's marking color:", "Character Preference","#"+color_list[color_number]) as color|null if(new_marking_color) diff --git a/code/modules/surgery/bodyparts/_bodyparts.dm b/code/modules/surgery/bodyparts/_bodyparts.dm index 8c7a99f8b1..168a12a2ef 100644 --- a/code/modules/surgery/bodyparts/_bodyparts.dm +++ b/code/modules/surgery/bodyparts/_bodyparts.dm @@ -843,12 +843,14 @@ for(var/I in aux_icons) var/aux_layer = aux_icons[I] aux += image(limb.icon, "[species_id]_[I]", -aux_layer, image_dir) - if(!isnull(marking_value)) - if(species_id == "husk") - auxmarking += image('modular_citadel/icons/mob/markings_notmammals.dmi', "husk_[I]", -aux_layer, image_dir) - else - for(var/marking_list in body_markings_list) - auxmarking += image(marking_list[1], "[marking_list[2]]_[I]", -aux_layer, image_dir) + if(species_id == "husk") + auxmarking += image('modular_citadel/icons/mob/markings_notmammals.dmi', "husk_[I]", -aux_layer, image_dir) + else + for(var/marking_list in body_markings_list) + var/image/aux_marking_image = image(marking_list[1], "[marking_list[2]]_[I]", -aux_layer, image_dir) + if(length(marking_list) == 3) + aux_marking_image.color = marking_list[3] + auxmarking += aux_marking_image . += aux . += auxmarking @@ -863,12 +865,14 @@ for(var/I in aux_icons) var/aux_layer = aux_icons[I] aux += image(limb.icon, "[I]", -aux_layer, image_dir) - if(!isnull(marking_value)) - if(species_id == "husk") - auxmarking += image('modular_citadel/icons/mob/markings_notmammals.dmi', "husk_[I]", -aux_layer, image_dir) - else - for(var/marking_list in body_markings_list) - auxmarking += image(marking_list[1], "[marking_list[2]]_[I]", -aux_layer, image_dir) + if(species_id == "husk") + auxmarking += image('modular_citadel/icons/mob/markings_notmammals.dmi', "husk_[I]", -aux_layer, image_dir) + else + for(var/marking_list in body_markings_list) + var/image/aux_marking_image = image(marking_list[1], "[marking_list[2]]_[I]", -aux_layer, image_dir) + if(length(marking_list) == 3) + aux_marking_image.color = marking_list[3] + auxmarking += aux_marking_image . += auxmarking . += aux @@ -907,13 +911,10 @@ if(grayscale) I.icon_state += "_g" I.color = draw_color - if(!isnull(marking_value)) - for(var/a in auxmarking) - var/image/I = a - if(species_id == "husk") - I.color = "#141414" - else - I.color = list(markings_color) + for(var/a in auxmarking) + var/image/I = a + if(species_id == "husk") + I.color = "#141414" if(!isnull(body_markings)) if(species_id == "husk") From 7dfe4771c84c1ea4c060dbcd77d6b73bc3b14aba Mon Sep 17 00:00:00 2001 From: bunny232 Date: Mon, 10 May 2021 13:11:26 -0400 Subject: [PATCH 185/259] Update DeltaStation2.dmm --- _maps/map_files/Deltastation/DeltaStation2.dmm | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/_maps/map_files/Deltastation/DeltaStation2.dmm b/_maps/map_files/Deltastation/DeltaStation2.dmm index f9da727d53..39688c1db8 100644 --- a/_maps/map_files/Deltastation/DeltaStation2.dmm +++ b/_maps/map_files/Deltastation/DeltaStation2.dmm @@ -65125,6 +65125,10 @@ network = list("ss13","medbay") }, /obj/effect/turf_decal/delivery, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, /turf/open/floor/plasteel, /area/medical/virology) "dQh" = ( From 8c0911e9689edb439f5bfef2889452fc53e5b7f0 Mon Sep 17 00:00:00 2001 From: qweq12yt <45515587+qweq12yt@users.noreply.github.com> Date: Mon, 10 May 2021 15:56:50 -0300 Subject: [PATCH 186/259] fix hulks breaking cuffs/zipties --- code/modules/mob/living/carbon/carbon.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/carbon/carbon.dm b/code/modules/mob/living/carbon/carbon.dm index 6f5109c90b..c1110af267 100644 --- a/code/modules/mob/living/carbon/carbon.dm +++ b/code/modules/mob/living/carbon/carbon.dm @@ -370,7 +370,7 @@ breakouttime = 50 visible_message("[src] is trying to break [I]!") to_chat(src, "You attempt to break [I]... (This will take around 5 seconds and you need to stand still.)") - if(do_after(src, breakouttime, 0, target = src)) + if(do_after(src, breakouttime, 0, target = src, required_mobility_flags = MOBILITY_RESIST)) clear_cuffs(I, cuff_break) else to_chat(src, "You fail to break [I]!") From 3b234405c89318a070169fd3259dba06345c1299 Mon Sep 17 00:00:00 2001 From: qweq12yt <45515587+qweq12yt@users.noreply.github.com> Date: Mon, 10 May 2021 16:06:57 -0300 Subject: [PATCH 187/259] fixed disky comfort spam --- code/modules/antagonists/nukeop/equipment/nuclearbomb.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/antagonists/nukeop/equipment/nuclearbomb.dm b/code/modules/antagonists/nukeop/equipment/nuclearbomb.dm index 7d669e5c41..eb98635e65 100644 --- a/code/modules/antagonists/nukeop/equipment/nuclearbomb.dm +++ b/code/modules/antagonists/nukeop/equipment/nuclearbomb.dm @@ -633,7 +633,7 @@ This is here to make the tiles around the station mininuke change when it's arme AddComponent(/datum/component/stationloving, !fake) /obj/item/disk/nuclear/process() - ++process_tick + process_tick++ if(fake) STOP_PROCESSING(SSobj, src) CRASH("A fake nuke disk tried to call process(). Who the fuck and how the fuck") @@ -650,7 +650,7 @@ This is here to make the tiles around the station mininuke change when it's arme disk_comfort_level++ if(disk_comfort_level >= 2) //Sleep tight, disky. - if(process_tick % 30) + if(!(process_tick % 30)) visible_message("[src] sleeps soundly. Sleep tight, disky.") if(last_disk_move < world.time - 5000 && prob((world.time - 5000 - last_disk_move)*0.0001)) var/datum/round_event_control/operative/loneop = locate(/datum/round_event_control/operative) in SSevents.control From af3f835db8f966709805788ebe7e2049b9a4fa4c Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Mon, 10 May 2021 14:28:41 -0500 Subject: [PATCH 188/259] Automatic changelog generation for PR #14704 [ci skip] --- html/changelogs/AutoChangeLog-pr-14704.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-14704.yml diff --git a/html/changelogs/AutoChangeLog-pr-14704.yml b/html/changelogs/AutoChangeLog-pr-14704.yml new file mode 100644 index 0000000000..fc452408b7 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-14704.yml @@ -0,0 +1,4 @@ +author: "LetterN" +delete-after: True +changes: + - bugfix: "fixes emagging console shuttle purchases" From 28c32f3d90d166e91559a08f5ef3b904cfa08eb4 Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Mon, 10 May 2021 14:29:51 -0500 Subject: [PATCH 189/259] Automatic changelog generation for PR #14703 [ci skip] --- html/changelogs/AutoChangeLog-pr-14703.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-14703.yml diff --git a/html/changelogs/AutoChangeLog-pr-14703.yml b/html/changelogs/AutoChangeLog-pr-14703.yml new file mode 100644 index 0000000000..f1d2e7951a --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-14703.yml @@ -0,0 +1,4 @@ +author: "LetterN" +delete-after: True +changes: + - balance: "syndie melee simplemobs has no more bullshit shield" From 7560898f94ecb36a1dcc4e5331084281d9d99b41 Mon Sep 17 00:00:00 2001 From: timothyteakettle <59849408+timothyteakettle@users.noreply.github.com> Date: Mon, 10 May 2021 22:53:27 +0100 Subject: [PATCH 190/259] Update preferences.dm --- code/modules/client/preferences.dm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/code/modules/client/preferences.dm b/code/modules/client/preferences.dm index 19103d8d9a..bc62879d46 100644 --- a/code/modules/client/preferences.dm +++ b/code/modules/client/preferences.dm @@ -2487,6 +2487,8 @@ GLOBAL_LIST_EMPTY(preferences_datums) color_number = 2 if(MATRIX_BLUE) color_number = 3 + if(MATRIX_GREEN_BLUE) + color_number = 2 else if(color_number == 2) switch(matrixed_sections) if(MATRIX_RED_BLUE) From 59914250c3493da3b361bd1fdd4b8e422f3e18f0 Mon Sep 17 00:00:00 2001 From: Lin Date: Mon, 10 May 2021 17:04:48 -0500 Subject: [PATCH 191/259] spellcheck --- code/modules/mob/living/carbon/human/species_types/bugmen.dm | 2 +- .../mob/living/carbon/human/species_types/flypeople.dm | 2 +- .../mob/living/carbon/human/species_types/lizardpeople.dm | 2 +- .../mob/living/carbon/human/species_types/mushpeople.dm | 2 +- .../mob/living/carbon/human/species_types/podpeople.dm | 4 ++-- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/code/modules/mob/living/carbon/human/species_types/bugmen.dm b/code/modules/mob/living/carbon/human/species_types/bugmen.dm index 773651d464..c649339fe3 100644 --- a/code/modules/mob/living/carbon/human/species_types/bugmen.dm +++ b/code/modules/mob/living/carbon/human/species_types/bugmen.dm @@ -1,5 +1,5 @@ /datum/species/insect - name = "Anthromorphic Insect" + name = "Anthropomorphic Insect" id = SPECIES_INSECT say_mod = "chitters" default_color = "00FF00" diff --git a/code/modules/mob/living/carbon/human/species_types/flypeople.dm b/code/modules/mob/living/carbon/human/species_types/flypeople.dm index c3e406244b..5a185cbeb8 100644 --- a/code/modules/mob/living/carbon/human/species_types/flypeople.dm +++ b/code/modules/mob/living/carbon/human/species_types/flypeople.dm @@ -1,5 +1,5 @@ /datum/species/fly - name = "Anthromorphic Fly" + name = "Anthropomorphic Fly" id = SPECIES_FLY say_mod = "buzzes" species_traits = list(NOEYES,HAS_FLESH,HAS_BONE) diff --git a/code/modules/mob/living/carbon/human/species_types/lizardpeople.dm b/code/modules/mob/living/carbon/human/species_types/lizardpeople.dm index 40645b13d4..cfbb8c31c0 100644 --- a/code/modules/mob/living/carbon/human/species_types/lizardpeople.dm +++ b/code/modules/mob/living/carbon/human/species_types/lizardpeople.dm @@ -1,6 +1,6 @@ /datum/species/lizard // Reptilian humanoids with scaled skin and tails. - name = "Anthromorphic Lizard" + name = "Anthropomorphic Lizard" id = SPECIES_LIZARD say_mod = "hisses" default_color = "00FF00" diff --git a/code/modules/mob/living/carbon/human/species_types/mushpeople.dm b/code/modules/mob/living/carbon/human/species_types/mushpeople.dm index dcbdf91485..0655b28197 100644 --- a/code/modules/mob/living/carbon/human/species_types/mushpeople.dm +++ b/code/modules/mob/living/carbon/human/species_types/mushpeople.dm @@ -1,5 +1,5 @@ /datum/species/mush //mush mush codecuck - name = "Anthromorphic Mushroom" + name = "Anthropomorphic Mushroom" id = SPECIES_MUSHROOM mutant_bodyparts = list("caps" = "Round") diff --git a/code/modules/mob/living/carbon/human/species_types/podpeople.dm b/code/modules/mob/living/carbon/human/species_types/podpeople.dm index 697c3db35e..0fcafaa208 100644 --- a/code/modules/mob/living/carbon/human/species_types/podpeople.dm +++ b/code/modules/mob/living/carbon/human/species_types/podpeople.dm @@ -1,6 +1,6 @@ /datum/species/pod // A mutation caused by a human being ressurected in a revival pod. These regain health in light, and begin to wither in darkness. - name = "Anthromorphic Plant" + name = "Anthropomorphic Plant" id = SPECIES_POD default_color = "59CE00" species_traits = list(MUTCOLORS,EYECOLOR,CAN_SCAR,HAS_FLESH,HAS_BONE) @@ -71,7 +71,7 @@ H.emote("spin") /datum/species/pod/pseudo_weak - name = "Anthromorphic Plant" + name = "Anthropomorphic Plant" id = SPECIES_POD_WEAK species_traits = list(EYECOLOR,HAIR,FACEHAIR,LIPS,MUTCOLORS,CAN_SCAR,HAS_FLESH,HAS_BONE) mutant_bodyparts = list("mcolor" = "FFFFFF","mcolor2" = "FFFFFF","mcolor3" = "FFFFFF", "mam_snouts" = "Husky", "mam_tail" = "Husky", "mam_ears" = "Husky", "mam_body_markings" = "Husky", "taur" = "None", "legs" = "Normal Legs") From 4609d732f9b213800c99db4425b35a9976e9120e Mon Sep 17 00:00:00 2001 From: Linzolle Date: Mon, 10 May 2021 17:15:43 -0500 Subject: [PATCH 192/259] more spellcheck of anthropomorph --- .../human/species_types/{anthromorph.dm => anthropomorph.dm} | 4 ++-- tgstation.dme | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) rename code/modules/mob/living/carbon/human/species_types/{anthromorph.dm => anthropomorph.dm} (97%) diff --git a/code/modules/mob/living/carbon/human/species_types/anthromorph.dm b/code/modules/mob/living/carbon/human/species_types/anthropomorph.dm similarity index 97% rename from code/modules/mob/living/carbon/human/species_types/anthromorph.dm rename to code/modules/mob/living/carbon/human/species_types/anthropomorph.dm index d718db818c..328a557931 100644 --- a/code/modules/mob/living/carbon/human/species_types/anthromorph.dm +++ b/code/modules/mob/living/carbon/human/species_types/anthropomorph.dm @@ -1,5 +1,5 @@ /datum/species/mammal - name = "Anthromorph" + name = "Anthropomorph" id = SPECIES_MAMMAL default_color = "4B4B4B" species_traits = list(MUTCOLORS,EYECOLOR,LIPS,HAIR,HORNCOLOR,WINGCOLOR,HAS_FLESH,HAS_BONE) @@ -20,7 +20,7 @@ allowed_limb_ids = list("mammal","aquatic","avian") /datum/species/mammal/synthetic - name = "Synthetic Anthromorph" + name = "Synthetic Anthropomorph" id = SPECIES_MAMMAL_SYNTHETIC species_traits = list(MUTCOLORS,NOTRANSSTING,EYECOLOR,LIPS,HAIR,ROBOTIC_LIMBS,HAS_FLESH,HAS_BONE,WINGCOLOR,HORNCOLOR) diff --git a/tgstation.dme b/tgstation.dme index 017bd393e7..be1fddaee2 100644 --- a/tgstation.dme +++ b/tgstation.dme @@ -2625,7 +2625,7 @@ #include "code\modules\mob\living\carbon\human\species_types\abductor.dm" #include "code\modules\mob\living\carbon\human\species_types\android.dm" #include "code\modules\mob\living\carbon\human\species_types\angel.dm" -#include "code\modules\mob\living\carbon\human\species_types\anthromorph.dm" +#include "code\modules\mob\living\carbon\human\species_types\anthropomorph.dm" #include "code\modules\mob\living\carbon\human\species_types\arachnid.dm" #include "code\modules\mob\living\carbon\human\species_types\bugmen.dm" #include "code\modules\mob\living\carbon\human\species_types\corporate.dm" From 051f9d06fc7abaa5b7f56ac9bf81895b5fa608df Mon Sep 17 00:00:00 2001 From: Changelogs Date: Tue, 11 May 2021 00:17:56 +0000 Subject: [PATCH 193/259] Automatic changelog compile [ci skip] --- html/changelog.html | 17 +++++++++++------ html/changelogs/.all_changelog.yml | 7 +++++++ html/changelogs/AutoChangeLog-pr-14698.yml | 4 ---- html/changelogs/AutoChangeLog-pr-14703.yml | 4 ---- html/changelogs/AutoChangeLog-pr-14704.yml | 4 ---- 5 files changed, 18 insertions(+), 18 deletions(-) delete mode 100644 html/changelogs/AutoChangeLog-pr-14698.yml delete mode 100644 html/changelogs/AutoChangeLog-pr-14703.yml delete mode 100644 html/changelogs/AutoChangeLog-pr-14704.yml diff --git a/html/changelog.html b/html/changelog.html index 34311cf190..61681621e7 100644 --- a/html/changelog.html +++ b/html/changelog.html @@ -50,6 +50,17 @@ -->
    +

    11 May 2021

    +

    LetterN updated:

    +
      +
    • fixes emagging console shuttle purchases
    • +
    • syndie melee simplemobs has no more bullshit shield
    • +
    +

    bunny232 updated:

    +
      +
    • Delta station xenobiology department has received enhanced scrubbing and ventilation capabilities similar to box and meta
    • +
    +

    09 May 2021

    Putnam3145 updated:

      @@ -760,12 +771,6 @@
      • uncapped TEG power, buffing high-temp TEGs
      - -

      09 March 2021

      -

      LetterN updated:

      -
        -
      • tg hardsync, mostly contains tgui
      • -
    GoonStation 13 Development Team diff --git a/html/changelogs/.all_changelog.yml b/html/changelogs/.all_changelog.yml index 8fbcc35763..ae29db429c 100644 --- a/html/changelogs/.all_changelog.yml +++ b/html/changelogs/.all_changelog.yml @@ -29269,3 +29269,10 @@ DO NOT EDIT THIS FILE BY HAND! AUTOMATICALLY GENERATED BY ss13_genchangelog.py. zeroisthebiggay: - balance: pirates now have a medbay and several other things qualifying as a buff - balance: pirates lost their toilet +2021-05-11: + LetterN: + - bugfix: fixes emagging console shuttle purchases + - balance: syndie melee simplemobs has no more bullshit shield + bunny232: + - rscadd: Delta station xenobiology department has received enhanced scrubbing and + ventilation capabilities similar to box and meta diff --git a/html/changelogs/AutoChangeLog-pr-14698.yml b/html/changelogs/AutoChangeLog-pr-14698.yml deleted file mode 100644 index 09270483e6..0000000000 --- a/html/changelogs/AutoChangeLog-pr-14698.yml +++ /dev/null @@ -1,4 +0,0 @@ -author: "bunny232" -delete-after: True -changes: - - rscadd: "Delta station xenobiology department has received enhanced scrubbing and ventilation capabilities similar to box and meta" diff --git a/html/changelogs/AutoChangeLog-pr-14703.yml b/html/changelogs/AutoChangeLog-pr-14703.yml deleted file mode 100644 index f1d2e7951a..0000000000 --- a/html/changelogs/AutoChangeLog-pr-14703.yml +++ /dev/null @@ -1,4 +0,0 @@ -author: "LetterN" -delete-after: True -changes: - - balance: "syndie melee simplemobs has no more bullshit shield" diff --git a/html/changelogs/AutoChangeLog-pr-14704.yml b/html/changelogs/AutoChangeLog-pr-14704.yml deleted file mode 100644 index fc452408b7..0000000000 --- a/html/changelogs/AutoChangeLog-pr-14704.yml +++ /dev/null @@ -1,4 +0,0 @@ -author: "LetterN" -delete-after: True -changes: - - bugfix: "fixes emagging console shuttle purchases" From 35fa7809a14c347d3fe251d5e0d7e10adba5fa5f Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Tue, 11 May 2021 14:08:36 -0500 Subject: [PATCH 194/259] Automatic changelog generation for PR #14706 [ci skip] --- html/changelogs/AutoChangeLog-pr-14706.yml | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-14706.yml diff --git a/html/changelogs/AutoChangeLog-pr-14706.yml b/html/changelogs/AutoChangeLog-pr-14706.yml new file mode 100644 index 0000000000..ecea6647ec --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-14706.yml @@ -0,0 +1,7 @@ +author: "DeltaFire15" +delete-after: True +changes: + - bugfix: "find_safe_turf no longer always fails on safe oxygen levels(??)" + - bugfix: "Heretic bladeshatters now actually take the heretic's z into account as intended, instead of always being station z +tweak: Message for failing the bladeshatter despite succeeding the do_after +tweak: Improves bladeshatter a bit by making it safer codewise" From e7107af0a409c7a7b02414c8b799d9d3a435c2dc Mon Sep 17 00:00:00 2001 From: Changelogs Date: Wed, 12 May 2021 00:18:48 +0000 Subject: [PATCH 195/259] Automatic changelog compile [ci skip] --- html/changelog.html | 17 +++++++---------- html/changelogs/.all_changelog.yml | 7 +++++++ html/changelogs/AutoChangeLog-pr-14706.yml | 7 ------- 3 files changed, 14 insertions(+), 17 deletions(-) delete mode 100644 html/changelogs/AutoChangeLog-pr-14706.yml diff --git a/html/changelog.html b/html/changelog.html index 61681621e7..b6b794f5ec 100644 --- a/html/changelog.html +++ b/html/changelog.html @@ -50,6 +50,13 @@ -->
    +

    12 May 2021

    +

    DeltaFire15 updated:

    +
      +
    • find_safe_turf no longer always fails on safe oxygen levels(??)
    • +
    • Heretic bladeshatters now actually take the heretic's z into account as intended, instead of always being station z tweak: Message for failing the bladeshatter despite succeeding the do_after tweak: Improves bladeshatter a bit by making it safer codewise
    • +
    +

    11 May 2021

    LetterN updated:

      @@ -761,16 +768,6 @@
      • Adds Periods and moves some words around.
      - -

      10 March 2021

      -

      Hatterhat updated:

      -
        -
      • The femur breaker now actually breaks legs by applying a compound fracture.
      • -
      -

      Putnam3145 updated:

      -
        -
      • uncapped TEG power, buffing high-temp TEGs
      • -
    GoonStation 13 Development Team diff --git a/html/changelogs/.all_changelog.yml b/html/changelogs/.all_changelog.yml index ae29db429c..768a1cfda6 100644 --- a/html/changelogs/.all_changelog.yml +++ b/html/changelogs/.all_changelog.yml @@ -29276,3 +29276,10 @@ DO NOT EDIT THIS FILE BY HAND! AUTOMATICALLY GENERATED BY ss13_genchangelog.py. bunny232: - rscadd: Delta station xenobiology department has received enhanced scrubbing and ventilation capabilities similar to box and meta +2021-05-12: + DeltaFire15: + - bugfix: find_safe_turf no longer always fails on safe oxygen levels(??) + - bugfix: 'Heretic bladeshatters now actually take the heretic''s z into account + as intended, instead of always being station z tweak: Message for failing the + bladeshatter despite succeeding the do_after tweak: Improves bladeshatter a + bit by making it safer codewise' diff --git a/html/changelogs/AutoChangeLog-pr-14706.yml b/html/changelogs/AutoChangeLog-pr-14706.yml deleted file mode 100644 index ecea6647ec..0000000000 --- a/html/changelogs/AutoChangeLog-pr-14706.yml +++ /dev/null @@ -1,7 +0,0 @@ -author: "DeltaFire15" -delete-after: True -changes: - - bugfix: "find_safe_turf no longer always fails on safe oxygen levels(??)" - - bugfix: "Heretic bladeshatters now actually take the heretic's z into account as intended, instead of always being station z -tweak: Message for failing the bladeshatter despite succeeding the do_after -tweak: Improves bladeshatter a bit by making it safer codewise" From f5c4d9adf28f090e3673d41e880b30029f01561b Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Wed, 12 May 2021 05:42:14 -0500 Subject: [PATCH 196/259] Automatic changelog generation for PR #14702 [ci skip] --- html/changelogs/AutoChangeLog-pr-14702.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-14702.yml diff --git a/html/changelogs/AutoChangeLog-pr-14702.yml b/html/changelogs/AutoChangeLog-pr-14702.yml new file mode 100644 index 0000000000..134122e668 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-14702.yml @@ -0,0 +1,4 @@ +author: "zeroisthebiggay" +delete-after: True +changes: + - rscadd: "vegas style bunny ears" From 72667c6485be56e597de9994bd424c7870a44c27 Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Wed, 12 May 2021 05:42:25 -0500 Subject: [PATCH 197/259] Automatic changelog generation for PR #14708 [ci skip] --- html/changelogs/AutoChangeLog-pr-14708.yml | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-14708.yml diff --git a/html/changelogs/AutoChangeLog-pr-14708.yml b/html/changelogs/AutoChangeLog-pr-14708.yml new file mode 100644 index 0000000000..b0b9e25b1f --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-14708.yml @@ -0,0 +1,5 @@ +author: "qweq12yt" +delete-after: True +changes: + - bugfix: "Fixed sleeping disky spam (it still sleeps soundly, but every minute instead of every two seconds)" + - bugfix: "Fixed Hulks not breaking cuffs, zipties, restraints." From 2b8fd131e00b7c936c1f754094c27900d22bede0 Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Wed, 12 May 2021 05:42:30 -0500 Subject: [PATCH 198/259] Automatic changelog generation for PR #14710 [ci skip] --- html/changelogs/AutoChangeLog-pr-14710.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-14710.yml diff --git a/html/changelogs/AutoChangeLog-pr-14710.yml b/html/changelogs/AutoChangeLog-pr-14710.yml new file mode 100644 index 0000000000..90dbe0cdac --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-14710.yml @@ -0,0 +1,4 @@ +author: "Linzolle" +delete-after: True +changes: + - spellcheck: "anthromorphic -> anthropomorphic" From 5eb1f38f5efcb840cc9c4c3f89aa9a25589dd278 Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Wed, 12 May 2021 05:43:13 -0500 Subject: [PATCH 199/259] Automatic changelog generation for PR #14650 [ci skip] --- html/changelogs/AutoChangeLog-pr-14650.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-14650.yml diff --git a/html/changelogs/AutoChangeLog-pr-14650.yml b/html/changelogs/AutoChangeLog-pr-14650.yml new file mode 100644 index 0000000000..0432473299 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-14650.yml @@ -0,0 +1,4 @@ +author: "WanderingFox95" +delete-after: True +changes: + - rscadd: "Pinot Mort (Necropolis Wine), a new, (totally healthy) mixed drink!" From 5601badbffe0bdd32926a5c47b40c10425d27fc8 Mon Sep 17 00:00:00 2001 From: silicons <2003111+silicons@users.noreply.github.com> Date: Wed, 12 May 2021 04:44:53 -0600 Subject: [PATCH 200/259] deterministic explosion system (#13392) * wae explosions * okay * changes * fixes * fix * ok * ok * kills more dead code * okay * fix * ok * tiles * ok * okay * woops * ok * fix * okay * mob damage * fixes * insanity * more * more * fixes * more * woot * don't commit that * YES * fix --- code/__DEFINES/dcs/signals.dm | 2 + code/__DEFINES/explosion.dm | 86 ++++ code/__DEFINES/subsystems.dm | 2 +- code/controllers/subsystem/explosions.dm | 23 ++ code/datums/explosion2.dm | 378 ++++++++++++++++++ code/game/atoms.dm | 37 +- code/game/machinery/_machinery.dm | 4 + code/game/machinery/doors/airlock.dm | 2 + code/game/machinery/doors/door.dm | 10 + code/game/machinery/doors/passworddoor.dm | 3 + code/game/machinery/doors/poddoor.dm | 2 + code/game/machinery/doors/windowdoor.dm | 2 + code/game/machinery/doppler_array.dm | 38 ++ .../objects/effects/decals/cleanable/misc.dm | 12 + code/game/objects/items.dm | 8 + code/game/objects/obj_defense.dm | 13 + code/game/objects/structures/window.dm | 15 + code/game/turfs/closed.dm | 3 + code/game/turfs/simulated/floor.dm | 55 +++ code/game/turfs/simulated/wall/reinf_walls.dm | 5 + code/game/turfs/simulated/walls.dm | 17 + code/game/turfs/space/space.dm | 2 + code/game/turfs/turf.dm | 18 + code/modules/admin/admin_verbs.dm | 46 +++ code/modules/antagonists/revenant/revenant.dm | 3 + code/modules/holiday/halloween/halloween.dm | 3 + code/modules/mob/living/bloodcrawl.dm | 4 + code/modules/mob/living/brain/brain.dm | 3 + code/modules/mob/living/living_defense.dm | 6 + .../living/simple_animal/guardian/guardian.dm | 3 + .../hostile/megafauna/megafauna.dm | 3 + .../hostile/mining_mobs/basilisk.dm | 7 + .../spells/spell_types/ethereal_jaunt.dm | 3 + .../modules/spells/spell_types/shadow_walk.dm | 3 + tgstation.dme | 3 + 35 files changed, 822 insertions(+), 2 deletions(-) create mode 100644 code/__DEFINES/explosion.dm create mode 100644 code/controllers/subsystem/explosions.dm create mode 100644 code/datums/explosion2.dm diff --git a/code/__DEFINES/dcs/signals.dm b/code/__DEFINES/dcs/signals.dm index 88f9759940..5e36abac15 100644 --- a/code/__DEFINES/dcs/signals.dm +++ b/code/__DEFINES/dcs/signals.dm @@ -83,6 +83,8 @@ #define COMSIG_ATOM_EXIT "atom_exit" //from base of atom/Exit(): (/atom/movable/exiting, /atom/newloc) #define COMPONENT_ATOM_BLOCK_EXIT 1 #define COMSIG_ATOM_EXITED "atom_exited" //from base of atom/Exited(): (atom/movable/exiting, atom/newloc) +/// From base of atom/wave_ex_act(): (datum/wave_explosion/explosion, args) +#define COMSIG_ATOM_WAVE_EX_ACT "atom_wave_ex_act" ///from base of atom/ex_act(): (severity, target) #define COMSIG_ATOM_EX_ACT "atom_ex_act" ///from base of atom/emp_act(): (severity) diff --git a/code/__DEFINES/explosion.dm b/code/__DEFINES/explosion.dm new file mode 100644 index 0000000000..adba852ff1 --- /dev/null +++ b/code/__DEFINES/explosion.dm @@ -0,0 +1,86 @@ +// THIS IS INSANITY +// These are how wave explosions track when there's not only one direction to keep track of (diagonals, etc) +#define WEX_DIR_NORTH NORTH +#define WEX_DIR_SOUTH SOUTH +#define WEX_DIR_EAST EAST +#define WEX_DIR_WEST WEST +#define WEX_ALLDIRS (WEX_DIR_NORTH | WEX_DIR_SOUTH | WEX_DIR_EAST | WEX_DIR_WEST) + +/// Default explosion power to consider an explosion over +#define EXPLOSION_POWER_DEAD 2.5 +/// Default explosion falloff +#define EXPLOSION_DEFAULT_FALLOFF_MULTIPLY 0.98 +/// Default explosion constant falloff +#define EXPLOSION_DEFAULT_FALLOFF_SUBTRACT 5 +/// Block amount at which point having 0 block resistance will result in a full block +#define EXPLOSION_POWER_NO_RESIST_THRESHOLD 5 + +/// Explosion power quantization +#define EXPLOSION_POWER_QUANTIZATION_ACCURACY 0.1 + +// [explosion_flags] variable on /atom +/// No blocking if we're not dense +#define EXPLOSION_FLAG_DENSITY_DEPENDENT (1<<0) +/// If we survive the explosion, we block ALL the power and ignore the results of wave_ex_act(). +#define EXPLOSION_FLAG_HARD_OBSTACLE (1<<1) + +// Standardized explosion powers +/// Maxcap +#define EXPLOSION_POWER_MAXCAP 500 +/// erases shreds from explosions/item damage +#define EXPLOSION_POWER_ERASE_SHREDS 400 +/// Gibs most mobs +#define EXPLOSION_POWER_NORMAL_MOB_GIB 400 + +// Walls +#define EXPLOSION_POWER_WALL_SCRAPE 400 +#define EXPLOSION_POWER_WALL_DISMANTLE 300 +#define EXPLOSION_POWER_WALL_MINIMUM_DISMANTLE 200 + +#define EXPLOSION_POWER_RWALL_SCRAPE 450 +#define EXPLOSION_POWER_RWALL_DISMANTLE 400 +#define EXPLOSION_POWER_RWALL_MINIMUM_DISMANTLE 300 + +// Floors +#define EXPLOSION_POWER_FLOOR_TILE_BREAK 50 +#define EXPLOSION_POWER_FLOOR_MINIMUM_TURF_BREAK 125 +#define EXPLOSION_POWER_FLOOR_TURF_BREAK_BONUS 225 +#define EXPLOSION_POWER_FLOOR_TURF_BREAK 350 +#define EXPLOSION_POWER_FLOOR_TURF_SCRAPE 425 +#define EXPLOSION_POWER_FLOOR_SHIELDED_IMMUNITY 250 + +// Helpers +/// Explosion power to object damage (without taking into consideration armor) +#define EXPLOSION_POWER_STANDARD_SCALE_OBJECT_DAMAGE(power, multiplier) (power>500)?(10*(power**0.6)*multiplier):(0.1*(power**1.3)*multiplier) +/// Explosion power to object damage for hard obstacles +#define EXPLOSION_POWER_STANDARD_SCALE_HARD_OBSTACLE_DAMAGE(power, multiplier) (power>500)?(10*(power**0.6)*multiplier):(0.15*(power**1.3)*multiplier) +/// Explosion power to object damage for windows +#define EXPLOSION_POWER_STANDARD_SCALE_WINDOW_DAMAGE(power, multiplier) (power>500)?(10*(power**0.6)*multiplier):(0.2*(power**1.3)*multiplier) +/// Default brute damage to do to living things +#define EXPLOSION_POWER_STANDARD_SCALE_MOB_DAMAGE(power, multiplier) ((power / 2) * multiplier) + +// Damage factors +/// Factor to multiply damage to a door by if it's open (and therefore not blocking the explosion) +#define EXPLOSION_DAMAGE_OPEN_DOOR_FACTOR 0.25 + +// Standardized explosion constant blocks +#define EXPLOSION_BLOCK_WINDOW 10 +#define EXPLOSION_BLOCK_MACHINE 20 +#define EXPLOSION_BLOCK_SPACE 20 +#define EXPLOSION_BLOCK_REINFORCED_WINDOW 50 +#define EXPLOSION_BLOCK_DENSE_FILLER 50 +#define EXPLOSION_BLOCK_WALL 75 +#define EXPLOSION_BLOCK_BLAST_PROOF 250 +#define EXPLOSION_BLOCK_BOROSILICATE_WINDOW 250 +#define EXPLOSION_BLOCK_EXTREME 250 + +// Standardized explosion factor blocks +#define EXPLOSION_DAMPEN_MACHINE 0.95 +#define EXPLOSION_DAMPEN_SPACE 0.95 +#define EXPLOSION_DAMPEN_WINDOW 0.95 +#define EXPLOSION_DAMPEN_REINFORCED_WINDOW 0.9 +#define EXPLOSION_DAMPEN_DENSE_FILLER 0.85 +#define EXPLOSION_DAMPEN_WALL 0.8 +#define EXPLOSION_DAMPEN_BOROSILICATE_WINDOW 0.65 +#define EXPLOSION_DAMPEN_BLAST_PROOF 0.65 +#define EXPLOSION_DAMPEN_EXTREME 0.5 diff --git a/code/__DEFINES/subsystems.dm b/code/__DEFINES/subsystems.dm index deb578464f..2c8001b086 100644 --- a/code/__DEFINES/subsystems.dm +++ b/code/__DEFINES/subsystems.dm @@ -180,6 +180,7 @@ #define FIRE_PRIORITY_PROJECTILES 200 #define FIRE_PRIORITY_TICKER 200 #define FIRE_PRIORITY_ATMOS_ADJACENCY 300 +#define FIRE_PRIORITY_EXPLOSIONS 350 #define FIRE_PRIORITY_STATPANEL 390 #define FIRE_PRIORITY_CHAT 400 #define FIRE_PRIORITY_RUNECHAT 410 @@ -219,7 +220,6 @@ A.flags_1 &= ~OVERLAY_QUEUED_1;\ } while(FALSE) - /** Create a new timer and add it to the queue. * Arguments: diff --git a/code/controllers/subsystem/explosions.dm b/code/controllers/subsystem/explosions.dm new file mode 100644 index 0000000000..30a05a7505 --- /dev/null +++ b/code/controllers/subsystem/explosions.dm @@ -0,0 +1,23 @@ +SUBSYSTEM_DEF(explosions) + name = "Explosions" + wait = 1 + flags = SS_TICKER + priority = FIRE_PRIORITY_EXPLOSIONS + var/static/list/datum/wave_explosion/wave_explosions = list() + var/static/list/datum/wave_explosion/active_wave_explosions = list() + var/static/list/datum/wave_explosion/currentrun = list() + +/datum/controller/subsystem/explosions/fire(resumed) + if(!resumed) + currentrun = active_wave_explosions.Copy() + var/datum/wave_explosion/E + var/ran = 0 + while(length(currentrun) && !MC_TICK_CHECK) + ran = 0 + for(var/i in currentrun) + E = i + if(E.tick()) + currentrun -= E + ran++ + if(!ran) + break diff --git a/code/datums/explosion2.dm b/code/datums/explosion2.dm new file mode 100644 index 0000000000..75f65e4b23 --- /dev/null +++ b/code/datums/explosion2.dm @@ -0,0 +1,378 @@ +/// Creates a wave explosion at a certain place +/proc/wave_explosion(turf/target, power, factor = EXPLOSION_DEFAULT_FALLOFF_MULTIPLY, constant = EXPLOSION_DEFAULT_FALLOFF_SUBTRACT, flash = 0, fire = 0, atom/source, speed = 0, + silent = FALSE, bypass_logging = FALSE, block_resistance = 1, start_immediately = TRUE) + if(!istype(target) || (power <= EXPLOSION_POWER_DEAD)) + return + if(!bypass_logging) + var/logstring = "Wave explosion at [COORD(target)]: [power]/[factor]/[constant]/[flash]/[fire]/[speed] initial/factor/constant/flash/fire/speed" + log_game(logstring) + message_admins(logstring) + return new /datum/wave_explosion(target, power, factor, constant, flash, fire, source, speed, silent, start_immediately, block_resistance) + +/** + * New force-blastwave explosion system + */ +/datum/wave_explosion + /// Next unique numerical ID + var/static/next_id = 0 + /// Our unique nuumerical ID + var/id + /// world.time we started at + var/start_time + /// Are we currently running? + var/running = FALSE + /// Are we currently finished? + var/finished = FALSE + /// What atom we originated from, if any + var/atom/source + + /// Explosion power at which point to consider to be a dead expansion + var/power_considered_dead = EXPLOSION_POWER_DEAD + /// Explosion power we were initially at + var/power_initial + /// Base explosion power falloff multiplier (applied first) + var/power_falloff_factor = EXPLOSION_DEFAULT_FALLOFF_MULTIPLY + /// Base explosion power falloff subtract (applied second) + var/power_falloff_constant = EXPLOSION_DEFAULT_FALLOFF_SUBTRACT + /// Flash range + var/flash_range = 0 + /// Fire probability per tile + var/fire_probability = 0 + /// Are we silent/do we make the screenshake/sounds? + var/silent = FALSE + + // Modifications + /// Object damage mod + var/object_damage_mod = 1 + /// Hard obstcales get this mod INSTEAD of object damage mod + var/hard_obstacle_mod = 1 + /// Window shatter mod. Overrides both [hard_obstcale_mod] and [object_damage_mod] + var/window_shatter_mod = 1 + /// Wall destruction mod + var/wall_destroy_mod = 1 + /// Mob damage mod + var/mob_damage_mod = 1 + /// Mob gib mod + var/mob_gib_mod = 1 + /// Mob deafen mod + var/mob_deafen_mod = 1 + /// block = block / this, if 0 any block is absolute + var/block_resistance = 1 + + // Rewrite count: 2 + // Each cycle is a "perfect ring". + // We run into the problem that diagonal hitboxes don't exist on 2d grid games. + // How we deal with this is this: + // The first half of each cycle explodes cardinal directions awaiting expansion first + // Diagonals get added to a potential diagonals list. + // The second half of each cycle checks the potential diagonals list. If something isn't on the exploded list, + // we know it's a valid diagonal and explode it. + // Then all exploded turfs are flushed to exploded_last and it continues. + // Direction bitflags use the WEX_DIR_X flags so we can keep track of more than one direction in a single field + // The insanity begins when I realized that doing cardinals are easy but diagonals require: + // - Tallying the explosive power that should go into it + // - Exploding it afterwards using the tallied power rather than passed power (so corners aren't far weaker unless there's one side of it blocked) + // Expanding the explosion power of the now exploded diagonal into the two dirs its cardinals are in + // If this is done using a perfect algorithm it should be relatively efficient and result in a near-perfect shockwave simulation. + + /// The last ring that's been exploded. Any turfs in this will completely ignore the current cycle. Turf = TRUE + var/list/turf/exploded_last = list() + /// The "edges" + dirs that need to be processed this cycle. turf = dir flags + var/list/turf/edges = list() + /// The powers of the current turf edges. turf = power + var/list/turf/powers = list() + + /// What cycle are we on? + var/cycle + /// When we started the current cycle + var/cycle_start + /// Time to wait between cycles + var/cycle_speed = 0 + /// Current index for list + var/index = 1 + +/datum/wave_explosion/New(turf/initial, power, factor = EXPLOSION_DEFAULT_FALLOFF_MULTIPLY, constant = EXPLOSION_DEFAULT_FALLOFF_SUBTRACT, flash = 0, fire = 0, atom/source, speed = 0, silent = FALSE, autostart = TRUE, block_resistance = 1) + id = ++next_id + if(next_id > SHORT_REAL_LIMIT) + next_id = 0 + SSexplosions.wave_explosions += src + src.power_initial = power + src.power_falloff_factor = factor + src.power_falloff_constant = constant + src.flash_range = flash + src.fire_probability = fire + src.source = source + src.cycle_speed = speed + src.silent = silent + src.block_resistance = block_resistance + if(!istype(initial)) + stack_trace("Wave explosion created without a turf. This better be for debugging purposes.") + return + if(autostart) + start(initial) + +/datum/wave_explosion/Destroy() + if(running) + stop(FALSE) + return ..() + +/datum/wave_explosion/proc/start(list/turf/_starting) + if(running) + CRASH("Attempted to start() a running wave explosion") + if(!islist(_starting)) + _starting = list(_starting) + var/list/mob/to_flash = list() + var/list/feedback = list() + var/list/mob/mob_potential_shake = list() + var/list/mob/closest_to = list() + for(var/i in 1 to _starting.len) + var/turf/starting = _starting[i] + edges[starting] = WEX_ALLDIRS + powers[starting] = power_initial + var/x0 = starting.x + var/y0 = starting.y + var/z0 = starting.z + var/area/areatype = get_area(starting) + feedback += list(list("power" = power_initial, factor = "factor", constant = "constant", flash = "flash", fire = "fire", speed = "speed", "x" = x0, "y" = y0, "z" = z0, "area" = areatype.type, "time" = TIME_STAMP("YYYY-MM-DD hh:mm:ss", 1))) + // Play sounds; we want sounds to be different depending on distance so we will manually do it ourselves. + // Stereo users will also hear the direction of the explosion! + + // Calculate far explosion sound range. Only allow the sound effect for heavy/devastating explosions. + // 3/7/14 will calculate to 80 + 35 + + if(!silent) + for(var/mob/M in GLOB.player_list) + // Double check for client + var/turf/M_turf = get_turf(M) + if(M_turf && M_turf.z == z0) + var/dist = get_dist(M_turf, starting) + if(isnull(mob_potential_shake[M])) + mob_potential_shake[M] = dist + closest_to[M] = starting + else if(mob_potential_shake[M] < dist) + mob_potential_shake[M] = dist + closest_to[M] = starting + + for(var/array in GLOB.doppler_arrays) + var/obj/machinery/doppler_array/A = array + A.sense_wave_explosion(starting, power_initial, cycle_speed) + + // Flash mobs + if(flash_range) + for(var/mob/living/L in viewers(flash_range, starting)) + to_flash |= L + + if(!silent) + var/frequency = get_rand_frequency() + var/sound/explosion_sound = sound(get_sfx("explosion")) + var/sound/far_explosion_sound = sound('sound/effects/explosionfar.ogg') + + var/far_dist = sqrt(power_initial) * 7.5 + + for(var/mob/M in mob_potential_shake) + var/dist = mob_potential_shake[M] + var/baseshakeamount + if(sqrt(power_initial) - dist > 0) + baseshakeamount = sqrt((sqrt(power_initial) - dist)*0.1) + // If inside the blast radius + world.view - 2 + if(dist <= round(2 * sqrt(power_initial) + world.view - 2, 1)) + M.playsound_local(closest_to[M], null, 100, 1, frequency, max_distance = 5, S = explosion_sound) + if(baseshakeamount > 0) + shake_camera(M, 25, clamp(baseshakeamount, 0, 10)) + // You hear a far explosion if you're outside the blast radius. Small bombs shouldn't be heard all over the station. + else if(dist <= far_dist) + var/far_volume = clamp(far_dist, 30, 50) // Volume is based on explosion size and dist + far_volume += (dist <= far_dist * 0.5 ? 50 : 0) // add 50 volume if the mob is pretty close to the explosion + M.playsound_local(closest_to[M], null, far_volume, 1, frequency, max_distance = 5, S = far_explosion_sound) + if(baseshakeamount > 0) + shake_camera(M, 10, clamp(baseshakeamount*0.25, 0, 2.5)) + + for(var/i in 1 to to_flash.len) + var/mob/living/L = to_flash[i] + L.flash_act() + + SSblackbox.record_feedback("associative", "wave_explosion", 1, feedback) + + if(!cycle) + cycle = 1 + SSexplosions.active_wave_explosions += src + running = TRUE + cycle_start = world.time - cycle_speed + tick() + +/datum/wave_explosion/proc/stop(delete = TRUE) + SSexplosions.active_wave_explosions -= src + SSexplosions.currentrun -= src + edges = null + powers = null + exploded_last = null + cycle = null + running = FALSE + qdel(src) + +#define SHOULD_SUSPEND ((cycle_start + cycle_speed) > world.time) + +/** + * Called by SSexplosions to propagate this. + * Return TRUE if postponed + */ +/datum/wave_explosion/proc/tick() + /// Each tick goes through one full cycle. + // This can be changed to a "continuous process" system where indexes are tracked if needed. + if(!src.edges.len) + // we're done + finished = TRUE + stop(TRUE) + return TRUE + if(SHOULD_SUSPEND) + return TRUE + // Set up variables + var/turf/T + var/turf/expanding + var/power + var/returned + var/blocked + var/dir + // insanity define to explode a turf with a certain amount of power, direction, and set returned. +#define WEX_ACT(_T, _P, _D) \ + returned = max(0, _T.wave_explode(_P, src, _D)); \ + blocked = _P - returned; \ + if(!block_resistance) { \ + if(blocked > EXPLOSION_POWER_NO_RESIST_THRESHOLD) { \ + returned = 0; \ + } \ + } \ + else if(blocked) { \ + returned = _P - (blocked / block_resistance); \ + }; \ + returned = round((returned * power_falloff_factor) - power_falloff_constant, EXPLOSION_POWER_QUANTIZATION_ACCURACY); \ + if(prob(fire_probability)) { \ + new /obj/effect/hotspot(_T); \ + }; + + // Cache hot lists + var/list/turf/edges = src.edges + var/list/turf/powers = src.powers + var/list/turf/exploded_last = src.exploded_last + + // prepare expansions + var/list/turf/edges_next = list() + var/list/turf/powers_next = list() + var/list/turf/powers_returned = list() + var/list/turf/diagonals = list() + var/list/turf/diagonal_powers = list() + var/list/turf/diagonal_powers_max = list() + + // to_chat(world, "DEBUG: cycle start edges [english_list_assoc(edges)]") + + // Process cardinals: + // Explode all cardinals and expand in directions, gathering all cardinals it should go to. + // Power for when things meet in the middle should be the greatest of the two. + for(var/i in edges) + T = i + power = powers[T] + dir = edges[T] + WEX_ACT(T, power, dir) + if(returned < power_considered_dead) + continue + powers_returned[T] = returned + // diagonal power calc when multiple things hit one diagonal +#define CALCULATE_DIAGONAL_POWER(existing, adding, maximum) min(maximum, existing + adding) + // diagonal hitting cardinal expansion +#define CALCULATE_DIAGONAL_CROSS_POWER(existing, adding) max(existing, adding) + // insanity define to mark the next set of cardinals. +#define CARDINAL_MARK(ndir, cdir, edir) \ + if(edir & cdir) { \ + CARDINAL_MARK_NOCHECK(ndir, cdir, edir); \ + }; + +#define CARDINAL_MARK_NOCHECK(ndir, cdir, edir) \ + expanding = get_step(T,ndir); \ + if(expanding && !exploded_last[expanding] && !edges[expanding]) { \ + powers_next[expanding] = max(powers_next[expanding], returned); \ + edges_next[expanding] = (cdir | edges_next[expanding]); \ + }; + + // insanity define to do diagonal marking as 2 substeps +#define DIAGONAL_SUBSTEP(ndir, cdir, edir) \ + expanding = get_step(T,ndir); \ + if(expanding && !exploded_last[expanding] && !edges[expanding]) { \ + if(!edges_next[expanding]) { \ + diagonal_powers_max[expanding] = max(diagonal_powers_max[expanding], returned, powers[T]); \ + diagonal_powers[expanding] = CALCULATE_DIAGONAL_POWER(diagonal_powers[expanding], returned, diagonal_powers_max[expanding]); \ + diagonals[expanding] = (cdir | diagonals[expanding]); \ + }; \ + else { \ + powers_next[expanding] = CALCULATE_DIAGONAL_CROSS_POWER(powers_next[expanding], returned); \ + }; \ + }; + + // insanity define to mark the diagonals that would otherwise be missed +#define DIAGONAL_MARK(ndir, cdir, edir) \ + if(edir & cdir) { \ + DIAGONAL_MARK_NOCHECK(ndir, cdir, edir); \ + }; + + // this only works because right now, WEX_DIR_X is the same as a byond dir + // and we know we're only passing in one dir at a time. + // if this ever stops being the case, and explosions break when you touch this, now you know why. +#define DIAGONAL_MARK_NOCHECK(ndir, cdir, edir) \ + DIAGONAL_SUBSTEP(turn(ndir, 90), turn(cdir, 90), edir); \ + DIAGONAL_SUBSTEP(turn(ndir, -90), turn(cdir, -90), edir); + + // mark +#define MARK(ndir, cdir, edir) \ + if(edir & cdir) { \ + CARDINAL_MARK_NOCHECK(ndir, cdir, edir); \ + DIAGONAL_MARK_NOCHECK(ndir, cdir, edir); \ + }; + CARDINAL_MARK(NORTH, WEX_DIR_NORTH, dir) + CARDINAL_MARK(SOUTH, WEX_DIR_SOUTH, dir) + CARDINAL_MARK(EAST, WEX_DIR_EAST, dir) + CARDINAL_MARK(WEST, WEX_DIR_WEST, dir) + + // to_chat(world, "DEBUG: cycle mid edges_next [english_list_assoc(edges_next)]") + + // Sweep after cardinals for diagonals + for(var/i in edges) + T = i + power = powers[T] + dir = edges[T] + returned = powers_returned[T] + DIAGONAL_MARK(NORTH, WEX_DIR_NORTH, dir) + DIAGONAL_MARK(SOUTH, WEX_DIR_SOUTH, dir) + DIAGONAL_MARK(EAST, WEX_DIR_EAST, dir) + DIAGONAL_MARK(WEST, WEX_DIR_WEST, dir) + + // to_chat(world, "DEBUG: cycle mid diagonals [english_list_assoc(diagonals)]") + + // Process diagonals: + for(var/i in diagonals) + T = i + power = diagonal_powers[T] + dir = diagonals[T] + WEX_ACT(T, power, dir) + if(returned < power_considered_dead) + continue + CARDINAL_MARK(NORTH, WEX_DIR_NORTH, dir) + CARDINAL_MARK(SOUTH, WEX_DIR_SOUTH, dir) + CARDINAL_MARK(EAST, WEX_DIR_EAST, dir) + CARDINAL_MARK(WEST, WEX_DIR_WEST, dir) + + // to_chat(world, "DEBUG: cycle end edges_next [english_list_assoc(edges_next)]") + + // flush lists + src.exploded_last = edges + diagonals + src.edges = edges_next + src.powers = powers_next + cycle++ + cycle_start = world.time + +#undef SHOULD_SUSPEND + +#undef WEX_ACT + +#undef DIAGONAL_SUBSTEP +#undef DIAGONAL_MARK +#undef CARDINAL_MARK +#undef MARK diff --git a/code/game/atoms.dm b/code/game/atoms.dm index 18674cdb17..3009831da7 100644 --- a/code/game/atoms.dm +++ b/code/game/atoms.dm @@ -36,6 +36,14 @@ ///Value used to increment ex_act() if reactionary_explosions is on var/explosion_block = 0 + /// Flags for explosions + var/explosion_flags = NONE + /// Amount to decrease wave explosions by + var/wave_explosion_block = 0 + /// Amount to multiply wave explosions by + var/wave_explosion_multiply = 1 + + //its inherent color, the colored paint applied on it, special color effect etc... /** * used to store the different colors on an atom * @@ -43,7 +51,6 @@ */ var/list/atom_colours - /// a very temporary list of overlays to remove var/list/remove_overlays /// a very temporary list of overlays to add @@ -556,6 +563,34 @@ contents_explosion(severity, target) SEND_SIGNAL(src, COMSIG_ATOM_EX_ACT, severity, target) +/** + * Called when a wave explosion hits this atom. Do not override this. + * + * Returns explosion power to "allow through". + */ +/atom/proc/wave_explode(power, datum/wave_explosion/explosion, dir) + set waitfor = FALSE + // SHOULD_NOT_SLEEP(TRUE) + SHOULD_NOT_OVERRIDE(TRUE) + SEND_SIGNAL(src, COMSIG_ATOM_WAVE_EX_ACT, args) + . = wave_ex_act(power, explosion, dir) // this must happen first for stuff like destruction/damage to tick. + if(isnull(.)) + stack_trace("wave_ex_act on [type] failed to return a number. defaulting to no blocking.") + return power + if((explosion_flags & EXPLOSION_FLAG_DENSITY_DEPENDENT) && !density) + return power // no block + else if((explosion_flags & EXPLOSION_FLAG_HARD_OBSTACLE) && !QDELETED(src)) + return 0 // fully blocked + +/** + * Called when a wave explosion hits this atom. + * + * Returns explosion power to "allow through". Standard handling and flag overrides in [wave_explode()]. + */ +/atom/proc/wave_ex_act(power, datum/wave_explosion/explosion, dir) + // SHOULD_NOT_SLEEP(TRUE) + return power * wave_explosion_multiply - wave_explosion_block + /atom/proc/blob_act(obj/structure/blob/B) SEND_SIGNAL(src, COMSIG_ATOM_BLOB_ACT, B) return diff --git a/code/game/machinery/_machinery.dm b/code/game/machinery/_machinery.dm index d26f8c5639..2ccf7d317d 100644 --- a/code/game/machinery/_machinery.dm +++ b/code/game/machinery/_machinery.dm @@ -96,6 +96,10 @@ Class Procs: flags_ricochet = RICOCHET_HARD ricochet_chance_mod = 0.3 + explosion_flags = EXPLOSION_FLAG_DENSITY_DEPENDENT + wave_explosion_block = EXPLOSION_BLOCK_MACHINE + wave_explosion_multiply = EXPLOSION_DAMPEN_MACHINE + anchored = TRUE interaction_flags_atom = INTERACT_ATOM_ATTACK_HAND | INTERACT_ATOM_UI_INTERACT diff --git a/code/game/machinery/doors/airlock.dm b/code/game/machinery/doors/airlock.dm index f4a65ce984..4eed168ad6 100644 --- a/code/game/machinery/doors/airlock.dm +++ b/code/game/machinery/doors/airlock.dm @@ -54,6 +54,8 @@ assemblytype = /obj/structure/door_assembly normalspeed = 1 explosion_block = 1 + wave_explosion_block = EXPLOSION_BLOCK_WALL + wave_explosion_multiply = EXPLOSION_DAMPEN_WALL hud_possible = list(DIAG_AIRLOCK_HUD) interaction_flags_machine = INTERACT_MACHINE_WIRES_IF_OPEN | INTERACT_MACHINE_ALLOW_SILICON | INTERACT_MACHINE_OPEN_SILICON | INTERACT_MACHINE_REQUIRES_SILICON | INTERACT_MACHINE_OPEN diff --git a/code/game/machinery/doors/door.dm b/code/game/machinery/doors/door.dm index 63a8ad22d4..a20374f878 100644 --- a/code/game/machinery/doors/door.dm +++ b/code/game/machinery/doors/door.dm @@ -16,6 +16,11 @@ interaction_flags_atom = INTERACT_ATOM_UI_INTERACT + wave_explosion_block = EXPLOSION_BLOCK_DENSE_FILLER + wave_explosion_multiply = EXPLOSION_DAMPEN_DENSE_FILLER + + explosion_flags = EXPLOSION_FLAG_HARD_OBSTACLE | EXPLOSION_FLAG_DENSITY_DEPENDENT + var/secondsElectrified = 0 var/air_tight = FALSE //TRUE means density will be set as soon as the door begins to close var/shockedby @@ -412,3 +417,8 @@ /obj/machinery/door/GetExplosionBlock() return density ? real_explosion_block : 0 + +/obj/machinery/door/wave_explosion_damage(power, datum/wave_explosion/explosion) + . = ..() + if(!density) + return . * EXPLOSION_DAMAGE_OPEN_DOOR_FACTOR diff --git a/code/game/machinery/doors/passworddoor.dm b/code/game/machinery/doors/passworddoor.dm index 1ec5b3c373..0c64151bca 100644 --- a/code/game/machinery/doors/passworddoor.dm +++ b/code/game/machinery/doors/passworddoor.dm @@ -71,3 +71,6 @@ /obj/machinery/door/password/ex_act(severity, target) return + +/obj/machinery/door/password/wave_ex_act(power, datum/wave_explosion/explosion, dir) + return 0 //no. diff --git a/code/game/machinery/doors/poddoor.dm b/code/game/machinery/doors/poddoor.dm index 4226d8a439..8c7fc692bc 100644 --- a/code/game/machinery/doors/poddoor.dm +++ b/code/game/machinery/doors/poddoor.dm @@ -8,6 +8,8 @@ closingLayer = CLOSED_BLASTDOOR_LAYER sub_door = TRUE explosion_block = 3 + wave_explosion_block = EXPLOSION_BLOCK_BLAST_PROOF + wave_explosion_multiply = EXPLOSION_DAMPEN_BLAST_PROOF heat_proof = TRUE safe = FALSE max_integrity = 600 diff --git a/code/game/machinery/doors/windowdoor.dm b/code/game/machinery/doors/windowdoor.dm index dd885542c9..af7545d3c9 100644 --- a/code/game/machinery/doors/windowdoor.dm +++ b/code/game/machinery/doors/windowdoor.dm @@ -360,6 +360,8 @@ max_integrity = 300 //Stronger doors for prison (regular window door health is 200) reinf = 1 explosion_block = 1 + wave_explosion_block = EXPLOSION_BLOCK_REINFORCED_WINDOW + wave_explosion_multiply = EXPLOSION_DAMPEN_REINFORCED_WINDOW /obj/machinery/door/window/brigdoor/security/cell name = "cell door" diff --git a/code/game/machinery/doppler_array.dm b/code/game/machinery/doppler_array.dm index 1cdb81ee1d..2066e88f85 100644 --- a/code/game/machinery/doppler_array.dm +++ b/code/game/machinery/doppler_array.dm @@ -114,6 +114,44 @@ GLOBAL_LIST_EMPTY(doppler_arrays) LAZYADD(message_log, messages.Join(" ")) return TRUE +/obj/machinery/doppler_array/proc/sense_wave_explosion(turf/epicenter, power, speed) + if(stat & NOPOWER) + return FALSE + var/turf/zone = get_turf(src) + if(zone.z != epicenter.z) + return FALSE + + if(next_announce > world.time) + return FALSE + next_announce = world.time + cooldown + + var/distance = get_dist(epicenter, zone) + var/direct = get_dir(zone, epicenter) + + if(distance > max_dist) + return FALSE + if(!(direct & dir) && !integrated) + return FALSE + + + var/list/messages = list("Explosive shockwave detected.", \ + "Epicenter at: grid ([epicenter.x],[epicenter.y]). Shockwave expanding at a theoretical speed of [speed] m/s.", \ + "Wave energy: [power]MJ.") + + if(integrated) + var/obj/item/clothing/head/helmet/space/hardsuit/helm = loc + if(!helm || !istype(helm, /obj/item/clothing/head/helmet/space/hardsuit)) + return FALSE + helm.display_visor_message("Waveform explosion detected! Wave energy: [power]MJ.") + else + for(var/message in messages) + say(message) + if(LAZYLEN(message_log) > list_limit) + say("Storage buffer is full! Clearing buffers...") + LAZYCLEARLIST(message_log) + LAZYADD(message_log, messages.Join(" ")) + return TRUE + /obj/machinery/doppler_array/examine(mob/user) . = ..() . += "Its dish is facing to the [dir2text(dir)]." diff --git a/code/game/objects/effects/decals/cleanable/misc.dm b/code/game/objects/effects/decals/cleanable/misc.dm index bb566f4d87..fe4ab20617 100644 --- a/code/game/objects/effects/decals/cleanable/misc.dm +++ b/code/game/objects/effects/decals/cleanable/misc.dm @@ -50,6 +50,10 @@ /obj/effect/decal/cleanable/glass/ex_act() qdel(src) +/obj/effect/decal/cleanable/glass/wave_ex_act(power, datum/wave_explosion/explosion, dir) + qdel(src) + return power + /obj/effect/decal/cleanable/glass/plasma icon_state = "plasmatiny" @@ -131,6 +135,9 @@ /obj/effect/decal/cleanable/greenglow/ex_act() return +/obj/effect/decal/cleanable/greenglow/wave_ex_act(power, datum/wave_explosion/explosion, dir) + return power + /obj/effect/decal/cleanable/cobweb name = "cobweb" desc = "Somebody should remove that." @@ -253,6 +260,11 @@ if(severity == 1) //so shreds created during an explosion aren't deleted by the explosion. qdel(src) +/obj/effect/decal/cleanable/shreds/wave_ex_act(power, datum/wave_explosion/explosion, dir) + if(power > EXPLOSION_POWER_ERASE_SHREDS) + qdel(src) + return power // no block + /obj/effect/decal/cleanable/shreds/Initialize() pixel_x = rand(-10, 10) pixel_y = rand(-10, 10) diff --git a/code/game/objects/items.dm b/code/game/objects/items.dm index 8a09bca0bf..5089d26c88 100644 --- a/code/game/objects/items.dm +++ b/code/game/objects/items.dm @@ -248,6 +248,14 @@ GLOBAL_VAR_INIT(embedpocalypse, FALSE) // if true, all items will be able to emb loc = null loc = T +/obj/item/wave_ex_act(power, datum/wave_explosion/explosion, dir) + . = ..() + if(!anchored) + var/throw_dist = round(rand(3, max(3, 2.5 * sqrt(power))), 1) + throw_speed = EXPLOSION_THROW_SPEED + var/turf/target = get_ranged_target_turf(src, dir, throw_dist) + throw_at(target, throw_dist, EXPLOSION_THROW_SPEED) + /obj/item/examine(mob/user) //This might be spammy. Remove? . = ..() diff --git a/code/game/objects/obj_defense.dm b/code/game/objects/obj_defense.dm index 73a21e4a25..02f2009667 100644 --- a/code/game/objects/obj_defense.dm +++ b/code/game/objects/obj_defense.dm @@ -71,6 +71,19 @@ if(3) take_damage(rand(10, 90), BRUTE, "bomb", 0) +/obj/wave_ex_act(power, datum/wave_explosion/explosion, dir) + if(resistance_flags & INDESTRUCTIBLE) + return power + . = ..() + if(explosion.source == src) + obj_integrity = 0 + qdel(src) + return + take_damage(wave_explosion_damage(power, explosion), BRUTE, "bomb", 0) + +/obj/proc/wave_explosion_damage(power, datum/wave_explosion/explosion) + return (explosion_flags & EXPLOSION_FLAG_HARD_OBSTACLE)? EXPLOSION_POWER_STANDARD_SCALE_HARD_OBSTACLE_DAMAGE(power, explosion.hard_obstacle_mod) : EXPLOSION_POWER_STANDARD_SCALE_OBJECT_DAMAGE(power, explosion.object_damage_mod) + /obj/bullet_act(obj/item/projectile/P) . = ..() playsound(src, P.hitsound, 50, 1) diff --git a/code/game/objects/structures/window.dm b/code/game/objects/structures/window.dm index 53bcd28fa1..e40e158895 100644 --- a/code/game/objects/structures/window.dm +++ b/code/game/objects/structures/window.dm @@ -43,6 +43,10 @@ GLOBAL_LIST_EMPTY(electrochromatic_window_lookup) attack_hand_speed = CLICK_CD_MELEE attack_hand_is_action = TRUE + explosion_flags = EXPLOSION_FLAG_HARD_OBSTACLE + wave_explosion_block = EXPLOSION_BLOCK_WINDOW + wave_explosion_multiply = EXPLOSION_DAMPEN_WINDOW + /// Electrochromatic status var/electrochromatic_status = NOT_ELECTROCHROMATIC /// Electrochromatic ID. Set the first character to ! to replace with a SSmapping generated pseudorandom obfuscated ID for mapping purposes. @@ -111,6 +115,9 @@ GLOBAL_LIST_EMPTY(electrochromatic_window_lookup) return TRUE return FALSE +/obj/structure/window/wave_explosion_damage(power, datum/wave_explosion/explosion) + return EXPLOSION_POWER_STANDARD_SCALE_WINDOW_DAMAGE(power, explosion.window_shatter_mod) + /obj/structure/window/narsie_act() add_atom_colour(NARSIE_WINDOW_COLOUR, FIXED_COLOUR_PRIORITY) @@ -520,6 +527,8 @@ GLOBAL_LIST_EMPTY(electrochromatic_window_lookup) armor = list("melee" = 50, "bullet" = 0, "laser" = 0, "energy" = 0, "bomb" = 25, "bio" = 100, "rad" = 100, "fire" = 80, "acid" = 100) max_integrity = 50 explosion_block = 1 + wave_explosion_block = EXPLOSION_BLOCK_REINFORCED_WINDOW + wave_explosion_multiply = EXPLOSION_DAMPEN_REINFORCED_WINDOW glass_type = /obj/item/stack/sheet/rglass rad_insulation = RAD_HEAVY_INSULATION ricochet_chance_mod = 0.8 @@ -545,6 +554,8 @@ GLOBAL_LIST_EMPTY(electrochromatic_window_lookup) armor = list("melee" = 75, "bullet" = 5, "laser" = 0, "energy" = 0, "bomb" = 45, "bio" = 100, "rad" = 100, "fire" = 99, "acid" = 100) max_integrity = 150 explosion_block = 1 + wave_explosion_block = EXPLOSION_BLOCK_BOROSILICATE_WINDOW + wave_explosion_multiply = EXPLOSION_DAMPEN_BOROSILICATE_WINDOW glass_type = /obj/item/stack/sheet/plasmaglass cleanable_type = /obj/effect/decal/cleanable/glass/plasma rad_insulation = RAD_NO_INSULATION @@ -570,6 +581,8 @@ GLOBAL_LIST_EMPTY(electrochromatic_window_lookup) armor = list("melee" = 85, "bullet" = 20, "laser" = 0, "energy" = 0, "bomb" = 60, "bio" = 100, "rad" = 100, "fire" = 99, "acid" = 100) max_integrity = 500 explosion_block = 2 + wave_explosion_block = EXPLOSION_BLOCK_EXTREME + wave_explosion_multiply = EXPLOSION_BLOCK_EXTREME glass_type = /obj/item/stack/sheet/plasmarglass /obj/structure/window/plasma/reinforced/spawner/east @@ -742,6 +755,8 @@ GLOBAL_LIST_EMPTY(electrochromatic_window_lookup) max_integrity = 80 armor = list("melee" = 60, "bullet" = 25, "laser" = 0, "energy" = 0, "bomb" = 25, "bio" = 100, "rad" = 100, "fire" = 80, "acid" = 100) explosion_block = 2 //fancy AND hard to destroy. the most useful combination. + wave_explosion_block = EXPLOSION_BLOCK_BOROSILICATE_WINDOW + wave_explosion_multiply = EXPLOSION_DAMPEN_BOROSILICATE_WINDOW decon_speed = 40 glass_type = /obj/item/stack/tile/brass glass_amount = 1 diff --git a/code/game/turfs/closed.dm b/code/game/turfs/closed.dm index be0c444541..91a8ba4f46 100644 --- a/code/game/turfs/closed.dm +++ b/code/game/turfs/closed.dm @@ -6,6 +6,8 @@ blocks_air = 1 rad_flags = RAD_PROTECT_CONTENTS | RAD_NO_CONTAMINATE rad_insulation = RAD_MEDIUM_INSULATION + wave_explosion_block = 10 + wave_explosion_multiply = 0.75 /turf/closed/Initialize() . = ..() @@ -28,6 +30,7 @@ name = "wall" icon = 'icons/turf/walls.dmi' explosion_block = 50 + wave_explosion_block = INFINITY /turf/closed/indestructible/rust_heretic_act() return diff --git a/code/game/turfs/simulated/floor.dm b/code/game/turfs/simulated/floor.dm index 565d5640e3..e5034e4b2f 100644 --- a/code/game/turfs/simulated/floor.dm +++ b/code/game/turfs/simulated/floor.dm @@ -12,6 +12,19 @@ clawfootstep = FOOTSTEP_HARD_CLAW heavyfootstep = FOOTSTEP_GENERIC_HEAVY + /// Minimum explosion power to break tile + var/explosion_power_break_tile = EXPLOSION_POWER_FLOOR_TILE_BREAK + /// Minimum explosion power to break turf + var/explosion_power_break_turf = EXPLOSION_POWER_FLOOR_TURF_BREAK + //// Minimum explosion power to scrape away the floor + var/explosion_power_turf_scrape = EXPLOSION_POWER_FLOOR_TURF_SCRAPE + //// Shielded turfs are completely protected from anything under this + var/explosion_power_protect_shielded = EXPLOSION_POWER_FLOOR_SHIELDED_IMMUNITY + /// Starting from here, there's a chance for this to break + var/explosion_power_minimum_chance_break = EXPLOSION_POWER_FLOOR_MINIMUM_TURF_BREAK + /// Starting from here, +20% chance to break turf. + var/explosion_power_break_turf_bonus = EXPLOSION_POWER_FLOOR_TURF_BREAK_BONUS + var/icon_regular_floor = "floor" //used to remember what icon the tile should have by default var/icon_plating = "plating" thermal_conductivity = 0.004 @@ -98,6 +111,48 @@ src.break_tile() src.hotspot_expose(1000,CELL_VOLUME) +/turf/open/floor/wave_ex_act(power, datum/wave_explosion/explosion, dir) + var/shielded = is_shielded() + . = ..() + if(shielded) + if(power < explosion_power_protect_shielded) + return + else + power -= explosion_power_protect_shielded + hotspot_expose(1000, CELL_VOLUME) + if(power < explosion_power_break_tile) + return + if(power < explosion_power_minimum_chance_break) + if(prob(33 + ((explosion_power_break_turf - power) / (explosion_power_break_turf - explosion_power_break_tile)))) + break_tile() + return + if((power < explosion_power_turf_scrape) && ((power >= explosion_power_break_turf) || prob((1 - ((explosion_power_break_turf - power) / (explosion_power_break_turf - explosion_power_minimum_chance_break))) * 100 + ((power > explosion_power_break_turf_bonus)? 20 : 0)))) + switch(pick(1, 2;75, 3)) + if(1) + if(!length(baseturfs) || !ispath(baseturfs[baseturfs.len-1], /turf/open/floor)) + ScrapeAway(flags = CHANGETURF_INHERIT_AIR) + ReplaceWithLattice() + else + ScrapeAway(2, flags = CHANGETURF_INHERIT_AIR) + if(prob(33)) + new /obj/item/stack/sheet/metal(src) + return + if(2) + ScrapeAway(2, flags = CHANGETURF_INHERIT_AIR) + return + if(3) + if(prob(80)) + ScrapeAway(flags = CHANGETURF_INHERIT_AIR) + return + else + break_tile() + hotspot_expose(1000,CELL_VOLUME) + if(prob(33)) + new /obj/item/stack/sheet/metal(src) + if(power >= explosion_power_turf_scrape) + ScrapeAway(2, flags = CHANGETURF_INHERIT_AIR) + return + /turf/open/floor/is_shielded() for(var/obj/structure/A in contents) if(A.level == 3) diff --git a/code/game/turfs/simulated/wall/reinf_walls.dm b/code/game/turfs/simulated/wall/reinf_walls.dm index 03d5cecc26..620c9adfc8 100644 --- a/code/game/turfs/simulated/wall/reinf_walls.dm +++ b/code/game/turfs/simulated/wall/reinf_walls.dm @@ -12,6 +12,11 @@ sheet_amount = 1 girder_type = /obj/structure/girder/reinforced explosion_block = 2 + wave_explosion_block = EXPLOSION_BLOCK_BLAST_PROOF + wave_explosion_multiply = EXPLOSION_DAMPEN_BLAST_PROOF + explosion_power_to_scrape = EXPLOSION_POWER_RWALL_SCRAPE + explosion_power_to_dismantle = EXPLOSION_POWER_RWALL_DISMANTLE + explosion_power_minimum_chance_dismantle = EXPLOSION_POWER_RWALL_MINIMUM_DISMANTLE rad_insulation = RAD_HEAVY_INSULATION /turf/closed/wall/r_wall/deconstruction_hints(mob/user) diff --git a/code/game/turfs/simulated/walls.dm b/code/game/turfs/simulated/walls.dm index 79ca5add10..76dc6533b6 100644 --- a/code/game/turfs/simulated/walls.dm +++ b/code/game/turfs/simulated/walls.dm @@ -6,6 +6,8 @@ icon = 'icons/turf/walls/wall.dmi' icon_state = "wall" explosion_block = 1 + wave_explosion_block = EXPLOSION_BLOCK_WALL + wave_explosion_multiply = EXPLOSION_DAMPEN_WALL flags_1 = DEFAULT_RICOCHET_1 flags_ricochet = RICOCHET_HARD thermal_conductivity = WALL_HEAT_TRANSFER_COEFFICIENT @@ -15,6 +17,14 @@ baseturfs = /turf/open/floor/plating + explosion_flags = EXPLOSION_FLAG_HARD_OBSTACLE + /// Explosion power to disintegrate the wall + var/explosion_power_to_scrape = EXPLOSION_POWER_WALL_SCRAPE + /// Explosion power to dismantle the wall + var/explosion_power_to_dismantle = EXPLOSION_POWER_WALL_DISMANTLE + /// Explosion power to potentially dismantle the wall + var/explosion_power_minimum_chance_dismantle = EXPLOSION_POWER_WALL_MINIMUM_DISMANTLE + var/hardness = 40 //lower numbers are harder. Used to determine the probability of a hulk smashing through. var/slicing_duration = 100 //default time taken to slice the wall var/sheet_type = /obj/item/stack/sheet/metal @@ -91,6 +101,13 @@ if(!density) ..() +/turf/closed/wall/wave_ex_act(power, datum/wave_explosion/explosion, dir) + . = ..() + var/resultant_power = power * explosion.wall_destroy_mod + if(resultant_power >= explosion_power_to_scrape) + ScrapeAway() + else if((resultant_power >= explosion_power_to_dismantle) || ((resultant_power >= explosion_power_minimum_chance_dismantle) && prob(((resultant_power - explosion_power_minimum_chance_dismantle) / (explosion_power_to_dismantle - explosion_power_minimum_chance_dismantle)) * 100))) + dismantle_wall(prob((resultant_power - explosion_power_to_dismantle)/(explosion_power_to_scrape - explosion_power_to_dismantle)), TRUE) /turf/closed/wall/blob_act(obj/structure/blob/B) if(prob(50)) diff --git a/code/game/turfs/space/space.dm b/code/game/turfs/space/space.dm index 0905fb2e9c..b1a4efc97e 100644 --- a/code/game/turfs/space/space.dm +++ b/code/game/turfs/space/space.dm @@ -8,6 +8,8 @@ temperature = TCMB thermal_conductivity = OPEN_HEAT_TRANSFER_COEFFICIENT heat_capacity = 700000 + wave_explosion_multiply = EXPLOSION_DAMPEN_SPACE + wave_explosion_block = EXPLOSION_BLOCK_SPACE var/destination_z var/destination_x diff --git a/code/game/turfs/turf.dm b/code/game/turfs/turf.dm index 0808408192..93735f1079 100755 --- a/code/game/turfs/turf.dm +++ b/code/game/turfs/turf.dm @@ -462,6 +462,24 @@ GLOBAL_LIST_EMPTY(station_turfs) A.ex_act(severity, target) CHECK_TICK +/turf/wave_ex_act(power, datum/wave_explosion/explosion, dir) + . = ..() + var/affecting_level + if(is_shielded()) + affecting_level = 3 + else if(intact) + affecting_level = 2 + else + affecting_level = 1 + var/atom/A + for(var/i in contents) + if(. <= 0) + return 0 + A = i + if(!QDELETED(A) && A.level >= affecting_level) + . = A.wave_explode(., explosion, dir) + maptext = "[.]" + /turf/narsie_act(force, ignore_mobs, probability = 20) . = (prob(probability) || force) for(var/I in src) diff --git a/code/modules/admin/admin_verbs.dm b/code/modules/admin/admin_verbs.dm index 96eb4e4a0f..9e784e72cb 100644 --- a/code/modules/admin/admin_verbs.dm +++ b/code/modules/admin/admin_verbs.dm @@ -96,6 +96,7 @@ GLOBAL_LIST_INIT(admin_verbs_fun, list( /client/proc/cmd_select_equipment, /client/proc/cmd_admin_gib_self, /client/proc/drop_bomb, + /client/proc/drop_wave_explosion, /client/proc/set_dynex_scale, /client/proc/drop_dynex_bomb, /client/proc/cinematic, @@ -550,6 +551,51 @@ GLOBAL_PROTECT(admin_verbs_hideable) log_admin("[key_name(usr)] created an admin explosion at [epicenter.loc].") SSblackbox.record_feedback("tally", "admin_verb", 1, "Drop Bomb") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc! +/client/proc/drop_wave_explosion() + set category = "Special Verbs" + set name = "Drop Wave Explosion" + set desc = "Cause an explosive shockwave at your location." + + var/power = input(src, "Wave initial power", "Power", 50) as num|null + if(isnull(power)) + return + var/falloff = input(src, "Wave innate falloff factor", "Falloff", EXPLOSION_DEFAULT_FALLOFF_MULTIPLY) as num|null + if(isnull(falloff)) + return + falloff = max(0, falloff) + if(falloff > 1) + to_chat(src, "Aborting: Falloff cannot be higher tahn 1.") + return + var/constant = input(src, "Wave innate falloff constant", "Constant", EXPLOSION_DEFAULT_FALLOFF_SUBTRACT) as num|null + if(isnull(constant)) + return + if(constant < 0) + to_chat(src, "Aborting: Falloff constant cannot be less than 0.") + return + var/fire = input(src, "Probability per tile of fire?", "Fire Probability", 0) as num|null + if(isnull(fire)) + return + var/speed = input(src, "Speed in ticks to wait between cycles? 0 for fast as possible", "Wait", 0) as num|null + if(isnull(speed)) + return + var/block_resistance = input(src, "DANGEROUS: Block resistance? USE 1 IF YOU DO NOT KNOW WHAT YOU ARE DOING.", "Block Negation", 1) as num|null + if(isnull(block_resistance)) + return + block_resistance = max(0, block_resistance) + if(power > 500) + var/sure = alert(src, "Explosion power is extremely high. Are you absolutely sure?", "Uhh...", "No", "Yes") + if(sure != "Yes") + return + // point of no return + var/turf/target = get_turf(mob) + if(!target) + to_chat(src, "Cannot proceed. Not on turf.") + return + message_admins("[ADMIN_LOOKUPFLW(usr)] creating an admin explosion at [target.loc].") + log_admin("[key_name(usr)] created an admin explosion at [target.loc].") + SSblackbox.record_feedback("tally", "admin_verb", 1, "Drop Wave Explosion") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc! + wave_explosion(target, power, falloff, constant, null, fire, speed = speed, block_resistance = block_resistance) + /client/proc/drop_dynex_bomb() set category = "Admin.Fun" set name = "Drop DynEx Bomb" diff --git a/code/modules/antagonists/revenant/revenant.dm b/code/modules/antagonists/revenant/revenant.dm index 7e4c5c5343..31989fe241 100644 --- a/code/modules/antagonists/revenant/revenant.dm +++ b/code/modules/antagonists/revenant/revenant.dm @@ -177,6 +177,9 @@ /mob/living/simple_animal/revenant/ex_act(severity, target) return 1 //Immune to the effects of explosions. +/mob/living/simple_animal/revenant/wave_ex_act(power, datum/wave_explosion/explosion, dir) + return power + /mob/living/simple_animal/revenant/blob_act(obj/structure/blob/B) return //blah blah blobs aren't in tune with the spirit world, or something. diff --git a/code/modules/holiday/halloween/halloween.dm b/code/modules/holiday/halloween/halloween.dm index d44b94aaf3..f468022918 100644 --- a/code/modules/holiday/halloween/halloween.dm +++ b/code/modules/holiday/halloween/halloween.dm @@ -206,6 +206,9 @@ /mob/living/simple_animal/hostile/retaliate/clown/insane/ex_act() return +/mob/living/simple_animal/hostile/retaliate/clown/insane/wave_ex_act(power, datum/wave_explosion/explosion, dir) + return power + /mob/living/simple_animal/hostile/retaliate/clown/insane/Life() timer-- if(target) diff --git a/code/modules/mob/living/bloodcrawl.dm b/code/modules/mob/living/bloodcrawl.dm index 24d456bf8f..b66158db8a 100644 --- a/code/modules/mob/living/bloodcrawl.dm +++ b/code/modules/mob/living/bloodcrawl.dm @@ -13,6 +13,10 @@ /obj/effect/dummy/phased_mob/slaughter/ex_act() return + +/obj/effect/dummy/phased_mob/slaughter/wave_ex_act(power, datum/wave_explosion/explosion, dir) + return power + /obj/effect/dummy/phased_mob/slaughter/bullet_act() return BULLET_ACT_FORCE_PIERCE diff --git a/code/modules/mob/living/brain/brain.dm b/code/modules/mob/living/brain/brain.dm index be03827695..8ffcce248b 100644 --- a/code/modules/mob/living/brain/brain.dm +++ b/code/modules/mob/living/brain/brain.dm @@ -46,6 +46,9 @@ /mob/living/brain/ex_act() //you cant blow up brainmobs because it makes transfer_to() freak out when borgs blow up. return +/mob/living/brain/wave_ex_act(power, datum/wave_explosion/explosion, dir) + return power + /mob/living/brain/blob_act(obj/structure/blob/B) return diff --git a/code/modules/mob/living/living_defense.dm b/code/modules/mob/living/living_defense.dm index 5f3f530437..4c6ede3904 100644 --- a/code/modules/mob/living/living_defense.dm +++ b/code/modules/mob/living/living_defense.dm @@ -438,6 +438,12 @@ return ..() +/mob/living/wave_ex_act(power, datum/wave_explosion/explosion, dir) + if(power > EXPLOSION_POWER_NORMAL_MOB_GIB) + gib() + adjustBruteLoss(EXPLOSION_POWER_STANDARD_SCALE_MOB_DAMAGE(power, explosion.mob_damage_mod)) + return power + //Looking for irradiate()? It's been moved to radiation.dm under the rad_act() for mobs. /mob/living/acid_act(acidpwr, acid_volume) diff --git a/code/modules/mob/living/simple_animal/guardian/guardian.dm b/code/modules/mob/living/simple_animal/guardian/guardian.dm index 012515d0e9..7c7ff3779c 100644 --- a/code/modules/mob/living/simple_animal/guardian/guardian.dm +++ b/code/modules/mob/living/simple_animal/guardian/guardian.dm @@ -280,6 +280,9 @@ GLOBAL_LIST_EMPTY(parasites) //all currently existing/living guardians if(3) adjustBruteLoss(30) +/mob/living/simple_animal/hostile/guardian/wave_ex_act(power, datum/wave_explosion/explosion, dir) + adjustBruteLoss(EXPLOSION_POWER_STANDARD_SCALE_MOB_DAMAGE(power, explosion.mob_damage_mod * 0.33)) + /mob/living/simple_animal/hostile/guardian/gib() if(summoner) to_chat(summoner, "Your [src] was blown up!") diff --git a/code/modules/mob/living/simple_animal/hostile/megafauna/megafauna.dm b/code/modules/mob/living/simple_animal/hostile/megafauna/megafauna.dm index e2d6602a88..3940388625 100644 --- a/code/modules/mob/living/simple_animal/hostile/megafauna/megafauna.dm +++ b/code/modules/mob/living/simple_animal/hostile/megafauna/megafauna.dm @@ -149,6 +149,9 @@ if(EXPLODE_LIGHT) adjustBruteLoss(50) +/mob/living/simple_animal/hostile/megafauna/wave_ex_act(power, datum/wave_explosion/explosion, dir) + adjustBruteLoss(EXPLOSION_POWER_STANDARD_SCALE_MOB_DAMAGE(power, explosion.mob_damage_mod) / 2) + /// Sets the next time the megafauna can use a melee or ranged attack, in deciseconds /mob/living/simple_animal/hostile/megafauna/proc/SetRecoveryTime(buffer_time, ranged_buffer_time) recovery_time = world.time + buffer_time diff --git a/code/modules/mob/living/simple_animal/hostile/mining_mobs/basilisk.dm b/code/modules/mob/living/simple_animal/hostile/mining_mobs/basilisk.dm index cee7e2979d..bda898ef17 100644 --- a/code/modules/mob/living/simple_animal/hostile/mining_mobs/basilisk.dm +++ b/code/modules/mob/living/simple_animal/hostile/mining_mobs/basilisk.dm @@ -59,6 +59,13 @@ if(3) adjustBruteLoss(110) +/mob/living/simple_animal/hostile/asteroid/basilisk/wave_ex_act(power, datum/wave_explosion/explosion, dir) + . = ..() + if(power > EXPLOSION_POWER_NORMAL_MOB_GIB) + gib() + else + adjustBruteLoss(EXPLOSION_POWER_STANDARD_SCALE_MOB_DAMAGE(power, explosion.mob_damage_mod)) + //Watcher /mob/living/simple_animal/hostile/asteroid/basilisk/watcher name = "watcher" diff --git a/code/modules/spells/spell_types/ethereal_jaunt.dm b/code/modules/spells/spell_types/ethereal_jaunt.dm index 9d91b6534d..7a05583071 100644 --- a/code/modules/spells/spell_types/ethereal_jaunt.dm +++ b/code/modules/spells/spell_types/ethereal_jaunt.dm @@ -108,5 +108,8 @@ /obj/effect/dummy/phased_mob/spell_jaunt/ex_act(blah) return +/obj/effect/dummy/phased_mob/spell_jaunt/wave_ex_act(power, datum/wave_explosion/explosion, dir) + return power + /obj/effect/dummy/phased_mob/spell_jaunt/bullet_act(blah) return BULLET_ACT_FORCE_PIERCE diff --git a/code/modules/spells/spell_types/shadow_walk.dm b/code/modules/spells/spell_types/shadow_walk.dm index 8436de2119..821bf73425 100644 --- a/code/modules/spells/spell_types/shadow_walk.dm +++ b/code/modules/spells/spell_types/shadow_walk.dm @@ -90,6 +90,9 @@ /obj/effect/dummy/phased_mob/shadow/ex_act() return +/obj/effect/dummy/phased_mob/shadow/wave_ex_act(power, datum/wave_explosion/explosion, dir) + return power + /obj/effect/dummy/phased_mob/shadow/bullet_act() return BULLET_ACT_FORCE_PIERCE diff --git a/tgstation.dme b/tgstation.dme index be1fddaee2..2e5bd87e51 100644 --- a/tgstation.dme +++ b/tgstation.dme @@ -51,6 +51,7 @@ #include "code\__DEFINES\economy.dm" #include "code\__DEFINES\events.dm" #include "code\__DEFINES\exosuit_fabs.dm" +#include "code\__DEFINES\explosion.dm" #include "code\__DEFINES\exports.dm" #include "code\__DEFINES\fantasy_affixes.dm" #include "code\__DEFINES\food.dm" @@ -320,6 +321,7 @@ #include "code\controllers\subsystem\disease.dm" #include "code\controllers\subsystem\economy.dm" #include "code\controllers\subsystem\events.dm" +#include "code\controllers\subsystem\explosions.dm" #include "code\controllers\subsystem\fail2topic.dm" #include "code\controllers\subsystem\fire_burning.dm" #include "code\controllers\subsystem\fluid.dm" @@ -410,6 +412,7 @@ #include "code\datums\emotes.dm" #include "code\datums\ert.dm" #include "code\datums\explosion.dm" +#include "code\datums\explosion2.dm" #include "code\datums\forced_movement.dm" #include "code\datums\holocall.dm" #include "code\datums\http.dm" From 70a48a13181cb68d0227ee4f41b1af1380b41664 Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Wed, 12 May 2021 05:44:55 -0500 Subject: [PATCH 201/259] Automatic changelog generation for PR #13392 [ci skip] --- html/changelogs/AutoChangeLog-pr-13392.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-13392.yml diff --git a/html/changelogs/AutoChangeLog-pr-13392.yml b/html/changelogs/AutoChangeLog-pr-13392.yml new file mode 100644 index 0000000000..803c7ee3f5 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-13392.yml @@ -0,0 +1,4 @@ +author: "silicons" +delete-after: True +changes: + - code_imp: "A deterministic wave explosion system has been added. Use it with wave_explosion()." From fa067a481a2996dc268c32b2b2968dd1ddfd95e7 Mon Sep 17 00:00:00 2001 From: keronshb Date: Wed, 12 May 2021 13:09:39 -0400 Subject: [PATCH 202/259] Removes VOG sleep command again Undocumented change. --- code/modules/surgery/organs/vocal_cords.dm | 1 - 1 file changed, 1 deletion(-) diff --git a/code/modules/surgery/organs/vocal_cords.dm b/code/modules/surgery/organs/vocal_cords.dm index 0e6456e8b0..8145ed93e5 100644 --- a/code/modules/surgery/organs/vocal_cords.dm +++ b/code/modules/surgery/organs/vocal_cords.dm @@ -751,7 +751,6 @@ //phase 2 var/static/regex/awoo_words = regex("howl|awoo|bark") var/static/regex/nya_words = regex("nya|meow|mewl") - var/static/regex/sleep_words = regex("sleep|slumber|rest") var/static/regex/strip_words = regex("strip|derobe|nude|at ease|suit off") var/static/regex/walk_words = regex("slow down|walk") var/static/regex/run_words = regex("run|speed up") From 6e3e075ff9d650ffe65b703ea1f9813e71b911e8 Mon Sep 17 00:00:00 2001 From: keronshb Date: Wed, 12 May 2021 13:14:54 -0400 Subject: [PATCH 203/259] Oops forgot something --- code/modules/surgery/organs/vocal_cords.dm | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/code/modules/surgery/organs/vocal_cords.dm b/code/modules/surgery/organs/vocal_cords.dm index 8145ed93e5..12e282200c 100644 --- a/code/modules/surgery/organs/vocal_cords.dm +++ b/code/modules/surgery/organs/vocal_cords.dm @@ -1095,17 +1095,6 @@ H.emote("me", EMOTE_VISIBLE, "lets out a nya!") E.cooldown += 1 - //SLEEP - else if((findtext(message, sleep_words))) - for(var/mob/living/carbon/C in listeners) - var/datum/status_effect/chem/enthrall/E = C.has_status_effect(/datum/status_effect/chem/enthrall) - switch(E.phase) - if(2 to INFINITY) - C.Sleeping(45 * power_multiplier) - E.cooldown += 10 - addtimer(CALLBACK(GLOBAL_PROC, .proc/to_chat, C, "Drowsiness suddenly overwhelms you as you fall asleep!"), 5) - to_chat(user, "You send [C] to sleep.") - //STRIP else if((findtext(message, strip_words))) for(var/V in listeners) From 82d11bce8135313ada8efa4b54dfcb64f0b01110 Mon Sep 17 00:00:00 2001 From: Changelogs Date: Thu, 13 May 2021 00:28:55 +0000 Subject: [PATCH 204/259] Automatic changelog compile [ci skip] --- html/changelog.html | 23 ++++++++++++++++++++++ html/changelogs/.all_changelog.yml | 13 ++++++++++++ html/changelogs/AutoChangeLog-pr-13392.yml | 4 ---- html/changelogs/AutoChangeLog-pr-14650.yml | 4 ---- html/changelogs/AutoChangeLog-pr-14702.yml | 4 ---- html/changelogs/AutoChangeLog-pr-14708.yml | 5 ----- html/changelogs/AutoChangeLog-pr-14710.yml | 4 ---- 7 files changed, 36 insertions(+), 21 deletions(-) delete mode 100644 html/changelogs/AutoChangeLog-pr-13392.yml delete mode 100644 html/changelogs/AutoChangeLog-pr-14650.yml delete mode 100644 html/changelogs/AutoChangeLog-pr-14702.yml delete mode 100644 html/changelogs/AutoChangeLog-pr-14708.yml delete mode 100644 html/changelogs/AutoChangeLog-pr-14710.yml diff --git a/html/changelog.html b/html/changelog.html index b6b794f5ec..7fb086e159 100644 --- a/html/changelog.html +++ b/html/changelog.html @@ -50,6 +50,29 @@ -->
    +

    13 May 2021

    +

    Linzolle updated:

    +
      +
    • anthromorphic -> anthropomorphic
    • +
    +

    WanderingFox95 updated:

    +
      +
    • Pinot Mort (Necropolis Wine), a new, (totally healthy) mixed drink!
    • +
    +

    qweq12yt updated:

    +
      +
    • Fixed sleeping disky spam (it still sleeps soundly, but every minute instead of every two seconds)
    • +
    • Fixed Hulks not breaking cuffs, zipties, restraints.
    • +
    +

    silicons updated:

    +
      +
    • A deterministic wave explosion system has been added. Use it with wave_explosion().
    • +
    +

    zeroisthebiggay updated:

    +
      +
    • vegas style bunny ears
    • +
    +

    12 May 2021

    DeltaFire15 updated:

      diff --git a/html/changelogs/.all_changelog.yml b/html/changelogs/.all_changelog.yml index 768a1cfda6..289a0176ee 100644 --- a/html/changelogs/.all_changelog.yml +++ b/html/changelogs/.all_changelog.yml @@ -29283,3 +29283,16 @@ DO NOT EDIT THIS FILE BY HAND! AUTOMATICALLY GENERATED BY ss13_genchangelog.py. as intended, instead of always being station z tweak: Message for failing the bladeshatter despite succeeding the do_after tweak: Improves bladeshatter a bit by making it safer codewise' +2021-05-13: + Linzolle: + - spellcheck: anthromorphic -> anthropomorphic + WanderingFox95: + - rscadd: Pinot Mort (Necropolis Wine), a new, (totally healthy) mixed drink! + qweq12yt: + - bugfix: Fixed sleeping disky spam (it still sleeps soundly, but every minute instead + of every two seconds) + - bugfix: Fixed Hulks not breaking cuffs, zipties, restraints. + silicons: + - code_imp: A deterministic wave explosion system has been added. Use it with wave_explosion(). + zeroisthebiggay: + - rscadd: vegas style bunny ears diff --git a/html/changelogs/AutoChangeLog-pr-13392.yml b/html/changelogs/AutoChangeLog-pr-13392.yml deleted file mode 100644 index 803c7ee3f5..0000000000 --- a/html/changelogs/AutoChangeLog-pr-13392.yml +++ /dev/null @@ -1,4 +0,0 @@ -author: "silicons" -delete-after: True -changes: - - code_imp: "A deterministic wave explosion system has been added. Use it with wave_explosion()." diff --git a/html/changelogs/AutoChangeLog-pr-14650.yml b/html/changelogs/AutoChangeLog-pr-14650.yml deleted file mode 100644 index 0432473299..0000000000 --- a/html/changelogs/AutoChangeLog-pr-14650.yml +++ /dev/null @@ -1,4 +0,0 @@ -author: "WanderingFox95" -delete-after: True -changes: - - rscadd: "Pinot Mort (Necropolis Wine), a new, (totally healthy) mixed drink!" diff --git a/html/changelogs/AutoChangeLog-pr-14702.yml b/html/changelogs/AutoChangeLog-pr-14702.yml deleted file mode 100644 index 134122e668..0000000000 --- a/html/changelogs/AutoChangeLog-pr-14702.yml +++ /dev/null @@ -1,4 +0,0 @@ -author: "zeroisthebiggay" -delete-after: True -changes: - - rscadd: "vegas style bunny ears" diff --git a/html/changelogs/AutoChangeLog-pr-14708.yml b/html/changelogs/AutoChangeLog-pr-14708.yml deleted file mode 100644 index b0b9e25b1f..0000000000 --- a/html/changelogs/AutoChangeLog-pr-14708.yml +++ /dev/null @@ -1,5 +0,0 @@ -author: "qweq12yt" -delete-after: True -changes: - - bugfix: "Fixed sleeping disky spam (it still sleeps soundly, but every minute instead of every two seconds)" - - bugfix: "Fixed Hulks not breaking cuffs, zipties, restraints." diff --git a/html/changelogs/AutoChangeLog-pr-14710.yml b/html/changelogs/AutoChangeLog-pr-14710.yml deleted file mode 100644 index 90dbe0cdac..0000000000 --- a/html/changelogs/AutoChangeLog-pr-14710.yml +++ /dev/null @@ -1,4 +0,0 @@ -author: "Linzolle" -delete-after: True -changes: - - spellcheck: "anthromorphic -> anthropomorphic" From 040bcb155a9b602173efe735fbbb7076dbf7354c Mon Sep 17 00:00:00 2001 From: zeroisthebiggay <43571008+zeroisthebiggay@users.noreply.github.com> Date: Thu, 13 May 2021 05:03:09 -0400 Subject: [PATCH 205/259] Update uplink_stealth.dm --- code/modules/uplink/uplink_items/uplink_stealth.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/uplink/uplink_items/uplink_stealth.dm b/code/modules/uplink/uplink_items/uplink_stealth.dm index 63d70b9141..f401514542 100644 --- a/code/modules/uplink/uplink_items/uplink_stealth.dm +++ b/code/modules/uplink/uplink_items/uplink_stealth.dm @@ -9,7 +9,7 @@ /datum/uplink_item/stealthy_weapons/telescopicbat name = "Telescopic Baseball Bat" - desc = "A robust telescopic baseball bat that hits like a truck and can be consealed when collapsed." + desc = "A robust telescopic baseball bat that hits like a truck and can be concealed when collapsed." item = /obj/item/melee/baseball_bat/telescopic cost = 2 From 6faeca58d25ef6663968ac172db7f108d92e9c37 Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Thu, 13 May 2021 04:03:44 -0500 Subject: [PATCH 206/259] Automatic changelog generation for PR #14718 [ci skip] --- html/changelogs/AutoChangeLog-pr-14718.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-14718.yml diff --git a/html/changelogs/AutoChangeLog-pr-14718.yml b/html/changelogs/AutoChangeLog-pr-14718.yml new file mode 100644 index 0000000000..75c6ea6287 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-14718.yml @@ -0,0 +1,4 @@ +author: "zeroisthebiggay" +delete-after: True +changes: + - spellcheck: "consealed" From 04b1064cbfab74e477fc2e76bb51ccce13a1f35d Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Thu, 13 May 2021 17:50:19 -0500 Subject: [PATCH 207/259] Automatic changelog generation for PR #14715 [ci skip] --- html/changelogs/AutoChangeLog-pr-14715.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-14715.yml diff --git a/html/changelogs/AutoChangeLog-pr-14715.yml b/html/changelogs/AutoChangeLog-pr-14715.yml new file mode 100644 index 0000000000..3913586906 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-14715.yml @@ -0,0 +1,4 @@ +author: "keronshb" +delete-after: True +changes: + - balance: "Removes VOG sleep command since it was an undocumented readd." From 4a5561d27324b58b8324f51fd7a19f739072eded Mon Sep 17 00:00:00 2001 From: Changelogs Date: Fri, 14 May 2021 00:31:50 +0000 Subject: [PATCH 208/259] Automatic changelog compile [ci skip] --- html/changelog.html | 16 ++++++++++------ html/changelogs/.all_changelog.yml | 5 +++++ html/changelogs/AutoChangeLog-pr-14715.yml | 4 ---- html/changelogs/AutoChangeLog-pr-14718.yml | 4 ---- 4 files changed, 15 insertions(+), 14 deletions(-) delete mode 100644 html/changelogs/AutoChangeLog-pr-14715.yml delete mode 100644 html/changelogs/AutoChangeLog-pr-14718.yml diff --git a/html/changelog.html b/html/changelog.html index 7fb086e159..7e3f24bf3b 100644 --- a/html/changelog.html +++ b/html/changelog.html @@ -50,6 +50,16 @@ -->
      +

      14 May 2021

      +

      keronshb updated:

      +
        +
      • Removes VOG sleep command since it was an undocumented readd.
      • +
      +

      zeroisthebiggay updated:

      +
        +
      • consealed
      • +
      +

      13 May 2021

      Linzolle updated:

        @@ -785,12 +795,6 @@
        • Fixes cosmetic augments missing their foot sprites.
        - -

        12 March 2021

        -

        R3dtail updated:

        -
          -
        • Adds Periods and moves some words around.
        • -
      GoonStation 13 Development Team diff --git a/html/changelogs/.all_changelog.yml b/html/changelogs/.all_changelog.yml index 289a0176ee..ca2426d1f0 100644 --- a/html/changelogs/.all_changelog.yml +++ b/html/changelogs/.all_changelog.yml @@ -29296,3 +29296,8 @@ DO NOT EDIT THIS FILE BY HAND! AUTOMATICALLY GENERATED BY ss13_genchangelog.py. - code_imp: A deterministic wave explosion system has been added. Use it with wave_explosion(). zeroisthebiggay: - rscadd: vegas style bunny ears +2021-05-14: + keronshb: + - balance: Removes VOG sleep command since it was an undocumented readd. + zeroisthebiggay: + - spellcheck: consealed diff --git a/html/changelogs/AutoChangeLog-pr-14715.yml b/html/changelogs/AutoChangeLog-pr-14715.yml deleted file mode 100644 index 3913586906..0000000000 --- a/html/changelogs/AutoChangeLog-pr-14715.yml +++ /dev/null @@ -1,4 +0,0 @@ -author: "keronshb" -delete-after: True -changes: - - balance: "Removes VOG sleep command since it was an undocumented readd." diff --git a/html/changelogs/AutoChangeLog-pr-14718.yml b/html/changelogs/AutoChangeLog-pr-14718.yml deleted file mode 100644 index 75c6ea6287..0000000000 --- a/html/changelogs/AutoChangeLog-pr-14718.yml +++ /dev/null @@ -1,4 +0,0 @@ -author: "zeroisthebiggay" -delete-after: True -changes: - - spellcheck: "consealed" From f52a89bc33f434c0549b537ed0d4157896956c33 Mon Sep 17 00:00:00 2001 From: zerothebigboy Date: Fri, 14 May 2021 05:20:19 -0400 Subject: [PATCH 209/259] chungus --- modular_citadel/icons/mob/mam_ears.dmi | Bin 10751 -> 10763 bytes 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/modular_citadel/icons/mob/mam_ears.dmi b/modular_citadel/icons/mob/mam_ears.dmi index 1ed3d8fbbe98dd3808dc6a5e0e86c1e08812b38c..a8209f25c5a9eb4e60aae2eb2e659753c1770d69 100644 GIT binary patch delta 8759 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 delta 8738 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 From 739b7cea261b552275776b94b52e91bb375e1878 Mon Sep 17 00:00:00 2001 From: Timothy Teakettle <59849408+timothyteakettle@users.noreply.github.com> Date: Fri, 14 May 2021 16:47:40 +0100 Subject: [PATCH 210/259] borg spraycans have a five second delay before being able to knock someone down again (#14627) * Update crayons.dm * Update crayons.dm * kevin review changes * Update crayons.dm * Update code/game/objects/items/crayons.dm Co-authored-by: DeltaFire <46569814+DeltaFire15@users.noreply.github.com> --- code/game/objects/items/crayons.dm | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/code/game/objects/items/crayons.dm b/code/game/objects/items/crayons.dm index e584cad9e8..aa48930d6c 100644 --- a/code/game/objects/items/crayons.dm +++ b/code/game/objects/items/crayons.dm @@ -649,6 +649,9 @@ pre_noise = TRUE post_noise = FALSE + var/stun_delay = 0 // how long it takes for you to be able to stun someone with the spraycan again + var/last_stun_time = 0 + /obj/item/toy/crayon/spraycan/isValidSurface(surface) return (istype(surface, /turf/open/floor) || istype(surface, /turf/closed/wall)) @@ -716,7 +719,8 @@ if(C.client) C.blur_eyes(3) C.blind_eyes(1) - if(C.get_eye_protection() <= 0) // no eye protection? ARGH IT BURNS. + if(C.get_eye_protection() <= 0 && (last_stun_time + stun_delay) <= world.time) // no eye protection? ARGH IT BURNS. + last_stun_time = world.time C.confused = max(C.confused, 3) C.DefaultCombatKnockdown(60) if(ishuman(C) && actually_paints) @@ -771,6 +775,7 @@ name = "cyborg spraycan" desc = "A metallic container containing shiny synthesised paint." charges = -1 + stun_delay = 5 SECONDS /obj/item/toy/crayon/spraycan/borg/draw_on(atom/target,mob/user,proximity, params) var/diff = ..() From a3c98920811507494d5a71accdcd6f0d5168b0a1 Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Fri, 14 May 2021 10:47:42 -0500 Subject: [PATCH 211/259] Automatic changelog generation for PR #14627 [ci skip] --- html/changelogs/AutoChangeLog-pr-14627.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-14627.yml diff --git a/html/changelogs/AutoChangeLog-pr-14627.yml b/html/changelogs/AutoChangeLog-pr-14627.yml new file mode 100644 index 0000000000..cde6b62174 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-14627.yml @@ -0,0 +1,4 @@ +author: "timothyteakettle" +delete-after: True +changes: + - balance: "borg spraycans have a five second delay before being able to knock someone down again" From 4ffec1dafa93364c758556cfa3ef3c13169e04a5 Mon Sep 17 00:00:00 2001 From: silicons <2003111+silicons@users.noreply.github.com> Date: Fri, 14 May 2021 09:50:27 -0600 Subject: [PATCH 212/259] Update gateway.dm (#14711) --- code/modules/awaymissions/gateway.dm | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/code/modules/awaymissions/gateway.dm b/code/modules/awaymissions/gateway.dm index 36ceabe3b4..551c1c5536 100644 --- a/code/modules/awaymissions/gateway.dm +++ b/code/modules/awaymissions/gateway.dm @@ -172,13 +172,15 @@ GLOBAL_LIST_EMPTY(gateway_destinations) /// bumper object, the thing that starts actual teleport var/obj/effect/gateway_portal_bumper/portal /// Visual object for handling the viscontents - var/obj/effect/gateway_portal_effect/portal_visuals + /// DISABLED DUE TO BYOND BUG CAUSING STACK OVERFLOWS OF ANY HUMAN INSTANTIATION NEAR AN ACTIVATED GATEWAY. + /// Probably due to it referencing each other through the gateway (there's a deep loop, maybe BYOND isn't catching something when it usually would) + // var/obj/effect/gateway_portal_effect/portal_visuals /obj/machinery/gateway/Initialize() generate_destination() update_icon() - portal_visuals = new - vis_contents += portal_visuals + // portal_visuals = new + // vis_contents += portal_visuals return ..() /obj/machinery/gateway/proc/generate_destination() @@ -195,7 +197,7 @@ GLOBAL_LIST_EMPTY(gateway_destinations) if(use_power == ACTIVE_POWER_USE) use_power = IDLE_POWER_USE update_icon() - portal_visuals.reset_visuals() + // portal_visuals.reset_visuals() /obj/machinery/gateway/process() if((stat & (NOPOWER)) && use_power) @@ -215,7 +217,7 @@ GLOBAL_LIST_EMPTY(gateway_destinations) return target = D target.activate(destination) - portal_visuals.setup_visuals(target) + // portal_visuals.setup_visuals(target) generate_bumper() use_power = ACTIVE_POWER_USE update_icon() From 97685de715db9b5a193e1dc6512e00a9b00a32d5 Mon Sep 17 00:00:00 2001 From: bunny232 Date: Fri, 14 May 2021 14:54:37 -0400 Subject: [PATCH 213/259] Update MetaStation.dmm --- _maps/map_files/MetaStation/MetaStation.dmm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_maps/map_files/MetaStation/MetaStation.dmm b/_maps/map_files/MetaStation/MetaStation.dmm index 216b2a3db7..35e15c4179 100644 --- a/_maps/map_files/MetaStation/MetaStation.dmm +++ b/_maps/map_files/MetaStation/MetaStation.dmm @@ -21712,7 +21712,7 @@ icon_state = "1-2" }, /obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=13.3-Engineering-Central"; + codes_txt = "patrol;next_patrol=14-Starboard-Central"; location = "13.2-Tcommstore" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, From e01908742aae98c26232ff396a535ff024dcae54 Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Fri, 14 May 2021 17:31:51 -0500 Subject: [PATCH 214/259] Automatic changelog generation for PR #14721 [ci skip] --- html/changelogs/AutoChangeLog-pr-14721.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-14721.yml diff --git a/html/changelogs/AutoChangeLog-pr-14721.yml b/html/changelogs/AutoChangeLog-pr-14721.yml new file mode 100644 index 0000000000..fbfa2cbd33 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-14721.yml @@ -0,0 +1,4 @@ +author: "bunny232" +delete-after: True +changes: + - bugfix: "Corrects the bot pathing by engineering on meta station" From 3d1bbd6229cc3a7ee1484dbe299ef80c57c53df9 Mon Sep 17 00:00:00 2001 From: Changelogs Date: Sat, 15 May 2021 00:27:18 +0000 Subject: [PATCH 215/259] Automatic changelog compile [ci skip] --- html/changelog.html | 10 ++++++++++ html/changelogs/.all_changelog.yml | 6 ++++++ html/changelogs/AutoChangeLog-pr-14627.yml | 4 ---- html/changelogs/AutoChangeLog-pr-14721.yml | 4 ---- 4 files changed, 16 insertions(+), 8 deletions(-) delete mode 100644 html/changelogs/AutoChangeLog-pr-14627.yml delete mode 100644 html/changelogs/AutoChangeLog-pr-14721.yml diff --git a/html/changelog.html b/html/changelog.html index 7e3f24bf3b..64549ad33b 100644 --- a/html/changelog.html +++ b/html/changelog.html @@ -50,6 +50,16 @@ -->
      +

      15 May 2021

      +

      bunny232 updated:

      +
        +
      • Corrects the bot pathing by engineering on meta station
      • +
      +

      timothyteakettle updated:

      +
        +
      • borg spraycans have a five second delay before being able to knock someone down again
      • +
      +

      14 May 2021

      keronshb updated:

        diff --git a/html/changelogs/.all_changelog.yml b/html/changelogs/.all_changelog.yml index ca2426d1f0..7cdad77414 100644 --- a/html/changelogs/.all_changelog.yml +++ b/html/changelogs/.all_changelog.yml @@ -29301,3 +29301,9 @@ DO NOT EDIT THIS FILE BY HAND! AUTOMATICALLY GENERATED BY ss13_genchangelog.py. - balance: Removes VOG sleep command since it was an undocumented readd. zeroisthebiggay: - spellcheck: consealed +2021-05-15: + bunny232: + - bugfix: Corrects the bot pathing by engineering on meta station + timothyteakettle: + - balance: borg spraycans have a five second delay before being able to knock someone + down again diff --git a/html/changelogs/AutoChangeLog-pr-14627.yml b/html/changelogs/AutoChangeLog-pr-14627.yml deleted file mode 100644 index cde6b62174..0000000000 --- a/html/changelogs/AutoChangeLog-pr-14627.yml +++ /dev/null @@ -1,4 +0,0 @@ -author: "timothyteakettle" -delete-after: True -changes: - - balance: "borg spraycans have a five second delay before being able to knock someone down again" diff --git a/html/changelogs/AutoChangeLog-pr-14721.yml b/html/changelogs/AutoChangeLog-pr-14721.yml deleted file mode 100644 index fbfa2cbd33..0000000000 --- a/html/changelogs/AutoChangeLog-pr-14721.yml +++ /dev/null @@ -1,4 +0,0 @@ -author: "bunny232" -delete-after: True -changes: - - bugfix: "Corrects the bot pathing by engineering on meta station" From a2cd960e20fa721495bddb9b8680c65c72861746 Mon Sep 17 00:00:00 2001 From: bunny232 Date: Sat, 15 May 2021 00:34:54 -0400 Subject: [PATCH 216/259] Update MetaStation.dmm --- _maps/map_files/MetaStation/MetaStation.dmm | 4 ---- 1 file changed, 4 deletions(-) diff --git a/_maps/map_files/MetaStation/MetaStation.dmm b/_maps/map_files/MetaStation/MetaStation.dmm index 35e15c4179..93c625b238 100644 --- a/_maps/map_files/MetaStation/MetaStation.dmm +++ b/_maps/map_files/MetaStation/MetaStation.dmm @@ -16060,10 +16060,6 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 10 }, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=14-Starboard-Central"; - location = "13.3-Engineering-Central" - }, /obj/effect/turf_decal/tile/yellow{ dir = 4 }, From e06b354613afc01ec771b960cf3065970e9fc87a Mon Sep 17 00:00:00 2001 From: zerothebigboy Date: Sat, 15 May 2021 06:58:20 -0400 Subject: [PATCH 217/259] sex!!!!!!!!!! --- code/controllers/subsystem/ticker.dm | 3 ++- sound/roundend/approachingbaystation.ogg | Bin 0 -> 38089 bytes 2 files changed, 2 insertions(+), 1 deletion(-) create mode 100644 sound/roundend/approachingbaystation.ogg diff --git a/code/controllers/subsystem/ticker.dm b/code/controllers/subsystem/ticker.dm index 58238247ff..a06ef3f03b 100755 --- a/code/controllers/subsystem/ticker.dm +++ b/code/controllers/subsystem/ticker.dm @@ -713,7 +713,8 @@ SUBSYSTEM_DEF(ticker) 'sound/roundend/disappointed.ogg', 'sound/roundend/gondolabridge.ogg', 'sound/roundend/haveabeautifultime.ogg', - 'sound/roundend/CitadelStationHasSeenBetterDays.ogg'\ + 'sound/roundend/CitadelStationHasSeenBetterDays.ogg', + 'sound/roundend/approachingbaystation'\ ) SEND_SOUND(world, sound(round_end_sound)) diff --git a/sound/roundend/approachingbaystation.ogg b/sound/roundend/approachingbaystation.ogg new file mode 100644 index 0000000000000000000000000000000000000000..83f5f6aae7069fd0426dc508bbeb6b54129f0fb5 GIT binary patch literal 38089 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 Date: Sat, 15 May 2021 08:35:46 -0400 Subject: [PATCH 218/259] Update ticker.dm --- code/controllers/subsystem/ticker.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/controllers/subsystem/ticker.dm b/code/controllers/subsystem/ticker.dm index a06ef3f03b..a7a3e87672 100755 --- a/code/controllers/subsystem/ticker.dm +++ b/code/controllers/subsystem/ticker.dm @@ -714,7 +714,7 @@ SUBSYSTEM_DEF(ticker) 'sound/roundend/gondolabridge.ogg', 'sound/roundend/haveabeautifultime.ogg', 'sound/roundend/CitadelStationHasSeenBetterDays.ogg', - 'sound/roundend/approachingbaystation'\ + 'sound/roundend/approachingbaystation.ogg'\ ) SEND_SOUND(world, sound(round_end_sound)) From 37873d6750d1596778630b5bc3bc7f7d0565dfda Mon Sep 17 00:00:00 2001 From: zerothebigboy Date: Sat, 15 May 2021 08:52:24 -0400 Subject: [PATCH 219/259] gommit --- .../food_and_drinks/drinks/drinks/bottle.dm | 13 ++++ .../food_and_drinks/recipes/drinks_recipes.dm | 16 +++++ .../chemistry/reagents/alcohol_reagents.dm | 56 ++++++++++++++++++ code/modules/vending/boozeomat.dm | 1 + icons/obj/drinks.dmi | Bin 117952 -> 120157 bytes 5 files changed, 86 insertions(+) diff --git a/code/modules/food_and_drinks/drinks/drinks/bottle.dm b/code/modules/food_and_drinks/drinks/drinks/bottle.dm index e31a9704df..7377913c15 100644 --- a/code/modules/food_and_drinks/drinks/drinks/bottle.dm +++ b/code/modules/food_and_drinks/drinks/drinks/bottle.dm @@ -305,6 +305,15 @@ /obj/item/reagent_containers/food/drinks/bottle/hcider/empty list_reagents = null +/obj/item/reagent_containers/food/drinks/bottle/amaretto + name = "Luini Amaretto" + desc = "A gentle and syrup-like drink that tastes of almonds and apricots." + icon_state = "disaronno" + list_reagents = list(/datum/reagent/consumable/ethanol/amaretto = 100) + +/obj/item/reagent_containers/food/drinks/bottle/amaretto/empty + list_reagents = null + /obj/item/reagent_containers/food/drinks/bottle/grappa name = "Phillipes well-aged Grappa" desc = "Bottle of Grappa." @@ -615,6 +624,10 @@ icon_state = "hcider" name = "Sealed Cider" +/obj/item/export/bottle/amaretto + icon_state = "disaronno" + name = "Sealed Amaretto" + /obj/item/export/bottle/cognac icon_state = "cognacbottle" name = "Sealed Cognac" diff --git a/code/modules/food_and_drinks/recipes/drinks_recipes.dm b/code/modules/food_and_drinks/recipes/drinks_recipes.dm index 943f421a64..1f306c47f0 100644 --- a/code/modules/food_and_drinks/recipes/drinks_recipes.dm +++ b/code/modules/food_and_drinks/recipes/drinks_recipes.dm @@ -899,6 +899,22 @@ required_reagents = list(/datum/reagent/consumable/ethanol/alliescocktail = 50, /datum/reagent/consumable/ethanol/champagne = 20, /datum/reagent/consumable/doctor_delight = 10, /datum/reagent/consumable/ethanol/quintuple_sec = 10, /datum/reagent/consumable/ethanol/screwdrivercocktail = 10) mix_message = "When your powers combine, I am Captain Pl-..." +/datum/chemical_reaction/godfather + results = list(/datum/reagent/consumable/ethanol/godfather = 2) + required_reagents = list(/datum/reagent/consumable/ethanol/amaretto = 1, /datum/reagent/consumable/ethanol/whiskey = 1) + +/datum/chemical_reaction/godmother + results = list(/datum/reagent/consumable/ethanol/godmother = 2) + required_reagents = list(/datum/reagent/consumable/ethanol/amaretto = 1, /datum/reagent/consumable/ethanol/vodka = 1) + +/datum/chemical_reaction/amaretto_alexander + results = list(/datum/reagent/consumable/ethanol/amaretto_alexander = 3) + required_reagents = list(/datum/reagent/consumable/ethanol/amaretto = 1, /datum/reagent/consumable/ethanol/creme_de_cacao = 1, /datum/reagent/consumable/cream = 1) + +/datum/chemical_reaction/ginger_amaretto + results = list(/datum/reagent/consumable/ethanol/ginger_amaretto = 4) + required_reagents = list(/datum/reagent/consumable/ethanol/amaretto = 1, /datum/reagent/consumable/sol_dry = 1, /datum/reagent/consumable/ice = 1, /datum/reagent/consumable/lemonjuice = 1) + ////////////////////////////////////////// Tea Base Drinks ////////////////////////////////////// /datum/chemical_reaction/mush diff --git a/code/modules/reagents/chemistry/reagents/alcohol_reagents.dm b/code/modules/reagents/chemistry/reagents/alcohol_reagents.dm index f53ac7ac40..2882a85b5e 100644 --- a/code/modules/reagents/chemistry/reagents/alcohol_reagents.dm +++ b/code/modules/reagents/chemistry/reagents/alcohol_reagents.dm @@ -360,6 +360,18 @@ All effects don't start immediately, but rather get worse over time; the rate is glass_desc = "A fine drink originally made to prevent waste by using the leftovers from winemaking." pH = 3.5 +/datum/reagent/consumable/ethanol/amaretto + name = "Amaretto" + description = "A gentle drink that carries a sweet aroma." + color = "#E17600" + boozepwr = 25 + taste_description = "fruity and nutty sweetness" + glass_icon_state = "amarettoglass" + shot_glass_icon_state = "shotglassgold" + glass_name = "glass of amaretto" + glass_desc = "A sweet and syrupy-looking drink." + pH = 3.5 + /datum/reagent/consumable/ethanol/cognac name = "Cognac" description = "A sweet and strongly alcoholic drink, made after numerous distillations and years of maturing. Classy as fornication." @@ -1790,6 +1802,50 @@ All effects don't start immediately, but rather get worse over time; the rate is to_chat(L,"You notice [mighty_shield] looks worn again. Weird.") ..() +/datum/reagent/consumable/ethanol/amaretto_alexander + name = "Amaretto Alexander" + description = "A weaker version of the Alexander, what it lacks in strength it makes up for in flavor." + color = "#DBD5AE" + boozepwr = 35 + quality = DRINK_VERYGOOD + taste_description = "sweet, creamy cacao" + glass_icon_state = "alexanderam" + glass_name = "Amaretto Alexander" + glass_desc = "A creamy, indulgent delight that is in fact as gentle as it seems." + +/datum/reagent/consumable/ethanol/ginger_amaretto + name = "Ginger Amaretto" + description = "A delightfully simple cocktail that pleases the senses." + boozepwr = 30 + color = "#EFB42A" + quality = DRINK_GOOD + taste_description = "sweetness followed by a soft sourness and warmth" + glass_icon_state = "gingeramaretto" + glass_name = "Ginger Amaretto" + glass_desc = "The sprig of rosemary adds a nice aroma to the drink, and isn't just to be pretentious afterall!" + +/datum/reagent/consumable/ethanol/godfather + name = "Godfather" + description = "A rough cocktail with illegal connections." + boozepwr = 50 + color = "#E68F00" + quality = DRINK_GOOD + taste_description = "a delightful softened punch" + glass_icon_state = "godfather" + glass_name = "Godfather" + glass_desc = "A classic from old Italy and enjoyed by gangsters, pray the orange peel doesnt end up in your mouth." + +/datum/reagent/consumable/ethanol/godmother + name = "Godmother" + description = "A twist on a classic, liked more by mature women." + boozepwr = 50 + color = "#E68F00" + quality = DRINK_GOOD + taste_description = "sweetness and a zesty twist" + glass_icon_state = "godmother" + glass_name = "Godmother" + glass_desc = "A lovely fresh-smelling cocktail, a true Sicilian delight." + /datum/reagent/consumable/ethanol/sidecar name = "Sidecar" description = "The one ride you'll gladly give up the wheel for." diff --git a/code/modules/vending/boozeomat.dm b/code/modules/vending/boozeomat.dm index 97efbecb77..5ec0987111 100644 --- a/code/modules/vending/boozeomat.dm +++ b/code/modules/vending/boozeomat.dm @@ -18,6 +18,7 @@ /obj/item/reagent_containers/food/drinks/bottle/absinthe = 5, /obj/item/reagent_containers/food/drinks/bottle/grappa = 5, /obj/item/reagent_containers/food/drinks/bottle/sake = 5, + /obj/item/reagent_containers/food/drinks/bottle/amaretto = 5, /obj/item/reagent_containers/food/drinks/ale = 6, /obj/item/reagent_containers/food/drinks/bottle/orangejuice = 4, /obj/item/reagent_containers/food/drinks/bottle/tomatojuice = 4, diff --git a/icons/obj/drinks.dmi b/icons/obj/drinks.dmi index 1c3b10b9decf52895e4920824b1ab1ee6fbe97cd..b7f21a1fe47536606bf11a2b3d38ccbfbfd3599f 100644 GIT binary patch delta 24347 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 delta 22125 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 Date: Sat, 15 May 2021 09:39:56 -0400 Subject: [PATCH 220/259] Update drinks_recipes.dm --- .../food_and_drinks/recipes/drinks_recipes.dm | 30 +++++++++++++++++-- 1 file changed, 28 insertions(+), 2 deletions(-) diff --git a/code/modules/food_and_drinks/recipes/drinks_recipes.dm b/code/modules/food_and_drinks/recipes/drinks_recipes.dm index 943f421a64..e774387cfb 100644 --- a/code/modules/food_and_drinks/recipes/drinks_recipes.dm +++ b/code/modules/food_and_drinks/recipes/drinks_recipes.dm @@ -601,7 +601,7 @@ id = /datum/reagent/consumable/ethanol/cogchamp results = list(/datum/reagent/consumable/ethanol/cogchamp = 3) required_reagents = list(/datum/reagent/consumable/ethanol/cognac = 1, /datum/reagent/fuel = 1, /datum/reagent/consumable/ethanol/screwdrivercocktail = 1) - mix_message = "You hear faint sounds of gears turning as it mixes." + mix_message = "You hear faint sounds of gears turning as the mixture gives off virulent plumes of steam." mix_sound = 'sound/machines/clockcult/steam_whoosh.ogg' /datum/chemical_reaction/pinotmort @@ -744,18 +744,21 @@ id = /datum/reagent/consumable/pwr_game results = list(/datum/reagent/consumable/pwr_game = 5) required_reagents = list(/datum/reagent/consumable/sodawater = 1, /datum/reagent/colorful_reagent/crayonpowder/black = 1, /datum/reagent/consumable/sodiumchloride = 1) + mix_message = "The mixture froths as it turns black, rousing a nauseating aroma of sweat and salt before settling to an eerie purple color. /datum/chemical_reaction/pinkmilk name = "Strawberry Milk" id = /datum/reagent/consumable/pinkmilk results = list(/datum/reagent/consumable/pinkmilk = 2) required_reagents = list(/datum/reagent/consumable/strawberryjuice = 1, /datum/reagent/consumable/milk = 1) + mix_message = "You feel a sweet aroma drift up your nose as the lactic mixture swirls. It reminds you of... a cafeteria." /datum/chemical_reaction/blank_paper name = "Blank Paper" id = /datum/reagent/consumable/ethanol/blank_paper results = list(/datum/reagent/consumable/ethanol/blank_paper = 3) required_reagents = list(/datum/reagent/consumable/ethanol/silencer = 1, /datum/reagent/consumable/nothing = 1, /datum/reagent/consumable/nuka_cola = 1) + mix_message = "..." /datum/chemical_reaction/wizz_fizz name = "Wizz Fizz" @@ -785,18 +788,21 @@ id = /datum/reagent/consumable/ethanol/turbo results = list(/datum/reagent/consumable/ethanol/turbo = 5) required_reagents = list(/datum/reagent/consumable/ethanol/moonshine = 2, /datum/reagent/nitrous_oxide = 1, /datum/reagent/consumable/ethanol/sugar_rush = 1, /datum/reagent/consumable/pwr_game = 1) + mix_message = "The mixture pops and fizzles, it's going to bl- oh, nevermind." /datum/chemical_reaction/old_timer name = "Old Timer" id = /datum/reagent/consumable/ethanol/old_timer results = list(/datum/reagent/consumable/ethanol/old_timer = 6) required_reagents = list(/datum/reagent/consumable/ethanol/whiskeysoda = 3, /datum/reagent/consumable/parsnipjuice = 2, /datum/reagent/consumable/ethanol/alexander = 1) + mix_message = "You hear a faded record playing in the distance. Then, you hear nothing." /datum/chemical_reaction/rubberneck name = "Rubberneck" id = /datum/reagent/consumable/ethanol/rubberneck results = list(/datum/reagent/consumable/ethanol/rubberneck = 10) required_reagents = list(/datum/reagent/consumable/ethanol = 4, /datum/reagent/consumable/grey_bull = 5, /datum/reagent/consumable/astrotame = 1) + mix_message = "The mixture boils and bubbles as the faint scent of rubber and heart disease hits your nose." /datum/chemical_reaction/duplex name = "Duplex" @@ -809,6 +815,7 @@ id = /datum/reagent/consumable/ethanol/trappist results = list(/datum/reagent/consumable/ethanol/trappist = 5) required_reagents = list(/datum/reagent/consumable/ethanol/ale = 2, /datum/reagent/water/holywater = 2, /datum/reagent/consumable/sugar = 1) + mix_message = "As the mixture froths, you swear you can hear a distant holy choir." /datum/chemical_reaction/cream_soda name = "Cream Soda" @@ -821,6 +828,7 @@ id = /datum/reagent/consumable/ethanol/blazaam results = list(/datum/reagent/consumable/ethanol/blazaam = 3) required_reagents = list(/datum/reagent/consumable/ethanol/gin = 2, /datum/reagent/consumable/peachjuice = 1, /datum/reagent/bluespace = 1) + mix_message = "The mixture- hey, where'd all the liquid go? Oh, there it is." /datum/chemical_reaction/planet_cracker name = "Planet Cracker" @@ -861,6 +869,7 @@ id = /datum/reagent/consumable/ethanol/strawberry_daiquiri results = list(/datum/reagent/consumable/ethanol/strawberry_daiquiri = 7) required_reagents = list(/datum/reagent/consumable/ethanol/rum = 2, /datum/reagent/consumable/limejuice = 1, /datum/reagent/consumable/sugar = 1, /datum/reagent/consumable/strawberryjuice = 2, /datum/reagent/consumable/ice = 1) + mix_message = "The mixture settles as a nostril-flaring waft of strawberry hits your nose." /datum/chemical_reaction/miami_vice name = "Miami Vice" @@ -879,18 +888,21 @@ id = /datum/reagent/consumable/ethanol/liz_fizz results = list(/datum/reagent/consumable/ethanol/liz_fizz = 5) required_reagents = list(/datum/reagent/consumable/triple_citrus = 3, /datum/reagent/consumable/ice = 1, /datum/reagent/consumable/cream = 1) + mix_message = "The smell of cream and lime hits your nose as everything feels very real for a split moment. You want to lick your eye." /datum/chemical_reaction/hotlime_miami name = "Hotlime Miami" id = /datum/reagent/consumable/ethanol/hotlime_miami results = list(/datum/reagent/consumable/ethanol/hotlime_miami = 2) required_reagents = list(/datum/reagent/medicine/ephedrine = 1, /datum/reagent/consumable/ethanol/pina_colada = 1) + mix_message = "You hear synthwave in the distance as the drink mixes; this makes you want to hit someone with a baseball bat." /datum/chemical_reaction/mauna_loa name = "Mauna Loa" id = /datum/reagent/consumable/ethanol/mauna_loa results = list(/datum/reagent/consumable/ethanol/mauna_loa = 5) required_reagents = list(/datum/reagent/consumable/capsaicin = 2, /datum/reagent/consumable/ethanol/kahlua = 1, /datum/reagent/consumable/ethanol/bahama_mama = 2) + mix_message = "The drink erupts as a plume of lava sprays all over the place! Oh, wait, it's just luke-warm liquor." /datum/chemical_reaction/commander_and_chief name = "Commander and Chief" @@ -906,6 +918,7 @@ id = /datum/reagent/consumable/tea/mush results = list(/datum/reagent/consumable/tea/mush = 3) required_reagents = list(/datum/reagent/drug/mushroomhallucinogen = 3, /datum/reagent/consumable/tea = 3) + mix_message = "The liquid stirs with a mixture of psychedelic colors that makes stars peek from the corner of your vision." /datum/chemical_reaction/foresttea1 name = "Forest Tea" @@ -967,7 +980,7 @@ id = /datum/reagent/consumable/catnip_tea results = list(/datum/reagent/consumable/catnip_tea = 3) required_reagents = list(/datum/reagent/consumable/tea = 5, /datum/reagent/pax/catnip = 2) - + mix_message = "The mixture seems to purr aloud as it stirs together." ////////////////////////////////////////// Race Base Drinks ////////////////////////////////////// @@ -976,54 +989,64 @@ id = /datum/reagent/consumable/ethanol/species_drink/coldscales results = list(/datum/reagent/consumable/ethanol/species_drink/coldscales = 3) required_reagents = list(/datum/reagent/consumable/tea = 1, /datum/reagent/toxin/slimejelly = 1, /datum/reagent/consumable/menthol = 1) + mix_message = "Bubbles erupt from the glass and spill all over the place as it mixes, before settling with the faint smell of a reptile enclosure." /datum/chemical_reaction/oil_drum name = "Oil Drum" id = /datum/reagent/consumable/ethanol/species_drink/oil_drum results = list(/datum/reagent/consumable/ethanol/species_drink/oil_drum = 3) required_reagents = list(/datum/reagent/consumable/ethanol = 1, /datum/reagent/oil = 1, /datum/reagent/consumable/ethanol/champagne = 12) + mix_message = "You can taste oil in your mouth as the newly-formed mixture floats to the top of the glass." /datum/chemical_reaction/nord_king name = "Nord King" id = /datum/reagent/consumable/ethanol/species_drink/nord_king results = list(/datum/reagent/consumable/ethanol/species_drink/nord_king = 10) required_reagents = list(/datum/reagent/consumable/ethanol = 5, /datum/reagent/consumable/honey = 1, /datum/reagent/consumable/ethanol/red_mead = 10) + mix_message = "You can feel hair growing on places it shouldn't be as the smell of salt water and flame burns into your senses." /datum/chemical_reaction/velvet_kiss name = "Velvet Kiss" id = /datum/reagent/consumable/ethanol/species_drink/velvet_kiss results = list(/datum/reagent/consumable/ethanol/species_drink/velvet_kiss = 15) //Limited races use this required_reagents = list(/datum/reagent/blood = 5, /datum/reagent/consumable/tea = 1, /datum/reagent/consumable/ethanol/wine = 10) + mix_message = "The taste of blood rolls off your tongue as the mixture oozes a crimson secretion." /datum/chemical_reaction/abduction_fruit name = "Abduction Fruit" id = /datum/reagent/consumable/ethanol/species_drink/abduction_fruit results = list(/datum/reagent/consumable/ethanol/species_drink/abduction_fruit = 3) required_reagents = list(/datum/reagent/consumable/limejuice = 10, /datum/reagent/consumable/strawberryjuice = 5, /datum/reagent/consumable/watermelonjuice = 10) + mix_message = "The mixture forms with a green cloud of smoke, carrying with a smell of bovines and medicine." /datum/chemical_reaction/bug_zapper name = "Bug Zapper" id = /datum/reagent/consumable/ethanol/species_drink/bug_zapper results = list(/datum/reagent/consumable/ethanol/species_drink/bug_zapper = 20) //Harder to make required_reagents = list(/datum/reagent/consumable/lemonjuice = 10, /datum/reagent/teslium = 1, /datum/reagent/copper = 10) + mix_message = "The mixture comes to life with a spark and a zap - shortly after, you can hear the faint buzzing of moths circling your head." + mix_sound = 'sound/weapons/taser.ogg' /datum/chemical_reaction/mush_crush name = "Mush Crush" id = /datum/reagent/consumable/ethanol/species_drink/mush_crush results = list(/datum/reagent/consumable/ethanol/species_drink/mush_crush = 10) required_reagents = list(/datum/reagent/iron = 5, /datum/reagent/ash = 5, /datum/reagent/toxin/coffeepowder = 10) + mix_message = "The mixture sputters and coughs as a mushroom suddenly emerges from the glass!" /datum/chemical_reaction/darkbrew name = "Darkbrew" id = /datum/reagent/consumable/ethanol/species_drink/darkbrew results = list(/datum/reagent/consumable/ethanol/species_drink/darkbrew = 20)//Limited races use this required_reagents = list(/datum/reagent/liquid_dark_matter = 5, /datum/reagent/toxin/bungotoxin = 5, /datum/reagent/toxin/coffeepowder = 10) + mix_message = "As the glass turns into a shadowy pit, you can smell... nothing." /datum/chemical_reaction/hollow_bone name = "Hollow Bone" id = /datum/reagent/consumable/ethanol/species_drink/hollow_bone results = list(/datum/reagent/consumable/ethanol/species_drink/hollow_bone = 10) required_reagents = list(/datum/reagent/toxin/bonehurtingjuice = 5, /datum/reagent/consumable/milk = 10, /datum/reagent/consumable/coconutmilk = 10) + mix_message = "Your bones feel week." /datum/chemical_reaction/frisky_kitty name = "Frisky Kitty" @@ -1031,6 +1054,7 @@ results = list(/datum/reagent/consumable/ethanol/species_drink/frisky_kitty = 2) required_reagents = list(/datum/reagent/consumable/catnip_tea = 1, /datum/reagent/consumable/milk = 1) required_temp = 296 //Just above room temp (22.85'C) + mix_message = "The drink bubbles over the rim as it settles, and the smell of wet fur and felines makes it feel like you're in heat." /datum/chemical_reaction/jell_wyrm name = "Jell Wyrm" @@ -1038,6 +1062,7 @@ results = list(/datum/reagent/consumable/ethanol/species_drink/jell_wyrm = 2) required_reagents = list(/datum/reagent/toxin/slimejelly = 1, /datum/reagent/toxin/carpotoxin = 1, /datum/reagent/carbondioxide = 5) required_temp = 333 // (59.85'C) + mix_message = "The smell of toxins scrunches your nose as your limbs grow limp and feel like jelly." /datum/chemical_reaction/laval_spit name = "Laval Spit" @@ -1045,3 +1070,4 @@ results = list(/datum/reagent/consumable/ethanol/species_drink/laval_spit = 20) //Limited use required_reagents = list(/datum/reagent/iron = 5, /datum/reagent/consumable/ethanol/mauna_loa = 10, /datum/reagent/sulfur = 5) required_temp = 900 // (626.85'C) + mix_message = "The room grows warm as burning rock rockets over the edge of the drink before settling." From 1ff27aa732807e9651d8da91d0f89dea08a8abd5 Mon Sep 17 00:00:00 2001 From: zeroisthebiggay <43571008+zeroisthebiggay@users.noreply.github.com> Date: Sat, 15 May 2021 09:43:55 -0400 Subject: [PATCH 221/259] Update drinks_recipes.dm --- code/modules/food_and_drinks/recipes/drinks_recipes.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/food_and_drinks/recipes/drinks_recipes.dm b/code/modules/food_and_drinks/recipes/drinks_recipes.dm index e774387cfb..5bcb64f764 100644 --- a/code/modules/food_and_drinks/recipes/drinks_recipes.dm +++ b/code/modules/food_and_drinks/recipes/drinks_recipes.dm @@ -1046,7 +1046,7 @@ id = /datum/reagent/consumable/ethanol/species_drink/hollow_bone results = list(/datum/reagent/consumable/ethanol/species_drink/hollow_bone = 10) required_reagents = list(/datum/reagent/toxin/bonehurtingjuice = 5, /datum/reagent/consumable/milk = 10, /datum/reagent/consumable/coconutmilk = 10) - mix_message = "Your bones feel week." + mix_message = "Your bones feel weak." /datum/chemical_reaction/frisky_kitty name = "Frisky Kitty" From 8166167a4598454eb3b420394a8d5d339aa65a8b Mon Sep 17 00:00:00 2001 From: zeroisthebiggay <43571008+zeroisthebiggay@users.noreply.github.com> Date: Sat, 15 May 2021 09:44:21 -0400 Subject: [PATCH 222/259] Update drinks_recipes.dm --- code/modules/food_and_drinks/recipes/drinks_recipes.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/food_and_drinks/recipes/drinks_recipes.dm b/code/modules/food_and_drinks/recipes/drinks_recipes.dm index 5bcb64f764..3a7c2827eb 100644 --- a/code/modules/food_and_drinks/recipes/drinks_recipes.dm +++ b/code/modules/food_and_drinks/recipes/drinks_recipes.dm @@ -744,7 +744,7 @@ id = /datum/reagent/consumable/pwr_game results = list(/datum/reagent/consumable/pwr_game = 5) required_reagents = list(/datum/reagent/consumable/sodawater = 1, /datum/reagent/colorful_reagent/crayonpowder/black = 1, /datum/reagent/consumable/sodiumchloride = 1) - mix_message = "The mixture froths as it turns black, rousing a nauseating aroma of sweat and salt before settling to an eerie purple color. + mix_message = "The mixture froths as it turns black, rousing a nauseating aroma of sweat and salt before settling to an eerie purple color." /datum/chemical_reaction/pinkmilk name = "Strawberry Milk" From 2bc5edede058b96f769495fef249488cc0a1be97 Mon Sep 17 00:00:00 2001 From: zeroisthebiggay <43571008+zeroisthebiggay@users.noreply.github.com> Date: Sat, 15 May 2021 09:51:48 -0400 Subject: [PATCH 223/259] Update drinks_recipes.dm --- .../modules/food_and_drinks/recipes/drinks_recipes.dm | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/code/modules/food_and_drinks/recipes/drinks_recipes.dm b/code/modules/food_and_drinks/recipes/drinks_recipes.dm index 3a7c2827eb..708fcd6bcf 100644 --- a/code/modules/food_and_drinks/recipes/drinks_recipes.dm +++ b/code/modules/food_and_drinks/recipes/drinks_recipes.dm @@ -447,6 +447,7 @@ id = /datum/reagent/consumable/ethanol/syndicatebomb results = list(/datum/reagent/consumable/ethanol/syndicatebomb = 2) required_reagents = list(/datum/reagent/consumable/ethanol/beer = 1, /datum/reagent/consumable/ethanol/whiskey_cola = 1) + mix_message = "You can hear beeping coming from behind you." /datum/chemical_reaction/erikasurprise name = "Erika Surprise" @@ -459,24 +460,28 @@ id = /datum/reagent/consumable/ethanol/devilskiss results = list(/datum/reagent/consumable/ethanol/devilskiss = 3) required_reagents = list(/datum/reagent/blood = 1, /datum/reagent/consumable/ethanol/kahlua = 1, /datum/reagent/consumable/ethanol/rum = 1) + mix_message = "You can hear faint whispering in your ear and a burning on your cheeks as the mixture blends together into with a fiery swirl." /datum/chemical_reaction/hippiesdelight name = "Hippies Delight" id = /datum/reagent/consumable/ethanol/hippies_delight results = list(/datum/reagent/consumable/ethanol/hippies_delight = 2) required_reagents = list(/datum/reagent/drug/mushroomhallucinogen = 1, /datum/reagent/consumable/ethanol/gargle_blaster = 1) + mix_message = "You can like... Smell the flowers, man - as the drink mixes." /datum/chemical_reaction/bananahonk name = "Banana Honk" id = /datum/reagent/consumable/ethanol/bananahonk results = list(/datum/reagent/consumable/ethanol/bananahonk = 2) required_reagents = list(/datum/reagent/consumable/laughter = 1, /datum/reagent/consumable/cream = 1) + mix_message = "The mixture honks. Honk!" /datum/chemical_reaction/silencer name = "Silencer" id = /datum/reagent/consumable/ethanol/silencer results = list(/datum/reagent/consumable/ethanol/silencer = 3) required_reagents = list(/datum/reagent/consumable/nothing = 1, /datum/reagent/consumable/cream = 1, /datum/reagent/consumable/sugar = 1) + mix_message = "..." /datum/chemical_reaction/driestmartini name = "Driest Martini" @@ -519,12 +524,14 @@ id = /datum/reagent/consumable/gibbfloats results = list(/datum/reagent/consumable/gibbfloats = 15) required_reagents = list(/datum/reagent/consumable/dr_gibb = 5, /datum/reagent/consumable/ice = 5, /datum/reagent/consumable/cream = 5) + mix_message = "As the cream floats to the top of the glass, you can feel your cholesterol levels rising just looking at it." /datum/chemical_reaction/triple_citrus name = "triple_citrus" id = /datum/reagent/consumable/triple_citrus results = list(/datum/reagent/consumable/triple_citrus = 5) required_reagents = list(/datum/reagent/consumable/lemonjuice = 1, /datum/reagent/consumable/limejuice = 1, /datum/reagent/consumable/orangejuice = 1) + mix_message = "The glass's contents shift colors from a rainbow of fruity twinges before settling with a distinct flowery smell." /datum/chemical_reaction/grape_soda name = "grape soda" @@ -895,7 +902,7 @@ id = /datum/reagent/consumable/ethanol/hotlime_miami results = list(/datum/reagent/consumable/ethanol/hotlime_miami = 2) required_reagents = list(/datum/reagent/medicine/ephedrine = 1, /datum/reagent/consumable/ethanol/pina_colada = 1) - mix_message = "You hear synthwave in the distance as the drink mixes; this makes you want to hit someone with a baseball bat." + mix_message = "You can hear synthwave in the distance as the drink mixes as you can feel your blood boiling." /datum/chemical_reaction/mauna_loa name = "Mauna Loa" @@ -1046,7 +1053,7 @@ id = /datum/reagent/consumable/ethanol/species_drink/hollow_bone results = list(/datum/reagent/consumable/ethanol/species_drink/hollow_bone = 10) required_reagents = list(/datum/reagent/toxin/bonehurtingjuice = 5, /datum/reagent/consumable/milk = 10, /datum/reagent/consumable/coconutmilk = 10) - mix_message = "Your bones feel weak." + mix_message = "Your bones feel weak." /datum/chemical_reaction/frisky_kitty name = "Frisky Kitty" From 03c2f752fa214e8d4d220fde62bc31e1bb521f5f Mon Sep 17 00:00:00 2001 From: zeroisthebiggay <43571008+zeroisthebiggay@users.noreply.github.com> Date: Sat, 15 May 2021 11:51:43 -0400 Subject: [PATCH 224/259] Update drinks_recipes.dm --- .../food_and_drinks/recipes/drinks_recipes.dm | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/code/modules/food_and_drinks/recipes/drinks_recipes.dm b/code/modules/food_and_drinks/recipes/drinks_recipes.dm index 708fcd6bcf..0061e6076c 100644 --- a/code/modules/food_and_drinks/recipes/drinks_recipes.dm +++ b/code/modules/food_and_drinks/recipes/drinks_recipes.dm @@ -29,6 +29,7 @@ id = /datum/reagent/consumable/nuka_cola results = list(/datum/reagent/consumable/nuka_cola = 6) required_reagents = list(/datum/reagent/uranium = 1, /datum/reagent/consumable/space_cola = 6) + mix_message = "The bitter-sweet smell of radiation almost makes you wish for a space winter." /datum/chemical_reaction/moonshine name = "Moonshine" @@ -36,6 +37,7 @@ results = list(/datum/reagent/consumable/ethanol/moonshine = 10) required_reagents = list(/datum/reagent/consumable/nutriment = 5, /datum/reagent/consumable/sugar = 5) required_catalysts = list(/datum/reagent/consumable/enzyme = 5) + mix_message = "As the moisture in the glass settles, your entire face burns from the reaction's alcoholic virility." /datum/chemical_reaction/wine name = "Wine" @@ -112,6 +114,7 @@ id = /datum/reagent/consumable/ethanol/screwdrivercocktail results = list(/datum/reagent/consumable/ethanol/screwdrivercocktail = 3) required_reagents = list(/datum/reagent/consumable/ethanol/vodka = 2, /datum/reagent/consumable/orangejuice = 1) + mix_message = "The mixture billows a sweet scent of orange, promptly drowned out by a thick nose-scrunching cloud of potato liquor." /datum/chemical_reaction/bloody_mary name = "Bloody Mary" @@ -142,18 +145,21 @@ id = /datum/reagent/consumable/ethanol/toxins_special results = list(/datum/reagent/consumable/ethanol/toxins_special = 5) required_reagents = list(/datum/reagent/consumable/ethanol/rum = 2, /datum/reagent/consumable/ethanol/vermouth = 1, /datum/reagent/toxin/plasma = 2) + mix_message = "The surface of the mixture sets ablaze as toxic gas erupts into a mystical cloud of fire, shortly settling to but a humble - albeit eternal blaze." /datum/chemical_reaction/beepsky_smash name = "Beepksy Smash" id = /datum/reagent/consumable/ethanol/beepsky_smash results = list(/datum/reagent/consumable/ethanol/beepsky_smash = 5) required_reagents = list(/datum/reagent/consumable/limejuice = 2, /datum/reagent/consumable/ethanol/quadruple_sec = 2, /datum/reagent/iron = 1) + mix_message = "You can hear the law nearby." /datum/chemical_reaction/doctor_delight name = "The Doctor's Delight" id = /datum/reagent/consumable/doctor_delight results = list(/datum/reagent/consumable/doctor_delight = 5) required_reagents = list(/datum/reagent/consumable/limejuice = 1, /datum/reagent/consumable/tomatojuice = 1, /datum/reagent/consumable/orangejuice = 1, /datum/reagent/consumable/cream = 1, /datum/reagent/medicine/cryoxadone = 1) + mix_message = "The scent of medicine hits you like a truck!" /datum/chemical_reaction/irish_cream name = "Irish Cream" @@ -166,6 +172,7 @@ id = /datum/reagent/consumable/ethanol/manly_dorf results = list(/datum/reagent/consumable/ethanol/manly_dorf = 3) required_reagents = list (/datum/reagent/consumable/ethanol/beer = 1, /datum/reagent/consumable/ethanol/ale = 2) + mix_message = "You can feel the hair growing on your chest!" /datum/chemical_reaction/greenbeer name = "Green Beer" @@ -233,6 +240,7 @@ id = /datum/reagent/consumable/ethanol/hiveminderaser results = list(/datum/reagent/consumable/ethanol/hiveminderaser = 4) required_reagents = list(/datum/reagent/consumable/ethanol/black_russian = 2, /datum/reagent/consumable/ethanol/thirteenloko = 1, /datum/reagent/consumable/grenadine = 1) + mix_message = "Your head throbs as the purple-colored mixture swirls with alien-like vigor!" /datum/chemical_reaction/manhattan name = "Manhattan" @@ -269,6 +277,8 @@ id = /datum/reagent/consumable/ethanol/singulo results = list(/datum/reagent/consumable/ethanol/singulo = 10) required_reagents = list(/datum/reagent/consumable/ethanol/vodka = 5, /datum/reagent/radium = 1, /datum/reagent/consumable/ethanol/wine = 5) + mix_message = "A horrible screeching fills your ears, and a wave of dread washes over you..." + mix_sound = 'sound/effects/supermatter.ogg' /datum/chemical_reaction/alliescocktail name = "Allies Cocktail" @@ -448,6 +458,7 @@ results = list(/datum/reagent/consumable/ethanol/syndicatebomb = 2) required_reagents = list(/datum/reagent/consumable/ethanol/beer = 1, /datum/reagent/consumable/ethanol/whiskey_cola = 1) mix_message = "You can hear beeping coming from behind you." + mix_sound = 'sound/machines/nuke/angry_beep.ogg' /datum/chemical_reaction/erikasurprise name = "Erika Surprise" @@ -475,6 +486,7 @@ results = list(/datum/reagent/consumable/ethanol/bananahonk = 2) required_reagents = list(/datum/reagent/consumable/laughter = 1, /datum/reagent/consumable/cream = 1) mix_message = "The mixture honks. Honk!" + mix_sound = 'sound/items/bikehorn.ogg' /datum/chemical_reaction/silencer name = "Silencer" @@ -574,6 +586,7 @@ results = list(/datum/reagent/consumable/ethanol/bacchus_blessing = 4) required_reagents = list(/datum/reagent/consumable/ethanol/hooch = 1, /datum/reagent/consumable/ethanol/absinthe = 1, /datum/reagent/consumable/ethanol/manly_dorf = 1, /datum/reagent/consumable/ethanol/syndicatebomb = 1) mix_message = "The mixture turns to a sickening froth." + mix_sound = 'sound/FermiChem/bufferadd.ogg' /datum/chemical_reaction/lemonade name = "Lemonade" @@ -863,6 +876,7 @@ results = list(/datum/reagent/consumable/ethanol/hellfire = 4) required_reagents = list(/datum/reagent/consumable/ethanol/rum = 2, /datum/reagent/consumable/ice = 1, /datum/reagent/consumable/ethanol/crevice_spike = 1) mix_message = "The liquid begins to churn as it changes to an amber orange and catches on fire." + mix_sound = 'sound/FermiChem/bufferadd.ogg' /datum/chemical_reaction/sins_delight name = "Sins Delight" @@ -902,7 +916,7 @@ id = /datum/reagent/consumable/ethanol/hotlime_miami results = list(/datum/reagent/consumable/ethanol/hotlime_miami = 2) required_reagents = list(/datum/reagent/medicine/ephedrine = 1, /datum/reagent/consumable/ethanol/pina_colada = 1) - mix_message = "You can hear synthwave in the distance as the drink mixes as you can feel your blood boiling." + mix_message = "You can hear synthwave in the distance as you can feel your blood boiling with rage." /datum/chemical_reaction/mauna_loa name = "Mauna Loa" @@ -1054,6 +1068,7 @@ results = list(/datum/reagent/consumable/ethanol/species_drink/hollow_bone = 10) required_reagents = list(/datum/reagent/toxin/bonehurtingjuice = 5, /datum/reagent/consumable/milk = 10, /datum/reagent/consumable/coconutmilk = 10) mix_message = "Your bones feel weak." + mix_sound = 'sound/effects/wounds/crack1.ogg' /datum/chemical_reaction/frisky_kitty name = "Frisky Kitty" From a0b83950aedfaaacf22370b4ee46dc13b47730ed Mon Sep 17 00:00:00 2001 From: zeroisthebiggay <43571008+zeroisthebiggay@users.noreply.github.com> Date: Sat, 15 May 2021 12:03:04 -0400 Subject: [PATCH 225/259] Update drinks_recipes.dm --- .../food_and_drinks/recipes/drinks_recipes.dm | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/code/modules/food_and_drinks/recipes/drinks_recipes.dm b/code/modules/food_and_drinks/recipes/drinks_recipes.dm index 0061e6076c..b812cdbba3 100644 --- a/code/modules/food_and_drinks/recipes/drinks_recipes.dm +++ b/code/modules/food_and_drinks/recipes/drinks_recipes.dm @@ -458,7 +458,7 @@ results = list(/datum/reagent/consumable/ethanol/syndicatebomb = 2) required_reagents = list(/datum/reagent/consumable/ethanol/beer = 1, /datum/reagent/consumable/ethanol/whiskey_cola = 1) mix_message = "You can hear beeping coming from behind you." - mix_sound = 'sound/machines/nuke/angry_beep.ogg' + mix_sound = 'sound/items/timer.ogg' /datum/chemical_reaction/erikasurprise name = "Erika Surprise" @@ -493,13 +493,16 @@ id = /datum/reagent/consumable/ethanol/silencer results = list(/datum/reagent/consumable/ethanol/silencer = 3) required_reagents = list(/datum/reagent/consumable/nothing = 1, /datum/reagent/consumable/cream = 1, /datum/reagent/consumable/sugar = 1) - mix_message = "..." + mix_message = "As the drink mixes, you can hear nothing..." + mix_sound = null /datum/chemical_reaction/driestmartini name = "Driest Martini" id = /datum/reagent/consumable/ethanol/driestmartini results = list(/datum/reagent/consumable/ethanol/driestmartini = 2) required_reagents = list(/datum/reagent/consumable/nothing = 1, /datum/reagent/consumable/ethanol/gin = 1) + mix_message = "You feel like a prune beneath a sun as the mixture yanks the moisture from your tongue - yet, it's all so silent." + mix_sound = null /datum/chemical_reaction/thirteenloko name = "Thirteen Loko" @@ -778,7 +781,8 @@ id = /datum/reagent/consumable/ethanol/blank_paper results = list(/datum/reagent/consumable/ethanol/blank_paper = 3) required_reagents = list(/datum/reagent/consumable/ethanol/silencer = 1, /datum/reagent/consumable/nothing = 1, /datum/reagent/consumable/nuka_cola = 1) - mix_message = "..." + mix_message = "As the drink mixes, you can hear nothing..." + mix_sound = null /datum/chemical_reaction/wizz_fizz name = "Wizz Fizz" @@ -816,6 +820,7 @@ results = list(/datum/reagent/consumable/ethanol/old_timer = 6) required_reagents = list(/datum/reagent/consumable/ethanol/whiskeysoda = 3, /datum/reagent/consumable/parsnipjuice = 2, /datum/reagent/consumable/ethanol/alexander = 1) mix_message = "You hear a faded record playing in the distance. Then, you hear nothing." + mix_sound = null /datum/chemical_reaction/rubberneck name = "Rubberneck" @@ -849,6 +854,7 @@ results = list(/datum/reagent/consumable/ethanol/blazaam = 3) required_reagents = list(/datum/reagent/consumable/ethanol/gin = 2, /datum/reagent/consumable/peachjuice = 1, /datum/reagent/bluespace = 1) mix_message = "The mixture- hey, where'd all the liquid go? Oh, there it is." + mix_sound = 'sound/magic/Teleport_app.ogg' /datum/chemical_reaction/planet_cracker name = "Planet Cracker" @@ -869,6 +875,7 @@ results = list(/datum/reagent/consumable/ethanol/gunfire = 4) required_reagents = list(/datum/reagent/consumable/ethanol/rum = 1, /datum/reagent/consumable/tea = 3) mix_message = "A loud popping begins to fill the air as the drink is mixed." + mix_sound = 'sound/effects/wounds/sizzle1.ogg' /datum/chemical_reaction/hellfire name = "Hellfire" @@ -924,6 +931,7 @@ results = list(/datum/reagent/consumable/ethanol/mauna_loa = 5) required_reagents = list(/datum/reagent/consumable/capsaicin = 2, /datum/reagent/consumable/ethanol/kahlua = 1, /datum/reagent/consumable/ethanol/bahama_mama = 2) mix_message = "The drink erupts as a plume of lava sprays all over the place! Oh, wait, it's just luke-warm liquor." + mix_sound = 'sound/effects/wounds/sizzle2.ogg' /datum/chemical_reaction/commander_and_chief name = "Commander and Chief" @@ -1093,3 +1101,4 @@ required_reagents = list(/datum/reagent/iron = 5, /datum/reagent/consumable/ethanol/mauna_loa = 10, /datum/reagent/sulfur = 5) required_temp = 900 // (626.85'C) mix_message = "The room grows warm as burning rock rockets over the edge of the drink before settling." + mix_sound = 'sound/effects/wounds/sizzle2.ogg' From 340571832bb3334fb55077a530b841424bb76529 Mon Sep 17 00:00:00 2001 From: Changelogs Date: Sun, 16 May 2021 00:30:09 +0000 Subject: [PATCH 226/259] Automatic changelog compile [ci skip] --- html/changelog.html | 24 ------------------------ 1 file changed, 24 deletions(-) diff --git a/html/changelog.html b/html/changelog.html index 64549ad33b..28f6ffcad4 100644 --- a/html/changelog.html +++ b/html/changelog.html @@ -781,30 +781,6 @@

        • Fixed interacting with telecomms.
        - -

        14 March 2021

        -

        Adelphon updated:

        -
          -
        • messy2
        • -
        • papermask
        • -
        -

        Hatterhat updated:

        -
          -
        • Robotic limb repair surgery now has tiers.
        • -
        • Pubby and Delta now have roundstart limb-growers relatively close to, if not in, the operating theaters. tweak: Box QM's console now can announce things.
        • -
        -

        Putnam3145 updated:

        -
          -
        • chaos loads now
        • -
        -

        kiwedespars updated:

        -
          -
        • adds a cute new plushie
        • -
        -

        necromanceranne updated:

        -
          -
        • Fixes cosmetic augments missing their foot sprites.
        • -
      GoonStation 13 Development Team From 80d287abca3104e8558994c59354103bc1d1147b Mon Sep 17 00:00:00 2001 From: Timothy Teakettle <59849408+timothyteakettle@users.noreply.github.com> Date: Sun, 16 May 2021 03:10:35 +0100 Subject: [PATCH 227/259] index magic moment --- code/modules/client/preferences.dm | 34 ++++++++++++++++++++++++------ 1 file changed, 28 insertions(+), 6 deletions(-) diff --git a/code/modules/client/preferences.dm b/code/modules/client/preferences.dm index bc62879d46..610e4716a4 100644 --- a/code/modules/client/preferences.dm +++ b/code/modules/client/preferences.dm @@ -542,16 +542,40 @@ GLOBAL_LIST_EMPTY(preferences_datums) if(S && matrixed_sections) // if it has nothing initialize it to white if(length(marking_list) == 2) - marking_list += list(list("#FFFFFF","#FFFFFF","#FFFFFF")) // just assume its 3 colours if it isnt it doesnt matter we just wont use the other values + var/first = "#FFFFFF" + var/second = "#FFFFFF" + var/third = "#FFFFFF" + if(features["mcolor"]) + first = "#[features["mcolor"]]" + if(features["mcolor2"]) + second = "#[features["mcolor2"]]" + if(features["mcolor3"]) + third = "#[features["mcolor3"]]" + marking_list += list(list(first, second, third)) // just assume its 3 colours if it isnt it doesnt matter we just wont use the other values + // index magic + var/primary_index = 1 + var/secondary_index = 2 + var/tertiary_index = 3 + switch(matrixed_sections) + if(MATRIX_GREEN) + primary_index = 2 + if(MATRIX_BLUE) + primary_index = 3 + if(MATRIX_RED_BLUE) + secondary_index = 2 + if(MATRIX_GREEN_BLUE) + primary_index = 2 + secondary_index = 3 + // we know it has one matrixed section at minimum - color_marking_dat += "   " + color_marking_dat += "   " // if it has a second section, add it if(matrixed_sections == MATRIX_RED_BLUE || matrixed_sections == MATRIX_GREEN_BLUE || matrixed_sections == MATRIX_RED_GREEN || matrixed_sections == MATRIX_ALL) - color_marking_dat += "   " + color_marking_dat += "   " number_colors = 2 // if it has a third section, add it if(matrixed_sections == MATRIX_ALL) - color_marking_dat += "   " + color_marking_dat += "   " number_colors = 3 color_marking_dat += " Change
      " dat += "
    " @@ -2487,8 +2511,6 @@ GLOBAL_LIST_EMPTY(preferences_datums) color_number = 2 if(MATRIX_BLUE) color_number = 3 - if(MATRIX_GREEN_BLUE) - color_number = 2 else if(color_number == 2) switch(matrixed_sections) if(MATRIX_RED_BLUE) From e4e5d8f5cddf733dde5b0c8f02c012ab7d17869d Mon Sep 17 00:00:00 2001 From: shellspeed1 <46614774+shellspeed1@users.noreply.github.com> Date: Mon, 17 May 2021 00:59:10 -0700 Subject: [PATCH 228/259] adds an pod for projects --- _maps/templates/shelter_4.dmm | 24 +++++++++++++++++++ code/modules/mining/equipment/survival_pod.dm | 8 +++++++ code/modules/mining/machine_vending.dm | 1 + code/modules/mining/shelters.dm | 12 ++++++++++ 4 files changed, 45 insertions(+) create mode 100644 _maps/templates/shelter_4.dmm diff --git a/_maps/templates/shelter_4.dmm b/_maps/templates/shelter_4.dmm new file mode 100644 index 0000000000..5e749afbed --- /dev/null +++ b/_maps/templates/shelter_4.dmm @@ -0,0 +1,24 @@ +"a" = (/turf/closed/wall/mineral/titanium/survival/pod,/area/survivalpod/nonpowered) +"j" = (/turf/open/floor/pod/dark,/area/survivalpod/nonpowered) +"k" = (/obj/item/gps/computer,/turf/open/floor/pod/dark,/area/survivalpod/nonpowered) +"p" = (/obj/machinery/light,/turf/open/floor/pod/dark,/area/survivalpod/nonpowered) +"x" = (/obj/machinery/smartfridge/survival_pod,/turf/open/floor/pod/dark,/area/survivalpod/nonpowered) +"H" = (/obj/machinery/light{dir = 1},/obj/structure/table/survival_pod,/turf/open/floor/pod/dark,/area/survivalpod/nonpowered) +"J" = (/obj/machinery/light{dir = 8},/turf/open/floor/pod/dark,/area/survivalpod/nonpowered) +"P" = (/obj/machinery/door/airlock/survival_pod,/obj/machinery/poweredfans,/turf/open/floor/pod/dark,/area/survivalpod/nonpowered) +"U" = (/obj/machinery/light{dir = 1},/turf/open/floor/pod/dark,/area/survivalpod/nonpowered) +"Y" = (/obj/machinery/power/apc/auto_name/north,/turf/open/floor/pod/dark,/area/survivalpod/nonpowered) + +(1,1,1) = {" +aaaaaPaaaaa +ajjUjjYHxka +ajjjjjjjjja +aJjjjjjjjja +ajjjjjjjjja +PjjjjjjjjjP +ajjjjjjjjja +ajjjjjjjjja +ajjjjjjjjja +ajjpjjjpjja +aaaaaPaaaaa +"} diff --git a/code/modules/mining/equipment/survival_pod.dm b/code/modules/mining/equipment/survival_pod.dm index fff971c953..f780d889ea 100644 --- a/code/modules/mining/equipment/survival_pod.dm +++ b/code/modules/mining/equipment/survival_pod.dm @@ -8,6 +8,10 @@ area_flags = BLOBS_ALLOWED | UNIQUE_AREA flags_1 = CAN_BE_DIRTY_1 +/area/survivalpod/nonpowered + name = "\proper Emergency Shelter" + requires_power = TRUE + //Survival Capsule /obj/item/survivalcapsule name = "bluespace shelter capsule" @@ -81,6 +85,10 @@ desc = "A luxury bar in a capsule. Bartender required and not included." template_id = "shelter_charlie" +/obj/item/survivalcapsule/luxury/empty + name = "large empty capsule" + desc = "An extremly large capsule which requires power. Useful for projects all over." + template_id = "shelter_delta" //Pod objects //Window diff --git a/code/modules/mining/machine_vending.dm b/code/modules/mining/machine_vending.dm index ec6a430c0c..8a7c3a81bd 100644 --- a/code/modules/mining/machine_vending.dm +++ b/code/modules/mining/machine_vending.dm @@ -56,6 +56,7 @@ new /datum/data/mining_equipment("Ice hiking boots", /obj/item/clothing/shoes/winterboots/ice_boots, 2500), new /datum/data/mining_equipment("Luxury Shelter Capsule", /obj/item/survivalcapsule/luxury, 3000), new /datum/data/mining_equipment("Luxury Bar Capsule", /obj/item/survivalcapsule/luxury/elitebar, 10000), + new /datum/data/mining_equipment("Empty Capsule", /obj/item/survivalcapsule/luxury/empty, 5000), new /datum/data/mining_equipment("Nanotrasen Minebot", /mob/living/simple_animal/hostile/mining_drone, 800), new /datum/data/mining_equipment("Minebot Melee Upgrade", /obj/item/mine_bot_upgrade, 400), new /datum/data/mining_equipment("Minebot Armor Upgrade", /obj/item/mine_bot_upgrade/health, 400), diff --git a/code/modules/mining/shelters.dm b/code/modules/mining/shelters.dm index 2481634e5f..6bd04ffd6d 100644 --- a/code/modules/mining/shelters.dm +++ b/code/modules/mining/shelters.dm @@ -73,3 +73,15 @@ . = ..() whitelisted_turfs = typecacheof(/turf/closed/mineral) banned_objects = typecacheof(/obj/structure/stone_tile) + +/datum/map_template/shelter/delta + name = "Shelter Delta" + shelter_id = "shelter_delta" + description = "A massive but barebones survival capsule useful\ + for projects that require great deals of space." + mappath = "_maps/templates/shelter_4.dmm" + +/datum/map_template/shelter/delta/New() + . = ..() + whitelisted_turfs = typecacheof(/turf/closed/mineral) + banned_objects = typecacheof(/obj/structure/stone_tile) From d76a0eed041d1fbde8c8ca00aea1d27c62fe65ed Mon Sep 17 00:00:00 2001 From: shellspeed1 <46614774+shellspeed1@users.noreply.github.com> Date: Mon, 17 May 2021 01:26:36 -0700 Subject: [PATCH 229/259] woops forgot map merge, lets fix that --- _maps/templates/shelter_4.dmm | 24 ------------------------ 1 file changed, 24 deletions(-) delete mode 100644 _maps/templates/shelter_4.dmm diff --git a/_maps/templates/shelter_4.dmm b/_maps/templates/shelter_4.dmm deleted file mode 100644 index 5e749afbed..0000000000 --- a/_maps/templates/shelter_4.dmm +++ /dev/null @@ -1,24 +0,0 @@ -"a" = (/turf/closed/wall/mineral/titanium/survival/pod,/area/survivalpod/nonpowered) -"j" = (/turf/open/floor/pod/dark,/area/survivalpod/nonpowered) -"k" = (/obj/item/gps/computer,/turf/open/floor/pod/dark,/area/survivalpod/nonpowered) -"p" = (/obj/machinery/light,/turf/open/floor/pod/dark,/area/survivalpod/nonpowered) -"x" = (/obj/machinery/smartfridge/survival_pod,/turf/open/floor/pod/dark,/area/survivalpod/nonpowered) -"H" = (/obj/machinery/light{dir = 1},/obj/structure/table/survival_pod,/turf/open/floor/pod/dark,/area/survivalpod/nonpowered) -"J" = (/obj/machinery/light{dir = 8},/turf/open/floor/pod/dark,/area/survivalpod/nonpowered) -"P" = (/obj/machinery/door/airlock/survival_pod,/obj/machinery/poweredfans,/turf/open/floor/pod/dark,/area/survivalpod/nonpowered) -"U" = (/obj/machinery/light{dir = 1},/turf/open/floor/pod/dark,/area/survivalpod/nonpowered) -"Y" = (/obj/machinery/power/apc/auto_name/north,/turf/open/floor/pod/dark,/area/survivalpod/nonpowered) - -(1,1,1) = {" -aaaaaPaaaaa -ajjUjjYHxka -ajjjjjjjjja -aJjjjjjjjja -ajjjjjjjjja -PjjjjjjjjjP -ajjjjjjjjja -ajjjjjjjjja -ajjjjjjjjja -ajjpjjjpjja -aaaaaPaaaaa -"} From 5d873cd215619314c44e79f21aab4526805d47a8 Mon Sep 17 00:00:00 2001 From: shellspeed1 <46614774+shellspeed1@users.noreply.github.com> Date: Mon, 17 May 2021 01:33:19 -0700 Subject: [PATCH 230/259] lets see if this fixed that --- _maps/templates/shelter_4.dmm | 191 ++++++++++++++++++++++++++++++++++ 1 file changed, 191 insertions(+) create mode 100644 _maps/templates/shelter_4.dmm diff --git a/_maps/templates/shelter_4.dmm b/_maps/templates/shelter_4.dmm new file mode 100644 index 0000000000..abb85a09f8 --- /dev/null +++ b/_maps/templates/shelter_4.dmm @@ -0,0 +1,191 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/closed/wall/mineral/titanium/survival/pod, +/area/survivalpod/nonpowered) +"j" = ( +/turf/open/floor/pod/dark, +/area/survivalpod/nonpowered) +"k" = ( +/obj/item/gps/computer, +/turf/open/floor/pod/dark, +/area/survivalpod/nonpowered) +"p" = ( +/obj/machinery/light, +/turf/open/floor/pod/dark, +/area/survivalpod/nonpowered) +"x" = ( +/obj/machinery/smartfridge/survival_pod, +/turf/open/floor/pod/dark, +/area/survivalpod/nonpowered) +"H" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/table/survival_pod, +/turf/open/floor/pod/dark, +/area/survivalpod/nonpowered) +"J" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/pod/dark, +/area/survivalpod/nonpowered) +"P" = ( +/obj/machinery/door/airlock/survival_pod, +/obj/machinery/poweredfans, +/turf/open/floor/pod/dark, +/area/survivalpod/nonpowered) +"U" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/pod/dark, +/area/survivalpod/nonpowered) +"Y" = ( +/obj/machinery/power/apc/auto_name/north, +/turf/open/floor/pod/dark, +/area/survivalpod/nonpowered) + +(1,1,1) = {" +a +a +a +a +a +P +a +a +a +a +a +"} +(2,1,1) = {" +a +j +j +J +j +j +j +j +j +j +a +"} +(3,1,1) = {" +a +j +j +j +j +j +j +j +j +j +a +"} +(4,1,1) = {" +a +U +j +j +j +j +j +j +j +p +a +"} +(5,1,1) = {" +a +j +j +j +j +j +j +j +j +j +a +"} +(6,1,1) = {" +P +j +j +j +j +j +j +j +j +j +P +"} +(7,1,1) = {" +a +Y +j +j +j +j +j +j +j +j +a +"} +(8,1,1) = {" +a +H +j +j +j +j +j +j +j +p +a +"} +(9,1,1) = {" +a +x +j +j +j +j +j +j +j +j +a +"} +(10,1,1) = {" +a +k +j +j +j +j +j +j +j +j +a +"} +(11,1,1) = {" +a +a +a +a +a +P +a +a +a +a +a +"} From 4cb0eb34181f7bb4f4b0db9a2c24172b43b362c3 Mon Sep 17 00:00:00 2001 From: Timothy Teakettle <59849408+timothyteakettle@users.noreply.github.com> Date: Mon, 17 May 2021 10:59:26 +0100 Subject: [PATCH 231/259] Update preferences.dm --- code/modules/client/preferences.dm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/modules/client/preferences.dm b/code/modules/client/preferences.dm index 610e4716a4..0b65eddec7 100644 --- a/code/modules/client/preferences.dm +++ b/code/modules/client/preferences.dm @@ -2465,9 +2465,8 @@ GLOBAL_LIST_EMPTY(preferences_datums) // add a marking var/marking_type = href_list["marking_type"] if(marking_type && features[marking_type]) - var/selected_limb = input(user, "Choose the limb to apply to.", "Character Preference") as null|anything in list("Head", "Chest", "Left Arm", "Right Arm", "Left Leg", "Right Leg") + var/selected_limb = input(user, "Choose the limb to apply to.", "Character Preference") as null|anything in list("Head", "Chest", "Left Arm", "Right Arm", "Left Leg", "Right Leg", "All") if(selected_limb) - var/limb_value = text2num(GLOB.bodypart_values[selected_limb]) var/list/marking_list = GLOB.mam_body_markings_list var/list/snowflake_markings_list = list() for(var/path in marking_list) @@ -2475,12 +2474,13 @@ GLOBAL_LIST_EMPTY(preferences_datums) if(istype(S)) if(istype(S, /datum/sprite_accessory/mam_body_markings)) var/datum/sprite_accessory/mam_body_markings/marking = S - if(!(selected_limb in marking.covered_limbs)) + if(!(selected_limb in marking.covered_limbs) && selected_limb != "All") continue if((!S.ckeys_allowed) || (S.ckeys_allowed.Find(user.client.ckey))) snowflake_markings_list[S.name] = path + var/limb_value = text2num(GLOB.bodypart_values[selected_limb]) var/selected_marking = input(user, "Select the marking to apply to the limb.") as null|anything in snowflake_markings_list if(selected_marking) features[marking_type] += list(list(limb_value, selected_marking)) From 6d13f09c3d8a5b667bc961ceb9b8ceaae859593f Mon Sep 17 00:00:00 2001 From: Timothy Teakettle <59849408+timothyteakettle@users.noreply.github.com> Date: Mon, 17 May 2021 11:20:47 +0100 Subject: [PATCH 232/259] Update preferences.dm --- code/modules/client/preferences.dm | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/code/modules/client/preferences.dm b/code/modules/client/preferences.dm index 0b65eddec7..509a4ce114 100644 --- a/code/modules/client/preferences.dm +++ b/code/modules/client/preferences.dm @@ -2480,10 +2480,16 @@ GLOBAL_LIST_EMPTY(preferences_datums) if((!S.ckeys_allowed) || (S.ckeys_allowed.Find(user.client.ckey))) snowflake_markings_list[S.name] = path - var/limb_value = text2num(GLOB.bodypart_values[selected_limb]) var/selected_marking = input(user, "Select the marking to apply to the limb.") as null|anything in snowflake_markings_list if(selected_marking) - features[marking_type] += list(list(limb_value, selected_marking)) + if(selected_limb != "All") + var/limb_value = text2num(GLOB.bodypart_values[selected_limb]) + features[marking_type] += list(list(limb_value, selected_marking)) + else + var/datum/sprite_accessory/S = marking_list[selected_marking] + for(var/limb in S.covered_limbs) + var/limb_value = text2num(GLOB.bodypart_values[limb]) + features[marking_type] += list(list(limb_value, selected_marking)) if("marking_color") var/index = text2num(href_list["marking_index"]) From 957f9ddf23e8015bec4c0dd7c4220ec82ddac0ce Mon Sep 17 00:00:00 2001 From: WanderingFox95 <75953558+WanderingFox95@users.noreply.github.com> Date: Mon, 17 May 2021 12:24:54 +0200 Subject: [PATCH 233/259] E-fink Icon --- icons/obj/kitchen.dmi | Bin 29482 -> 29742 bytes 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/icons/obj/kitchen.dmi b/icons/obj/kitchen.dmi index 9a4af824494149f2225e0b244aa7e7af5e79ee74..7ada41dbcff9c07652714316871e7bdbea45662d 100644 GIT binary patch delta 9508 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 o5J$}V!-z-h;GA-G`<3pdyr&j0`b delta 9246 zcma)hcUV(R6L07uO{FSLDT0C&c}03akYXVsN>d0$K&jGO$e~D4lpb3ezT`&jVy14EK-0B8YRdNRLXBf_C%U@ zX82MC#=SNS7rj!xbkz|ZSoe>yPUuZUiGKw2#^>8!`AF!QY<=EoPli#XwT8;}(C-L> zjf?a3Bb#g<-n_>VeMe5G3H)l$}xFpl4ukRWc_bv%+sCnh_D_Lb& zyfr2fC-_A>4f{&z)LUtjS}>3-zXvX)3vns?UIiA`1uR)w1N0&`K`)hjn4{ahzLR6Z z!uFon(|gP0r+7~(A?>(frUS2x%XtD-9F|@wRh@NS8z--2k2cn!bOxru@^<6i-NBwcaUlyB!#A#!_&l>5ZG((-_$7+Z67r3S9V*2lDV2o#Za-7++G*lEp~7wI z)}n5^4Qi?sAI|2jjy6o7x$@A(7$qKAN0zEGXL2SOFelutaE7MgH;hyskT4?`x!``g zlp;!5{Ut5#ew4E*Z19D?+0&gGXYVhQK^4*!`pJUkPPs1QZu@m`*M{g@=m+PvHZtQP zMVQJ$0-c3WS ztnYBY25f9T$hUrnrS-*$8ve+CGhHQc2@WW{tS8tfr;RWcGzy-yQ{xVaB;6x`IzWQi ziEEF{v5X4xeHr#DBqFsK;!oQ9))PO!YyH~Z{?kd#4FGY2u<}#Z&f7=-XIe=v9>0|x zq4eRp*1hM?W9tERb@kQ_Jv^?|vS-XSgaSYS*vAOBgV&Gx0|DBO-J;~z5Q<2`&>*?N z=HX_Lesh*aM0*s!M)9ltg#;5I6RFLI1_CtYxfp3&-M1M@~Cs&W?y!I~ydjJLO%vda217D34>8t^;$@OFGp(f0Owg zc}4oL?%}0qV#VJ)oFq-gK#X`fOeA z(=Qx=76gSR)$Z8q7Z^nCA(w>CBAMof`_Zj8Qvs_dd9d6{zQP|Krlv>Y5Cu8AG4}g` zr!N=G+CH%61JS1O`Z zrd3eu^Nk&U|8X=2M?ynd$@u6LAm>n(R5R@`GC3&%v$e4?c>I{brEdDmZ?z+SDBk~? zH>`U6zDFrx_n6-3f@TG)-A{x3dON+d<1V4F@wLIj;>qo;j1V4k81%IK%{<+lP8gMx z|LD&rE&88VN<*Qr3N~{uDHC`xTE( zm%C%%%5VkaW9My4Sdy@5y^Byw5z=~Y=%j)!aKxg7uUFc@zF!TCQM-r^y#}0|ggjzO z2tln1L7T(3cjspaJgxhS@243B^*sAWw>I=|A*}n7-;}!#w0O*Br{yT^)LQVEoVDaj z^6DFY`^Ys&eHPU9Wz&6UD%WuQ^)}&1KIB;yFy~JrVbM-M-G4aO95~kK>oY}&g5Dtl zs(gNqsWP8@eHV%?-3L>)dc+%>J^&=ya9*gD%^?At-#rrh@-S+UUJplo`S!feneS|i z7l5uuv~)_ptff3SKJMvRJ&ktqRY%t|DtFe8G$wCKos_(tzqd6}A!3(yS;{KCwDjpQ z_Rv$|e~&wgV8X4u|IGnF9;JATBza=hYA|=C5N(5uR(j~DA0AWHPQg{Y!4GicP2V2I zOAt@k@TZPFbdSopf2{8-*f_2j z-MHmmm%^ZqBll~=1W^e~KfT6mi{p_S3$;vLhBO@<_;2Hx7d-Vk7G_`!xw5Lq^b94KIP@q1L{WC+`N z*Is2-UgnnLf#&uEb(I3qI{xpghnRNQ;snjPGq#y6K-|AG?Fy+HnzPm4FIE0f#v_lJ zUy7seh$3b7Hcp(P>=|{76ZGvH zzxf3}z-gWiGWw!DJvW#3ewp=r>!{E#X~b@Wt%5t(IwhpwMU^(vPB<84vcLfE14tcc z4aC%KQ5w5+`B#Q&2+;|rp(2g+75K5~+9CD9N!w{mhag~sUp#Mml)ZY{$c9WB0+Bi0 zX5~`wx)Rao(pe0dTSSy;STABv&M&*0o=g@gd8)Eh>YxhiWG)SsURh2_Ocl0JQ+nSH9`q zzlHEuUbby#cQD8C$PC(+Om-N%jJ^zw7w1gEg$9RCwsJP|8Sy@WnEFmv`|U9$Ive6u zJ|4}(D&e$v-BDg$NEsAmS$%Np?TL)~OKX+UDtfk_LtI_AdP|GPMog}ZXEhtQ(Bv)f zA%mnXqQ1Y2)Weald~|;j44?)ZpYd_zYz;K4H%zt%aeOfv{wVmcj;Ry+vO5zVlj0J9)F? z15@~yD~$__-In~JER9yCRUsj$X$NaBFR!tN$+5xfx%V=k7n+m( z#zHfj#JYX%+_EwwaRHNhF7Csa%pAd%9X}STCc6R7vIVJ zY;a%vaY2)&L5?OSJjkO5))T=f!{Ww#c%~X5`g!4UQ+8ZIa-_vNzAT=&zB$U;M3IDS z7fU&%&K6^wGw27X{z+B{%#8oU;1?df9Tym48>J}c^W=xe?=!*;Thay#LeY9|Q`W*8 z=R7evIr!_>y?I-Ss676C3aT6+rRP5>ytTA(1UMD4PJoYwKhi#xNv?LWdj|7VA+e z&dDj+oT1=P_#v_?FI5iUHyt=CtV7x0=Ve z$|aZw01dhsb@X*3w{r=`1XcN}2*%k{(lMH;&MeEYLkRFbLE-62nbk_iYFt*+dD4jM z+d}68uKxf0Lx=b?=Lv7=baGNPfe@mf#szvYo|Mx33rmm*xc2U^p>ZSSRza&C+7 z#q`S{xoFS?<9{irLWZMq1 zGfb{-;`H*p9>Q)5a@Mz)=5J^HrPVT8K#X0x@tEiO6ac+W`L`L6d~=C&+j)KqP6`-g zQVOkUK3ph`B2_R8m6FBNwUCI`^a=-&TkP?l4jjwJ6Z)3}+&1-aJYH%?e>AF!;OtCjDQwFObnj>SgCzER%%HH>C}yCARM*1tR)c7o*M$R5X{h{Gj1_< zcdCXu>Sp+s^Za7^@uJEed+o~{I`2*DW=D^j0geM{#sDCoCn!s0cTi<7!o6mo!AlC1 zC3Q+6#!fBm*baf5Bau-S?OB%3t~y^6TI<)rnFXYUh(o+?W{&b=hX-2sQlvb@R(>+P zf~JYV8(-duj1J;x1dcvm8hiKvqMSOjxt~MrTzXn}Q$+IHS4!Og6D8xdf17yq^~~>S z(O#!)K*-H5>M$(5B5d9iiPC)}EcWcwq;w9AMUqe?6s7 znCl;}zwCxx$q-vx{=M_-SERCZH`E1dRWIepGehf*KTv*?Yjf51qAmnmNx?K*+u%c{ zoCo475ScDBOKCaqcuAL-<_3L=zgZF%-F{$a{dr-)l~@^aJiAk(xN80Hjiy zIL@9L2kw-onz(TM5;G)n)#brMOSJ0e&pU8=Cv#1lHZ3SsqWO%1g2-uK8M&9j3`%im z2GC@r?Zx(>ce}ITFeJY@K>YXm=rpfRC3j3{?5;o^ceaoBoU6=StbjlkQI{bV7A7-xk+bqN375A@85vi=g4}2yeR=A@nMhpuxf-&~U)k=kp~<42dgo0=D5zN&KtKF5?7I3^M8eg#K!UQOEI@Rc&NHkb0!tS|3~Pq z*sZqWkMyqbalt=b&U_d({s;xq%b%rwz)qnD=Ld{W$>l`mf&>Na>W4pQr-_Tc6dK>= zaIEOwJ_q55ji$(M@dvcin3PQojQGyz-Xkrmtyo!1>xXYv@k7#qDVY{x_gn6Z2UX{h zXn&As!hVp(LTsQuiJkYBUE5_N8viLyfUWFA`@hAD2QMgr=s&y<7-`yH6gtb3LzF6v z7_cHOhh^!&hq<#RW%TWrvven`=Sa{iYx=>!W_$YCF4Y;GByRBvm1GwW$3Yfbd;P%< z=!I*ug;HBI1oP7&%ARTZc8VP9ycZAhgGw%wHUp3q64EVz?3zBEg%r_O1#QHUG{1Z9 zWcbGzJ(`8fC6BG$3J0b8TR-#pm%M6$9R4Ar2RtGx7%`F=`4zC=91Q_tFs~w-b!~4Q z+_{^yqHlZa! zxK@r-7iz>vI9i}S+7GVJWbnv&W>InE7oYwQ6Rq>M@&e3*{XX@+y}izYTd`k@D+6_q zGm8xaz?A5J7&w+!6=y{Lo8J4{Ax^{$B@k4>{SkxZany4udr9jfc%xw3G$!rX)BeA? z-84V{pH$$g)_;u!|Ge~IOhn7fo+gV}-yxEEx&rC}R0f)4UU!Z9-G!_2GLi{|sTsNp z37@eBK_C|bwA56dEdp0D(P?1boQE{N6{?*Ei&L9u4=n{-grNA4Jm^CEeQlw-H(Lg> z!)+uPgpkVevp z?a=UWNvw!|@Jl8`9eiU3U?=-FCL%1Okgay11jTx^JIfT(;$K-=S=`a;W)l&n`T1RD zCf^_1-TZnV64vZPB6|IE=MGtu+k&(??q1!>VMdU<(db>5z48DO`!Y0jsARyfBR9#+Na z-C}elM6U7iO3&jf4Gj&QeSN_KS{zCU&!2>2FwyR~2E})w`XU)jEr)wr?%uu29-)8< zwTV964xYJ-I~T0Ue|3mwvEvDyNn_!J@CSj0m#TA)_efU1ubnA0v$pX|$^E(Mj9 zalQwG8g`q&Na3G~{d8??0}<0>)=ZfCy#FxmOIq0~p>p>?=?>JoUl;3gq)_#W_-i%p zBmBg7(!(3=NYECa4MyoJwe#xlh&zZl@b@vb?+RT4(c|#YkOahT{nt0G#1XLAFe?fg zZ+#2B@}8yfMU?{sL2!)$PGYv*yIJ*|dLJ+)hVxxSWC?8dc4U_zAe}Ih>%P!GjGks% zv=rnX3=QDU29e!Ng>^*k;>Xz2nXYJ|tinPDV`F238s~2tF8Ic6`3B{=rT3Z*Msqe$ zgUyF>7oFsno&54GLYUkToJWFFrs09Eb<+ja)iUGWL!+ac-i+Y+ki#$Tkg>}GDRxCY zLB~+yh2vXB0x0%)*zth`zr*Kj^{;!qy}h5RQJyPbWIl?H>^)~x36psD82J(}$OTXs z6zV-nynWvUrGO1aD=7_UR#e1B=nmasymYSKkeV6XcE&^}s=XhdFa5!hakpN82*g!s8<(O8q2cG-iUA!)kuz7jwotF^h>6wNE5Ls;;?X+Q*drB;O*dCQm zG9$WAG{0h~e!QUQ9%M9^(cq-bV9PUV8EdupdP&{aaL&EXE$zJ;62N4KLBAgy+&*K|$rAl6sQ*T)We+ApY!ZBfaF*ZKFXSF13wNB);i*dHS zUHwslgh~}0fh|h0YWvb+?0G|kuHV%yS z(gnCdkz6~g{X!Gor20Te~S%U{rCQQ`#;P z0Q3rtg6ei^AG-N0JC%!Z@fE?`acpdC?MthU6Z%$$#Vf^3mU<$o>zgeiWujwi*!gb- zqIL)PV)rksu)7j=3AA8k51fM@w{qtqu|UwSCi^lguT<&FFf9s0I%li)@P1^JXwrr-y(^ z@3QZw97LPWg>Lbsp**u??~0KCy|>toC5x#G9K%h4x8>zIV`F3YJQX1KD28^A7Xz7; z1`ymxG}O)ql2cHi=6*Ch=+LdhoXP8F##(Fw1%7wOrVzjH(ABR8W&o{F`h3O%sup3K z8Ex?3Z-&Om^Y4fy1d7<{=TNB9F^vMf<%l2jiT`m|L^QM%t}iSGCX|bXda{0ab~^+T z1XdvURyATuQR3A;KIrTSz3XQ$%_%1*H!w5fprzig-{tbKU3@u%Gj}(CxaT>Yq2xe? z*o!V+$GYY_`uJo(J5_-;`}gJk9-X$$!}g)TZ#)uU)G=2yh2#|mS=_qC!MkNE+;Vqt z#<3VHaR z`0>+I^kn&sCEQ>fJU@>Qir1Y%iChg!)?RUyS-KfdBbmkvVn>KGj$HEr#KlvPxCuWq zVuV9zpEq(L<%&yxvHDcmu&?XX*#=K+zt2p$Q{|ZcS{{m3_sXz_fLHP4XCkJD8^bv{ zIRg##fZcd$@!~!Y3sg!&0UH7$1au84XTGgvlyiO}u6dAA>y5myVfk8JLDeyzc5%I%9 zv#C!trCEWuY->$Pj*ai@>lLnthig*qlN`JE8@n%FTCgx;Ez(0JIA(JNd~ZKF1U7X{ zOu`oy%oT`xEqRkMpzE;Uh_#!n{Ik#)C-a~`7TG7|z<<1dUU>WEa9kEQOuV6iJ<6Ul z+_6@CK^@Y-eTpNx@Onrl^-@E$Xy-Lm`^wcdg{xLObo2%Wi#YdxgliA4mfKHCLz)7p z==f$1V4EdWbZqI3jV4OkK*1llc6WwX(l0jFuApZ>y#N8@k¬A++wrYG?>-kpIYs zSDe4|G)%=2r_S-=JE8Kx#^d#;a;5Pqia7@^z(w!I;7qm;-5dI_ zP5)h*cWKEP%kP6dy-P+8uMLf0e@8O^HJ=mGn0-<5%8a{#v;N%Vy|SBdK_jy(HxR?& z;FYkx{Gow3@n<3!*E@(-7{V!r`=15HZ;AifJtoJmtW0VUoL+3~88syEQsV=bhS|sm zdTQHxSQ{bNwZj=CVH*=4mYA4`smd{G5C9KdW#1|`qo{}xY`fM`SXlV!#77X^eU7QX zKwx;;>p_pp5Cm@CNjHrd$_f~6vn>5VxixjmQwN%(o=;2?G`5G9G|7lR!uuk1E@)>* zTUuHQ5-c-OC?*r`tY@7dh)P<8y+6+(0riY+eNjT5F^q|@vg|p27nZ%cdFXwsPar&- zE#l!HLsby>-|>J*n7;0zqlJY?Ce3zVq0%}sVzQ?@3*+L1Wp zxYxVRQ{ZdPb{I^%a7E+rp-e@c=NGM7!Z3%djce!aT?XBA%&iq+8zG}0Iy!|-`4W!S z89%rlhwYtDP>q#Pq33?~;(~hDK_%qZIEp$5Y+9=hH^6tHEPr@ZrX22qUl`3nN4)U%hE;#BC1ebYyz~%}G9%SEcz3rsWNhM%{~@Q< zy+bD?mr{LLo#)=SIw%`1=Nt)()rSqNoeQWAj)Jvb5EpI{sjB#0;92YcpQ!!Bia|8q zu+Z~6iV5|z)U*5j4$kD!*IiMa!oIW|m8H&aJEZxs ztMTI9nSbK6CqVOlG*iY=S$e+Sd+YTb1!K$rN4RDtPy}~_2$xawtj@Q#JW^YK=mCg6 z0qrwjHsF)Kz7sJ&dy{g57PJ?P8p6WPZqb)4i`kBC08GTe@5p@OP{LLjZuPdN!iAwl=b)5|k4nZ@p~PdV#Hj_RO=ncMZ34{uA@{P?iq9 zRQ$L40U5}%=g*t1$}+ODDDw4D>i6#l?JQgN#07Cj94q4!&DM8d2fR-VY5U7lR6Wi( zyu5&RoXay>X0;FIWJ4W|AF>ybU|Ld5*r{7I(aS$--P7^_GWRa5%*$I4Wg$(?eL5^n zlu#OloRIW_0zh=b=^%24^y+N|Un6oL zl|tphMC&s$=wE-Uk1|P#5mF^BsoK*7Xc}iy7tij-!!+k~1#LD@kw5_K6OmGd-u|E6 z4?p{-z9@J(|1<*uu%s7eDRQy(!N1<&-SeiZS!A68wX~F!E{P4EAHRO+-7$s}3B_TW{hx1bOh65@-Wb`o5;ovOUCo gtxLNadN2o&`J^uJ&8B>~3ITsw_qElE?wJPs52H!z=l}o! From 6a78b3555f4b301751a786493ed5e3109c368d13 Mon Sep 17 00:00:00 2001 From: WanderingFox95 <75953558+WanderingFox95@users.noreply.github.com> Date: Mon, 17 May 2021 12:26:48 +0200 Subject: [PATCH 234/259] Inhands --- .../inhands/equipment/kitchen_lefthand.dmi | Bin 2196 -> 2329 bytes .../inhands/equipment/kitchen_righthand.dmi | Bin 2554 -> 2653 bytes 2 files changed, 0 insertions(+), 0 deletions(-) diff --git a/icons/mob/inhands/equipment/kitchen_lefthand.dmi b/icons/mob/inhands/equipment/kitchen_lefthand.dmi index bd3e1f779fcca6694d9637cc7ceea61392bf1053..af16e06a3902626dcc012e1c7d1b8bb363a180e0 100644 GIT binary patch delta 2186 zcmZ`)dpHyP9-m&c>J(ikV#hhfDaGWvEb}gxH(DgQX71L^kXvSBy-|*$x#lppaEQH8 z=02B7u~Oow9}-{SSQy= z%YX>Ka7gUX1z)Gp+Fz_L)ph)FKuhR@w9PoT)0R-I zt2%`Q9a=ZiDYMWA@AW3WNS?&Y1(rjC=#?%pLZh-Nt)r zSmYi&QbN=~4^^0M$nVp%eSMBW=@{7db5IKhAHV(zqvM2RE;T%VkbUEfX(RvuJeHqD&R-T{yhZ=$@`7YMb=BM z`jA6gwF7qMVGFH1R)u~bdc0k5kF>M^PVfQ({(HD%uFYx3rTN-XL51DKua&eD+pu6o zHpf&+{4v7BS=V20C)$8yMosS3uy<3d7eT>+=r9fYaK9EEOP!JQ6V!49kazyR6NTtF z@&umaZa%SWDq+@;Jm|@k@!{h*rW6+b*IK!2G=L*^h5g=jtC_PRUSu@-V6jx^Z4VER zge4SF4Qo4Ha&;^-qyKZ)hllfeBzMdfRaCdm8pQXt&56ra4maUm3n}i0G!ti}V=Yvs zCj+nAcX>+oHm=BA1dSE`)UyYT63DTz@t!QX%-0Ga62R2{mc8N3M344r>~)PX&_c|& z60Pnl-FdxuEd3d$_9VI6Epr%Ne~C3H+AIwP;5Bpfys9JP;yuBt#UTp;j=h0=e7WPa zo8t@ktfIqhfSQ_GcE7FQ(jmPI#-6D<6(L;3Sz=x7}F|huI#zr-x z*){#OXk!gB?Q_`Qu9Z%gzihj-sGb=N_J_H-xrA2D;o)I6ybqG` zrKCWsqM<8!VW8Be2Y@IW|{Kl{bWE3futK^G=AS60G-njF5o;|GGFY5=S7 zvgG^vTW^SHtM&^HFaO7bV z_9XkxPr%RJ<@5aRkGir(@MQBf`bNYp<1wmBP4wbXxxV@>vn_ne@WX@ND@m2rWXh%H zAF98B^}gfo#i4RC8iH)06chWUEjn|~anKp5UyC6cd#gvOnM_$1aiTAr4ZPWSS5mjH z&eLvW!b$+xe~|9J{EV9{$>0{RUF-?SG?{0CKzh#2<{i~a6pJx_@B4pf&Gxi26d*uJ z2lcMNL^H8X8KIK6EzuXA@L=`ALLIJ=vUIi-JC)pg7R(9}8vymI%0G47WrhDdKVZDa+Iae>M z6|;O7Y|qX|)AIasYL_=ztkpd~sM6LJJ?oDmssH9mIX;aNwPe-Zx|tGO0#?#MY z2ej)w?H=8cbdqIY|A?adNXWfeR1Q;^Da_!YZuK>RvqD4 zO61duT>1WT=g$Z0UeF>cZtmhgL-AFNlJzHZVxD1w^fF_OEsCJv`1rzgLzGmENByAU zJ+ugmbD6PZR}KHY>}8%~zi_6Y!zGWv{g-md@vs=6=>I9V^5`YOocK7^ymEJM`?Nwo zF&JLX#BKQP;UwhlF8lf$+`$&JWw?d>caB_%aZ!gfQgJhL#3cg;ZpZk@raqK60fvk_ zT&rRQt4!%Bb+B~qbfR(yTpU+{h1s$By>$i1I(q=aU~o?NKC}K|8Ox%meC=YT|Eiy& z2=s<81pTjS`ATp&i=bK~-Gb?5KHqbUl$MdRSKDowg?FqF;`@>cFJT8*oq-T!>S~(O z<@J@{PfNI9X?g+oeE_-Qw^aUSz7p-IDEQ52Z$jq$&O}1kLa!3~^wVm+M>UT?dl}vL zywsDF5i#3qr(sQITl33V*<4gqO1rQ#*b1)R^kL6NP|RIOOS=jJ_?e#r>f9!E?`_*? z8tM9?^c*a9y4+Syt{DB{l@LJG2@7yu>x-9+B0FeNOX^4kvUtIruc60R{OB)NHacmA z)7!cISbXfd?T>^s{dnv`z36B?+5<`wc&0O literal 2196 zcmah~c~}zI7RSmhTbyyGCNa(T$|aZLr7%s3=2BUqnby-tOU)ETG*J{msnK#8)Jk$m z1RO0)6H&-5P%}-RX)b{qqGpkbxR5(0IQV+=z3-cE-uLbw_uPBV`Q!Y~?|1IKd(QRb z_N}^G0RX^ums3vX0RR={5%69^O}S4UuRfY5dan5KPBFJq zO;0>}sHhm)aw$e(cLqyfPA-KM^^>PvW}AHCBFYX8!XYS! zg6>-3<2B?o#*dwJG3-1e!tZ3Zj=%~dXCEqfOd`epoOr;%Js&A$Z-0N)+|T<}f&$*2 zrXKKJbQ<@dSZl^RX52O;rvU&^Pj_)T?irgqJ!BWGH?UV-T2*vm@V4%r@5mfiiH>2! zkD8jVwupT5nl-_QpUHelg`oOI&dWzc;H@|<%Lbtz{s)Kq2V!;@9ppdl>X|XVZCm%5 znki#aAoDV-vHnMp+2x@T9LKk@R(qp`|5?9s$}y&`ilh4jL-hTj3w*A#UDDe;*Hp)U zB~v#-Sj95Am21?2v%L=E_m1Pea=V>vM9qRHqK2Uxv5RBoN!qUzZ9J)5VsK)h4^n@5 zhhdWR^>|jJoS6p2+Fr+2?A}|zl$CigAnx6&T`fl8{-1+dCgD)?;ZA`bw|&!!VsU4I zJgd+!N!z#fsMgMzv;xJka1zljDR%zRS)+_Guf@93;1EUFc$Yx!T%bymK*Y}RT`TIJ zQ$}0E3GCbu+(mi`?6b4`?$?I=4Q;;0T1ymz#tE9m&*? zXQlzcOU@nTX0mOII@0{HzD2!1n)qjXljynNM1oTB|KOwNChB_A)H{nKZKB}lnqXMp zw{S42b$`*EqUGYajSsVaar-_C(PYoF+of(yiR0#n3|lwk0G|?M9^IkiC}*Gm1FB`U zwLTLi3)9on?#R>x>cNWfyVhh1g>rr|tF}&}=Di+k<7z~5VR1O{BKMe>7*gxC^puv5 z!Me5=s+Md(*N!ZV*xvEAJM0t|e=u6cv#fY}6k|%RgqHiu_UpyT|6KmpyFGeoX=#n{ z#xOFYL+$MDdRSgIJu)2vGmF<4ZD=?iiO1_zR#u)sIHJPBUK6tY&ajA;uCB0DUggPq z`tdB6Ax;c)?lM{L8FTWw=j4aP#Kiqc+G+Rh5#}yskt5w%K+*89FYCn%-QK=F97l{o zp%UJueEIUFV!XdOJHFcqoRI_CLbj*Q*Of9$OYdkq6v6h^(aLX#;c9|bh@CnYauq?!*_F zNmRqVX*Gu~eIL@P;{!%CD)3lY^V>wkje zt~X*W{}=SK;P8=M$GV?SM1v5;^lWyGcf^eIAJ`==iOJ{cZUmqfyp`h-01gCJxsmO8 z6;`&s5+$Q$ZK|E8+?d4j?w|}M(v$&V$%s`tgXASEUl}Eq9&PimTp{V z&|zPXvFMl|eb!4grXyKe?vSp#`|tpCaPqs@iTPF@t45x@DAn>m98$jqdhwS7ao z<+}ms8tHA`)TWi6(sjp+JaE*0w#sU|OxlQ@!Tuj?F;uQaR6e3x;{VPQ1`3)Nb=Ylv zTl*C&n1ztXO10lWQ0=MEXW~o#?R4bFC4^4!i%fb;sIm@V<&;bc088=1E2%Xm^sgqp}6JG+ZI}?n9f)zzDF?M^bm$oL7ugP zE16}B32v@#>+!oBG^z~Nf8!~ss#vmt1@Q!sn^SwlfxBNu1(;4A>5}}L)r9uEwN3rm z36<#yg6NuN>;~6M$eU0!bS;94)1O_BplbaUqfMgM-QMYP^r<&|ntHfpxD9 Or;D?zQ>nw%pMM8r>owH? diff --git a/icons/mob/inhands/equipment/kitchen_righthand.dmi b/icons/mob/inhands/equipment/kitchen_righthand.dmi index 9e9f21b0f51408294b65afd8d84c5234c2efec51..539ef42a19ae252c0aa371fdc661387f6bf0cfe1 100644 GIT binary patch delta 2158 zcmV-!2$A>t6WtV$B!9wsR9JLGWpiV4X>fFDZ*Bkpc$|%pu?oU46h-IcD=u{{Vzjtr zkrwHozaVLwnn!C=l2q~U9RzhUqJ~7~-8hoHUM8{`XC3(fiGs7hsC)+DJ``M5yl71_o;{;b$@*6C3_AtCb5ab{c$lZ%iLA{YBy{8(qZ;Lj^m=Mv?q z<}a6rf|Qg6>wy3O306r&K~#90?cKd^R7VuX;j>mc_ja+(76c(W+nXX1aug*lh-BAD z?%joonyanjiaatx3JsF$r3E1nO_YVCqCgaGDBz#CDPYW)y|#Dl`M5Lh?~yD4F?(k2 znR$KpBg~*}TLYkJCHDXTO(4%$z<^C`O{?eVtV%csZA!6C@=cPuAQV0ZQFK!ZEvi#fBe4DZf~r$ zXMInfzfz39mKx`M-M@do$o@a)9CwV`vF0;q+p~YT$9&5yg%snjr3N&e`%z$j(UtNv zz#nJq5BtQd;p;;mN_jn?^cVe7*EshM06^XNpMjHc1w)hn0uGb#0tA1X3xHBifLT_m zd4;Nzs}EaSTUGWy)x1L0Nj2WiJAm3kptQ{&>+u#)Y&M%ohd`(>Oc|=30nju}Tl&es&SmD3d;YoW zFT!7({;yR-AXFH-zvmt&b_kq%2hjILc#*4)Kll7|*FQ_wqP%wPnwgo6$Kz-x@%B}y zF!aCwtj7$kGXN%&e@RtMTy{RW=byX&MGg-SPyL?Ff7)fQhx>l__b;jw!i9%}Hciv^ zeL;2!HSXN=&t3mKM@L7k^5!=)8;{5By?gggejnm`xI2OO@86&N+2P@#&1SRU*O=3R zaV4|atX19ozR+Rlhk$!MAclqC1?cPZ(Qm~XXYTpuu74KA7tKE&kLP;fHfgBq;T|XE z<~QRG0FcJ#lc5G9li&k0fBWvd|M=j+gHxx5+`W6Z_ou+b9&?G;WGRF3#M)Vtdl*rq zm|LhCiTZHi$v}I1d#Ao(I-T}*!KWH)N!Mg)gYm@7thx|LF|Uv{67}KSI{-7Y>2!MX z>%G0bm}3dTA8(2pC0vsw{a|MQRCOodHq+<1l~N-~9~OBHU~qhVe{9Fc$Far`lsDFx zKb4ERCQE5&znNRaUl(<`{Ehi}Ze`R+)Q5#$1RRY{ddX3n9Xxnz7uif32Uwb*CAXQX^L%R#%%*O(EcK z%+=L6{f|*2RUbN^IRf~LuZHvCV{ZPKHFEXAUwk$6Kj!9-StCUsI2{-ew(#44CH*8w zG1gqyL#^&*(Er782LK4;gFusz1~il410jFS1;FhJ4um{Qin)cVk*f~}kKR?={}giz zRU=g&I`05#41tn1f2_w_RE;4}(&mr#cwOcKz@0`~QwZEna6WwK8oB!5>edtjZZ0wV zAG$`WKFkHcL+?o98bZL|m=7Zz5gnsOu0Aw7tD~Aiz~7k7&g!U?8maow`4r$`h37HD z$J+ccYvk&KzxZnDf2_?Pvqp+Oa5^v`Y~i;7OZrK``SA7By$t%lIPL%dVSEq>ld%R9 zli&k2f5g4~_mkwm3Y%iy%hbr#2LeFc_Qu-4Exy{rz@O*##@e7yHFEWV0Km!OYyNyw zZ3y`Di@Eu)QX@wn2msj2e?PTPUVX6f&2_6W1l*>eP*Vt$xcQxweV7Y?o#w`O5XfVsy=i+1@ISNNvFbo>+9L=@iu?V8oB!5FTTmaX7J4u+xEuVU~;f& zIc9M-f65xM`@reII8)5G%u+}({?cnK{5D`ocLJObABMl^N_iUKk2Cg%ePY(|#q0xj k0Dv$)2n3U#1|AmsAG2bM1Z4ue?EnA(07*qoM6N<$f;44cIRF3v delta 2080 zcmV+*2;cYJ6#5g8B!9hnR9JLGWpiV4X>fFDZ*Bkpc$|%pu?mAQ07U2HD-KETGps=J`TaXwL^ zq#jgw8y`fF;E0@^CT)h>tW88or=15!N=fg;U3ze^FWXx;Zhu0f(Y@TH{A}%ZVY7r* zZBngpVMmw~+BA0kvoE8hlaqLYgC!qPqHOT94d7rbVOhd{QWvx1!5BrIBd<#O0`4Do z=1v9$KL7v-_(?=TRCt{2-91lRR~*OjW2>8Y7`%9(QIrjv43!XV)iR_Ko-MJXF3n4@ z<++(MMv_HBJ3L=l;+6 zap5{S4Qs6dps5*q00814lkfu|f6X7e>yn=Z4l(aVYN+-BaW&taUN(xwm-`|t&-2~s zWus0tl=^`BXd3fv@r@6<*)G2F{CsZyRca{o0rk=}=4#>YZMV(j^QFmg@fDkD^7+#2 zZMVJ5&qa;g`+)knz5_VqCde;~)jm(u1h z)TIxj(J1NO7h=xCMQz{XzwsEbE{o5F6gPh%b{|Hgk^SZ8Uy~1knDcN^JH+^>J_itc z@wt%l<}XzBA(ZiW+<5c$b+CFqy?OiEjK^ayKlJroJ4hd_wUw`(%{BYyADeb(bIs2B zJ#~JC7=JD`?s^S}!zBA3KXcqZYWtc`!`j(j+ zfO@IC1ITUhrMCHfz272rb6Eq+%q8~xL)M=PfCmpATn{3|0DLRvQOqlqI(6tn>T6)t z@yDKji273ju)n|GsKerOp}Z;g_xHUW;_0JK%s#AgrhOePI-l6{4_bfLx#5S0hjus| z+HSX-A--nxgP`edc7o)BGfoz zU5{9GQ~7q#*EnO(-&cL^003cp5D1gN1}&4&1|5F{03ggs03011@pp>@30gS-ip@_5 zTyb?BxSj}MrGr6=MLHM^8b?P*c4K41Y;A32b+F_j%A0mD7%Y7qT)oe#oDc;ldc<0sc_iyz1`1rWC zy$ydg)|9TveU=IUHvdhouE%6DvBns4c6K)P-y(*<_1yaXeytaKzu&jV$H(Pg@-^0E zuE~9t`We8pXU}f@JDdNeWv@r^`-}hozB++4&d<-y`T2RI@{1{r)#qAF>YChTsQ{Qv zCXM1NlJe#^#(fyh3W3{oLh5unN%c0wcvDKdCbO*c6rczJ)y;2=pD?@~0)xSzF_}zc zuQ5Eb*792L)$8?a)vtg2__6ZWmwmZ@zg1p)dwaDROI^m9$~C#`wbEli0BPf+z>}W_ zPLmJ>2Y*cmKx1nhVH{zEn47B_k^1oOtAl@H)D0oT++5WN)raakfE+_0rOof_{pOTo z2&A<6eZ60mssMOwjL9nmzRl%vLN%iF;rn)b-I%;WpqNWBw-joG>ceyZ*vW4urw}M_ z%&WPjQ6o|xTDzl8P9ad?vxJzNs~WNT z@ao{NZ2KQ#Zmw#C>O(Tv#aw)z5AV80 ztUk2cKdc**R|phyDdv_!jZl4<3V_jWtCLd*lsD#Rx7A6dMyx*UjvjV$3W4&*+#Nma zq*5bPA2uq#1t>4Rlum`ct$cR7ug&kXMyx)R7hfLz_qX|d)(FuDP6q~r&HWfKrLP2> z51&unWzhfmlb#1953uiI4*+pB8jaXPKt$XDlV1TJe+U3TSo8g-uabW&Xoz_)QbV;5 zh|F4R-ko0B@;`HZg_!3mHDdGu;>wHfr{Dj!xrRW9`MIbOx)0FSH0J8|^W?*Y*?P2Y zMlVjYyB&T1>8l;RI5k_3*3HR>3or9?Q6u+0pnjUh7_+mv*4W!_8)Hm%i?6&fjWK3# zyKQzhf7hJ;8CX{}a_$4_>G~-^j*Bm)&0ol|52&vjj{$R9d?{}JLQZ`^y-j@%Acw`5 z^5!q(&#8A4vJwJRyV_e-1VHE5XFw_ed)C2b~irqGtC10000< KMNUMnLSTZ`a3OF2 From a947ec1322fcefbcae94bf57dd0acc7311e37428 Mon Sep 17 00:00:00 2001 From: WanderingFox95 <75953558+WanderingFox95@users.noreply.github.com> Date: Mon, 17 May 2021 12:30:01 +0200 Subject: [PATCH 235/259] Recipes --- .../recipes/tablecraft/recipes_bread.dm | 9 +++++++++ .../recipes/tablecraft/recipes_meat.dm | 10 ++++++++++ .../recipes/tablecraft/recipes_misc.dm | 18 ++++++++++++++++++ .../recipes/tablecraft/recipes_pastry.dm | 9 +++++++++ 4 files changed, 46 insertions(+) diff --git a/code/modules/food_and_drinks/recipes/tablecraft/recipes_bread.dm b/code/modules/food_and_drinks/recipes/tablecraft/recipes_bread.dm index 5161ff349e..98a347eedd 100644 --- a/code/modules/food_and_drinks/recipes/tablecraft/recipes_bread.dm +++ b/code/modules/food_and_drinks/recipes/tablecraft/recipes_bread.dm @@ -3,6 +3,15 @@ ////////////////////////////////////////////////BREAD//////////////////////////////////////////////// +/datum/crafting_recipe/food/bread + name = "Meat Slab" + reqs = list( + /obj/item/reagent_containers/food/snacks/breadslice/plain = 5, + ) + tools = list(/obj/item/kitchen/efink) + result = /obj/item/reagent_containers/food/snacks/store/bread/plain + subcategory = CAT_BREAD + /datum/crafting_recipe/food/banananutbread name = "Banana nut bread" reqs = list( diff --git a/code/modules/food_and_drinks/recipes/tablecraft/recipes_meat.dm b/code/modules/food_and_drinks/recipes/tablecraft/recipes_meat.dm index 17ea36a160..2409032760 100644 --- a/code/modules/food_and_drinks/recipes/tablecraft/recipes_meat.dm +++ b/code/modules/food_and_drinks/recipes/tablecraft/recipes_meat.dm @@ -66,6 +66,16 @@ ////////////////////////////////////////////////MISC RECIPE's//////////////////////////////////////////////// +/datum/crafting_recipe/food/meatslab + name = "Meat Slab" + reqs = list( + /obj/item/reagent_containers/food/snacks/meat/rawcutlet = 3, + ) + tools = list(/obj/item/kitchen/efink) + result = /obj/item/reagent_containers/food/snacks/meat/slab + subcategory = CAT_MEAT + + /datum/crafting_recipe/food/ribs name = "BBQ Ribs" reqs = list( diff --git a/code/modules/food_and_drinks/recipes/tablecraft/recipes_misc.dm b/code/modules/food_and_drinks/recipes/tablecraft/recipes_misc.dm index 93102e1ad0..eaebfbb44e 100644 --- a/code/modules/food_and_drinks/recipes/tablecraft/recipes_misc.dm +++ b/code/modules/food_and_drinks/recipes/tablecraft/recipes_misc.dm @@ -47,6 +47,24 @@ /////////////////////////////////MISC///////////////////////////////////// +/datum/crafting_recipe/food/dough + name = "Dough" + reqs = list( + /obj/item/reagent_containers/food/snacks/doughslice = 3, + ) + tools = list(/obj/item/kitchen/efink) + result = /obj/item/reagent_containers/food/snacks/flatdough + subcategory = CAT_MISCFOOD + +/datum/crafting_recipe/food/Pineapple + name = "Pineapple" + reqs = list( + /obj/item/reagent_containers/food/snacks/pineappleslice = 3, + ) + tools = list(/obj/item/kitchen/efink) + result = /obj/item/reagent_containers/food/snacks/grown/pineapple + subcategory = CAT_MISCFOOD + /datum/crafting_recipe/food/beans name = "Beans" time = 40 diff --git a/code/modules/food_and_drinks/recipes/tablecraft/recipes_pastry.dm b/code/modules/food_and_drinks/recipes/tablecraft/recipes_pastry.dm index 5343595f89..80f168fe2f 100644 --- a/code/modules/food_and_drinks/recipes/tablecraft/recipes_pastry.dm +++ b/code/modules/food_and_drinks/recipes/tablecraft/recipes_pastry.dm @@ -194,6 +194,15 @@ ////////////////////////////////////////////OTHER//////////////////////////////////////////// +/datum/crafting_recipe/food/piedough + name = "Pie Dough" + reqs = list( + /obj/item/reagent_containers/food/snacks/rawpastrybase = 3, + ) + tools = list(/obj/item/kitchen/efink) + result = /obj/item/reagent_containers/food/snacks/piedough + subcategory = CAT_PASTRY + /datum/crafting_recipe/food/chococornet name = "Choco cornet" reqs = list( From 1d56b9cedae1bb512f6d1e0cb7d5b52461aa66ac Mon Sep 17 00:00:00 2001 From: WanderingFox95 <75953558+WanderingFox95@users.noreply.github.com> Date: Mon, 17 May 2021 12:31:46 +0200 Subject: [PATCH 236/259] E-Fink --- code/game/objects/items/kitchen.dm | 36 ++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) diff --git a/code/game/objects/items/kitchen.dm b/code/game/objects/items/kitchen.dm index 417fd96c85..6abbb687a0 100644 --- a/code/game/objects/items/kitchen.dm +++ b/code/game/objects/items/kitchen.dm @@ -100,6 +100,42 @@ "[user] is slitting [user.p_their()] stomach open with the [src.name]! It looks like [user.p_theyre()] trying to commit seppuku.")) return (BRUTELOSS) +/obj/item/kitchen/efink + name = "E-Fink" + icon_state = "efink" + desc = "The E-Fink is a product by Mending Solutions Inc. Unfortunately it can only mend sliced meat, fruits and dough back to their original state. Unbutchering is not possible." + flags_1 = CONDUCT_1 + force = 10 + w_class = WEIGHT_CLASS_SMALL + throwforce = 10 + hitsound = 'sound/weapons/bladeslice.ogg' + throw_speed = 3 + throw_range = 6 + custom_materials = list(/datum/material/iron=12000) + attack_verb = list("slashed", "stabbed", "sliced", "torn", "ripped", "diced", "cut") + sharpness = SHARP_POINTY + armor = list("melee" = 0, "bullet" = 0, "laser" = 0, "energy" = 0, "bomb" = 0, "bio" = 0, "rad" = 0, "fire" = 50, "acid" = 50) + var/bayonet = FALSE //Can this be attached to a gun? + wound_bonus = -5 + bare_wound_bonus = 10 + custom_price = PRICE_NORMAL + +/obj/item/kitchen/efink/Initialize() + . = ..() + AddComponent(/datum/component/butchering, 80 - force, 100, force - 10) //bonus chance increases depending on force + +/obj/item/kitchen/efink/attack(mob/living/carbon/M, mob/living/carbon/user) + if(user.zone_selected == BODY_ZONE_PRECISE_EYES) + return eyestab(M,user) + else + return ..() + +/obj/item/kitchen/efink/suicide_act(mob/user) + user.visible_message(pick("[user] is slitting [user.p_their()] wrists with the [src.name]! It looks like [user.p_theyre()] trying to commit suicide.", \ + "[user] is slitting [user.p_their()] throat with the [src.name]! It looks like [user.p_theyre()] trying to commit suicide.", \ + "[user] is slitting [user.p_their()] stomach open with the [src.name]! It looks like [user.p_theyre()] trying to commit seppuku.")) + return (BRUTELOSS) + /obj/item/kitchen/knife/ritual name = "ritual knife" desc = "The unearthly energies that once powered this blade are now dormant." From 499111edf8d8d37a02975dca9915977ca9b60fb8 Mon Sep 17 00:00:00 2001 From: WanderingFox95 <75953558+WanderingFox95@users.noreply.github.com> Date: Mon, 17 May 2021 12:33:39 +0200 Subject: [PATCH 237/259] Efink --- .../autolathe_designs_medical_and_dinnerware.dm | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/code/modules/research/designs/autolathe_desings/autolathe_designs_medical_and_dinnerware.dm b/code/modules/research/designs/autolathe_desings/autolathe_designs_medical_and_dinnerware.dm index 574c7c9282..76b016e3de 100644 --- a/code/modules/research/designs/autolathe_desings/autolathe_designs_medical_and_dinnerware.dm +++ b/code/modules/research/designs/autolathe_desings/autolathe_designs_medical_and_dinnerware.dm @@ -13,6 +13,14 @@ build_path = /obj/item/kitchen/knife category = list("initial","Dinnerware") +/datum/design/efink + name = "E-Fink" + id = "efink" + build_type = AUTOLATHE | NO_PUBLIC_LATHE + materials = list(/datum/material/iron = 12000) + build_path = /obj/item/kitchen/efink + category = list("initial","Dinnerware") + /datum/design/fork name = "Fork" id = "fork" From 7cbe105061a1d8cfcb12ef1d8d36d5b919b35045 Mon Sep 17 00:00:00 2001 From: WanderingFox95 <75953558+WanderingFox95@users.noreply.github.com> Date: Mon, 17 May 2021 12:34:38 +0200 Subject: [PATCH 238/259] Efink --- code/modules/vending/dinnerware.dm | 1 + 1 file changed, 1 insertion(+) diff --git a/code/modules/vending/dinnerware.dm b/code/modules/vending/dinnerware.dm index c5b85ed61c..95fd8e04d8 100644 --- a/code/modules/vending/dinnerware.dm +++ b/code/modules/vending/dinnerware.dm @@ -7,6 +7,7 @@ /obj/item/storage/bag/tray = 8, /obj/item/kitchen/fork = 6, /obj/item/kitchen/knife = 6, + /obj/item/kitchen/efink = 2, /obj/item/kitchen/rollingpin = 4, /obj/item/kitchen/unrollingpin = 4, /obj/item/reagent_containers/food/drinks/drinkingglass = 8, From 57d22c69627ddc8d50c584777b7a9fc56d94a19f Mon Sep 17 00:00:00 2001 From: WanderingFox95 <75953558+WanderingFox95@users.noreply.github.com> Date: Mon, 17 May 2021 12:36:12 +0200 Subject: [PATCH 239/259] Typo --- .../modules/food_and_drinks/recipes/tablecraft/recipes_bread.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/food_and_drinks/recipes/tablecraft/recipes_bread.dm b/code/modules/food_and_drinks/recipes/tablecraft/recipes_bread.dm index 98a347eedd..e0eaf35353 100644 --- a/code/modules/food_and_drinks/recipes/tablecraft/recipes_bread.dm +++ b/code/modules/food_and_drinks/recipes/tablecraft/recipes_bread.dm @@ -4,7 +4,7 @@ ////////////////////////////////////////////////BREAD//////////////////////////////////////////////// /datum/crafting_recipe/food/bread - name = "Meat Slab" + name = "Bread" reqs = list( /obj/item/reagent_containers/food/snacks/breadslice/plain = 5, ) From 502092f284bed917e9149a34b5b82ca62a02840a Mon Sep 17 00:00:00 2001 From: WanderingFox95 <75953558+WanderingFox95@users.noreply.github.com> Date: Mon, 17 May 2021 12:40:37 +0200 Subject: [PATCH 240/259] changed sound path --- code/game/objects/items/kitchen.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/objects/items/kitchen.dm b/code/game/objects/items/kitchen.dm index 6abbb687a0..2e7cef2c9f 100644 --- a/code/game/objects/items/kitchen.dm +++ b/code/game/objects/items/kitchen.dm @@ -108,7 +108,7 @@ force = 10 w_class = WEIGHT_CLASS_SMALL throwforce = 10 - hitsound = 'sound/weapons/bladeslice.ogg' + hitsound = 'sound/weapons/bladesliceb.ogg' throw_speed = 3 throw_range = 6 custom_materials = list(/datum/material/iron=12000) From 15053d8064ec4e0a94c7263281dd67f70dbf06f2 Mon Sep 17 00:00:00 2001 From: WanderingFox95 <75953558+WanderingFox95@users.noreply.github.com> Date: Mon, 17 May 2021 12:41:18 +0200 Subject: [PATCH 241/259] Backwards Blade Slash. Yeah really. --- sound/weapons/bladesliceb.ogg | Bin 0 -> 9390 bytes 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 sound/weapons/bladesliceb.ogg diff --git a/sound/weapons/bladesliceb.ogg b/sound/weapons/bladesliceb.ogg new file mode 100644 index 0000000000000000000000000000000000000000..b916363acda44674bf0c62567256d2215ef25afc GIT binary patch literal 9390 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 Date: Mon, 17 May 2021 19:04:51 +0100 Subject: [PATCH 242/259] bold statement for someone who didnt test their code --- code/modules/client/preferences.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/client/preferences.dm b/code/modules/client/preferences.dm index 509a4ce114..251bcc72ad 100644 --- a/code/modules/client/preferences.dm +++ b/code/modules/client/preferences.dm @@ -2486,7 +2486,7 @@ GLOBAL_LIST_EMPTY(preferences_datums) var/limb_value = text2num(GLOB.bodypart_values[selected_limb]) features[marking_type] += list(list(limb_value, selected_marking)) else - var/datum/sprite_accessory/S = marking_list[selected_marking] + var/datum/sprite_accessory/mam_body_markings/S = marking_list[selected_marking] for(var/limb in S.covered_limbs) var/limb_value = text2num(GLOB.bodypart_values[limb]) features[marking_type] += list(list(limb_value, selected_marking)) From 780a579c7be6af83da5faf9acd94bb4606b00c93 Mon Sep 17 00:00:00 2001 From: silicons <2003111+silicons@users.noreply.github.com> Date: Mon, 17 May 2021 12:20:15 -0700 Subject: [PATCH 243/259] Update SDQL_2_wrappers.dm --- code/modules/admin/verbs/SDQL2/SDQL_2_wrappers.dm | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/code/modules/admin/verbs/SDQL2/SDQL_2_wrappers.dm b/code/modules/admin/verbs/SDQL2/SDQL_2_wrappers.dm index 4f518b7f8e..ca07f9a50b 100644 --- a/code/modules/admin/verbs/SDQL2/SDQL_2_wrappers.dm +++ b/code/modules/admin/verbs/SDQL2/SDQL_2_wrappers.dm @@ -238,3 +238,9 @@ /proc/__nan() var/list/L = json_decode("{\"value\":NaN}") return L["value"] + +/** + * Wrapper to return a copy of contents, as SDQL2 can't tell an internal list from a normal list. + */ +/atom/proc/_contents() + return contents.Copy() From 9dd372ed11c1a765626d9fd50ab6979c3596bb2e Mon Sep 17 00:00:00 2001 From: qweq12yt <45515587+qweq12yt@users.noreply.github.com> Date: Mon, 17 May 2021 17:33:23 -0300 Subject: [PATCH 244/259] fix void cloak going to the void --- code/modules/antagonists/eldritch_cult/eldritch_items.dm | 7 ++++--- code/modules/mob/living/carbon/human/examine.dm | 4 ++-- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/code/modules/antagonists/eldritch_cult/eldritch_items.dm b/code/modules/antagonists/eldritch_cult/eldritch_items.dm index 0dd9cf6bea..1f7eb4ab8b 100644 --- a/code/modules/antagonists/eldritch_cult/eldritch_items.dm +++ b/code/modules/antagonists/eldritch_cult/eldritch_items.dm @@ -218,8 +218,8 @@ flags_inv = NONE flags_cover = NONE desc = "Black like tar, doesn't reflect any light. Runic symbols line the outside, with each flash you lose comprehension of what you are seeing." - item_flags = EXAMINE_SKIP armor = list("melee" = 30, "bullet" = 30, "laser" = 30,"energy" = 30, "bomb" = 15, "bio" = 0, "rad" = 0, "fire" = 0, "acid" = 0) + obj_flags = NONE | EXAMINE_SKIP /obj/item/clothing/suit/hooded/cultrobes/void name = "void cloak" @@ -242,9 +242,10 @@ //We need to account for the hood shenanigans, and that way we can make sure items always fit, even if one of the slots is used by the fucking hood. if(suittoggled) to_chat(carbon_user,"The light shifts around you making the cloak invisible!") - else + obj_flags |= EXAMINE_SKIP + else if(obj_flags & EXAMINE_SKIP) // ensures that it won't toggle visibility if raising the hood failed to_chat(carbon_user,"The kaleidoscope of colours collapses around you, as the cloak shifts to visibility!") - item_flags = suittoggled ? EXAMINE_SKIP : ~EXAMINE_SKIP + obj_flags ^= EXAMINE_SKIP else to_chat(carbon_user,"You can't force the hood onto your head!") diff --git a/code/modules/mob/living/carbon/human/examine.dm b/code/modules/mob/living/carbon/human/examine.dm index 31ab636ceb..aa14fe6013 100644 --- a/code/modules/mob/living/carbon/human/examine.dm +++ b/code/modules/mob/living/carbon/human/examine.dm @@ -41,10 +41,10 @@ . += "[t_He] [t_is] wearing [w_uniform.get_examine_string(user)][accessory_msg]." //head - if(head && !(head.item_flags & EXAMINE_SKIP)) + if(head && !(head.obj_flags & EXAMINE_SKIP)) . += "[t_He] [t_is] wearing [head.get_examine_string(user)] on [t_his] head." //suit/armor - if(wear_suit && !(wear_suit.item_flags & EXAMINE_SKIP)) + if(wear_suit && !(wear_suit.obj_flags & EXAMINE_SKIP)) . += "[t_He] [t_is] wearing [wear_suit.get_examine_string(user)]." //suit/armor storage if(s_store && !(SLOT_S_STORE in obscured)) From ba20b5b8aa3332b2550c21f465ab43b83446f971 Mon Sep 17 00:00:00 2001 From: qweq12yt <45515587+qweq12yt@users.noreply.github.com> Date: Mon, 17 May 2021 18:48:01 -0300 Subject: [PATCH 245/259] fix emag shuttle order --- code/game/machinery/computer/communications.dm | 1 + .../mob/living/simple_animal/hostile/megafauna/bubblegum.dm | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/code/game/machinery/computer/communications.dm b/code/game/machinery/computer/communications.dm index 048247c630..d49b4e54b4 100755 --- a/code/game/machinery/computer/communications.dm +++ b/code/game/machinery/computer/communications.dm @@ -83,6 +83,7 @@ authorize_access = get_all_accesses() to_chat(user, "You scramble the communication routing circuits!") playsound(src, 'sound/machines/terminal_alert.ogg', 50, FALSE) + SSshuttle.shuttle_purchase_requirements_met["emagged"] = TRUE return /obj/machinery/computer/communications/ui_act(action, list/params) diff --git a/code/modules/mob/living/simple_animal/hostile/megafauna/bubblegum.dm b/code/modules/mob/living/simple_animal/hostile/megafauna/bubblegum.dm index b1441ce55f..5305813ebf 100644 --- a/code/modules/mob/living/simple_animal/hostile/megafauna/bubblegum.dm +++ b/code/modules/mob/living/simple_animal/hostile/megafauna/bubblegum.dm @@ -134,7 +134,7 @@ Difficulty: Hard /mob/living/simple_animal/hostile/megafauna/bubblegum/grant_achievement(medaltype,scoretype) . = ..() if(.) - SSshuttle.shuttle_purchase_requirements_met |= "bubblegum" + SSshuttle.shuttle_purchase_requirements_met["bubblegum"] = TRUE /mob/living/simple_animal/hostile/megafauna/bubblegum/do_attack_animation(atom/A, visual_effect_icon, obj/item/used_item, no_effect) if(!charging) From 79051c3e8ea97944d420cfbe44ce861ff4664a70 Mon Sep 17 00:00:00 2001 From: Changelogs Date: Tue, 18 May 2021 00:30:35 +0000 Subject: [PATCH 246/259] Automatic changelog compile [ci skip] --- html/changelog.html | 27 --------------------------- 1 file changed, 27 deletions(-) diff --git a/html/changelog.html b/html/changelog.html index 28f6ffcad4..72efb6aa06 100644 --- a/html/changelog.html +++ b/html/changelog.html @@ -754,33 +754,6 @@
    • speech panel added to main menu customization
    - -

    16 March 2021

    -

    GrayRachnid updated:

    -
      -
    • removed red toolbox, agent id, and guerilla gloves from unlocking illegal tech.
    • -
    -

    HeroWithYay updated:

    -
      -
    • fixed spelling error
    • -
    -

    LetterN updated:

    -
      -
    • Borg light icons not turning off
    • -
    • Double ai icon select + Fixes ai core not having icons
    • -
    • Missing air tank icon
    • -
    • Computer boards being dumb and nullspacing/qdeling itself
    • -
    -

    Putnam3145 updated:

    -
      -
    • Supernova now much lower chance to be inconsequential
    • -
    • Made hyper-nob's point values way lower (25/20 for science/cargo instead of 1000/1000)
    • -
    • Made nitryl's cargo sell value less (10 instead of 30)
    • -
    -

    SandPoot updated:

    -
      -
    • Fixed interacting with telecomms.
    • -
    GoonStation 13 Development Team From 66a72015395d8a070635b9e1e1ed903f86f38920 Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Tue, 18 May 2021 17:44:27 -0500 Subject: [PATCH 247/259] Automatic changelog generation for PR #14726 [ci skip] --- html/changelogs/AutoChangeLog-pr-14726.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-14726.yml diff --git a/html/changelogs/AutoChangeLog-pr-14726.yml b/html/changelogs/AutoChangeLog-pr-14726.yml new file mode 100644 index 0000000000..dab1c57bed --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-14726.yml @@ -0,0 +1,4 @@ +author: "zeroisthebiggay" +delete-after: True +changes: + - rscadd: "New Alcohol Amaretto and various cocktails" From a515911b07c264b9e8a034bddf3ebb6190c9af70 Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Tue, 18 May 2021 17:44:38 -0500 Subject: [PATCH 248/259] Automatic changelog generation for PR #14727 [ci skip] --- html/changelogs/AutoChangeLog-pr-14727.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-14727.yml diff --git a/html/changelogs/AutoChangeLog-pr-14727.yml b/html/changelogs/AutoChangeLog-pr-14727.yml new file mode 100644 index 0000000000..2a2ef30e21 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-14727.yml @@ -0,0 +1,4 @@ +author: "zeroisthebiggay" +delete-after: True +changes: + - rscadd: "more drink mixture flavortext" From d0c20597f15f1cdda65f0b5d0915bf6a2c50538b Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Tue, 18 May 2021 18:09:00 -0500 Subject: [PATCH 249/259] Automatic changelog generation for PR #14731 [ci skip] --- html/changelogs/AutoChangeLog-pr-14731.yml | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-14731.yml diff --git a/html/changelogs/AutoChangeLog-pr-14731.yml b/html/changelogs/AutoChangeLog-pr-14731.yml new file mode 100644 index 0000000000..c75c4b78a5 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-14731.yml @@ -0,0 +1,6 @@ +author: "WanderingFox95" +delete-after: True +changes: + - rscadd: "The E-Fink, a mending tool for food." + - soundadd: "A backwards bladeslice. (Yes, for the E-fink)" + - imageadd: "And Icons for the E-fink, of course." From 5fb4cb200354339430c29f71ae7e00626b1bd299 Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Tue, 18 May 2021 18:09:07 -0500 Subject: [PATCH 250/259] Automatic changelog generation for PR #14730 [ci skip] --- html/changelogs/AutoChangeLog-pr-14730.yml | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-14730.yml diff --git a/html/changelogs/AutoChangeLog-pr-14730.yml b/html/changelogs/AutoChangeLog-pr-14730.yml new file mode 100644 index 0000000000..6214e6d087 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-14730.yml @@ -0,0 +1,5 @@ +author: "shellspeed1" +delete-after: True +changes: + - rscadd: "Survival pods can now be designated as requiring power. Survival pods with this feature should include an APC when created and will run out of power rather quickly if no source is added. Perfect for true emergencies." + - rscadd: "An empty survival pod has been added to the mining vendor. This is an extremely barebones pod featuring only a gps, table, apc, and the standard fridge for some donk pockets." From d4b9c514a16301a094c52c41135d3c62ba55db72 Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Tue, 18 May 2021 18:09:16 -0500 Subject: [PATCH 251/259] Automatic changelog generation for PR #14725 [ci skip] --- html/changelogs/AutoChangeLog-pr-14725.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-14725.yml diff --git a/html/changelogs/AutoChangeLog-pr-14725.yml b/html/changelogs/AutoChangeLog-pr-14725.yml new file mode 100644 index 0000000000..e3a434ac87 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-14725.yml @@ -0,0 +1,4 @@ +author: "zeroisthebiggay" +delete-after: True +changes: + - soundadd: "you're going to Baystation" From fc31453587135881d557cd42c6a4943bcedbc13e Mon Sep 17 00:00:00 2001 From: Putnam Date: Tue, 18 May 2021 16:27:07 -0700 Subject: [PATCH 252/259] Makes antags actually get activity properly --- code/modules/antagonists/_common/antag_datum.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/antagonists/_common/antag_datum.dm b/code/modules/antagonists/_common/antag_datum.dm index 93b2e20271..ba3d8106ef 100644 --- a/code/modules/antagonists/_common/antag_datum.dm +++ b/code/modules/antagonists/_common/antag_datum.dm @@ -111,7 +111,7 @@ GLOBAL_LIST_EMPTY(antagonists) var/datum/skill_modifier/job/M = GLOB.skill_modifiers[GET_SKILL_MOD_ID(A, type)] if(istype(M)) M.name = "[name] Training" - owner.AddComponent(/datum/component/activity) + owner.current.AddComponent(/datum/component/activity) SEND_SIGNAL(owner.current, COMSIG_MOB_ANTAG_ON_GAIN, src) /datum/antagonist/proc/is_banned(mob/M) From d2c947c41449424989de1487718ccf60e4eaf1c0 Mon Sep 17 00:00:00 2001 From: Changelogs Date: Wed, 19 May 2021 00:27:25 +0000 Subject: [PATCH 253/259] Automatic changelog compile [ci skip] --- html/changelog.html | 31 +++++++++++++--------- html/changelogs/.all_changelog.yml | 16 +++++++++++ html/changelogs/AutoChangeLog-pr-14725.yml | 4 --- html/changelogs/AutoChangeLog-pr-14726.yml | 4 --- html/changelogs/AutoChangeLog-pr-14727.yml | 4 --- html/changelogs/AutoChangeLog-pr-14730.yml | 5 ---- html/changelogs/AutoChangeLog-pr-14731.yml | 6 ----- 7 files changed, 35 insertions(+), 35 deletions(-) delete mode 100644 html/changelogs/AutoChangeLog-pr-14725.yml delete mode 100644 html/changelogs/AutoChangeLog-pr-14726.yml delete mode 100644 html/changelogs/AutoChangeLog-pr-14727.yml delete mode 100644 html/changelogs/AutoChangeLog-pr-14730.yml delete mode 100644 html/changelogs/AutoChangeLog-pr-14731.yml diff --git a/html/changelog.html b/html/changelog.html index 72efb6aa06..d5472f772f 100644 --- a/html/changelog.html +++ b/html/changelog.html @@ -50,6 +50,25 @@ -->
    +

    19 May 2021

    +

    WanderingFox95 updated:

    +
      +
    • The E-Fink, a mending tool for food.
    • +
    • A backwards bladeslice. (Yes, for the E-fink)
    • +
    • And Icons for the E-fink, of course.
    • +
    +

    shellspeed1 updated:

    +
      +
    • Survival pods can now be designated as requiring power. Survival pods with this feature should include an APC when created and will run out of power rather quickly if no source is added. Perfect for true emergencies.
    • +
    • An empty survival pod has been added to the mining vendor. This is an extremely barebones pod featuring only a gps, table, apc, and the standard fridge for some donk pockets.
    • +
    +

    zeroisthebiggay updated:

    +
      +
    • New Alcohol Amaretto and various cocktails
    • +
    • more drink mixture flavortext
    • +
    • you're going to Baystation
    • +
    +

    15 May 2021

    bunny232 updated:

      @@ -742,18 +761,6 @@
    • Hypospray vials are now printable from the medical techshift start.
    • Empty hypospray kits are now printable behind biological technology. tweak: Quantum electromag (T4 lasers) are now behind Advanced Bluespace like the rest of T4.
    - -

    17 March 2021

    -

    KeRSedChaplain updated:

    -
      -
    • Added three new rites, and makes soul vessels obtainable
    • -
    • fixes clockwork guardians inheriting marauders blocking
    • -
    • added sounds for the ratvar end sequence, voiced by @dzahlus
    • -
    -

    timothyteakettle updated:

    -
      -
    • speech panel added to main menu customization
    • -
    GoonStation 13 Development Team diff --git a/html/changelogs/.all_changelog.yml b/html/changelogs/.all_changelog.yml index 7cdad77414..e9414f5d03 100644 --- a/html/changelogs/.all_changelog.yml +++ b/html/changelogs/.all_changelog.yml @@ -29307,3 +29307,19 @@ DO NOT EDIT THIS FILE BY HAND! AUTOMATICALLY GENERATED BY ss13_genchangelog.py. timothyteakettle: - balance: borg spraycans have a five second delay before being able to knock someone down again +2021-05-19: + WanderingFox95: + - rscadd: The E-Fink, a mending tool for food. + - soundadd: A backwards bladeslice. (Yes, for the E-fink) + - imageadd: And Icons for the E-fink, of course. + shellspeed1: + - rscadd: Survival pods can now be designated as requiring power. Survival pods + with this feature should include an APC when created and will run out of power + rather quickly if no source is added. Perfect for true emergencies. + - rscadd: An empty survival pod has been added to the mining vendor. This is an + extremely barebones pod featuring only a gps, table, apc, and the standard fridge + for some donk pockets. + zeroisthebiggay: + - rscadd: New Alcohol Amaretto and various cocktails + - rscadd: more drink mixture flavortext + - soundadd: you're going to Baystation diff --git a/html/changelogs/AutoChangeLog-pr-14725.yml b/html/changelogs/AutoChangeLog-pr-14725.yml deleted file mode 100644 index e3a434ac87..0000000000 --- a/html/changelogs/AutoChangeLog-pr-14725.yml +++ /dev/null @@ -1,4 +0,0 @@ -author: "zeroisthebiggay" -delete-after: True -changes: - - soundadd: "you're going to Baystation" diff --git a/html/changelogs/AutoChangeLog-pr-14726.yml b/html/changelogs/AutoChangeLog-pr-14726.yml deleted file mode 100644 index dab1c57bed..0000000000 --- a/html/changelogs/AutoChangeLog-pr-14726.yml +++ /dev/null @@ -1,4 +0,0 @@ -author: "zeroisthebiggay" -delete-after: True -changes: - - rscadd: "New Alcohol Amaretto and various cocktails" diff --git a/html/changelogs/AutoChangeLog-pr-14727.yml b/html/changelogs/AutoChangeLog-pr-14727.yml deleted file mode 100644 index 2a2ef30e21..0000000000 --- a/html/changelogs/AutoChangeLog-pr-14727.yml +++ /dev/null @@ -1,4 +0,0 @@ -author: "zeroisthebiggay" -delete-after: True -changes: - - rscadd: "more drink mixture flavortext" diff --git a/html/changelogs/AutoChangeLog-pr-14730.yml b/html/changelogs/AutoChangeLog-pr-14730.yml deleted file mode 100644 index 6214e6d087..0000000000 --- a/html/changelogs/AutoChangeLog-pr-14730.yml +++ /dev/null @@ -1,5 +0,0 @@ -author: "shellspeed1" -delete-after: True -changes: - - rscadd: "Survival pods can now be designated as requiring power. Survival pods with this feature should include an APC when created and will run out of power rather quickly if no source is added. Perfect for true emergencies." - - rscadd: "An empty survival pod has been added to the mining vendor. This is an extremely barebones pod featuring only a gps, table, apc, and the standard fridge for some donk pockets." diff --git a/html/changelogs/AutoChangeLog-pr-14731.yml b/html/changelogs/AutoChangeLog-pr-14731.yml deleted file mode 100644 index c75c4b78a5..0000000000 --- a/html/changelogs/AutoChangeLog-pr-14731.yml +++ /dev/null @@ -1,6 +0,0 @@ -author: "WanderingFox95" -delete-after: True -changes: - - rscadd: "The E-Fink, a mending tool for food." - - soundadd: "A backwards bladeslice. (Yes, for the E-fink)" - - imageadd: "And Icons for the E-fink, of course." From 3a28e8a7edaf929eaf88bae588ac70190307e3c9 Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Wed, 19 May 2021 09:03:02 -0500 Subject: [PATCH 254/259] Automatic changelog generation for PR #14653 [ci skip] --- html/changelogs/AutoChangeLog-pr-14653.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-14653.yml diff --git a/html/changelogs/AutoChangeLog-pr-14653.yml b/html/changelogs/AutoChangeLog-pr-14653.yml new file mode 100644 index 0000000000..4e8652eaf6 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-14653.yml @@ -0,0 +1,4 @@ +author: "timothyteakettle" +delete-after: True +changes: + - rscadd: "ports rp's marking system" From a8b5484b48c93e8781ecc7740b4fa99e00cabfd9 Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Wed, 19 May 2021 14:49:03 -0500 Subject: [PATCH 255/259] Automatic changelog generation for PR #14733 [ci skip] --- html/changelogs/AutoChangeLog-pr-14733.yml | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-14733.yml diff --git a/html/changelogs/AutoChangeLog-pr-14733.yml b/html/changelogs/AutoChangeLog-pr-14733.yml new file mode 100644 index 0000000000..807a92d285 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-14733.yml @@ -0,0 +1,5 @@ +author: "qweq12yt" +delete-after: True +changes: + - bugfix: "Fixed void cloak voiding itself into oblivion." + - bugfix: "You can now order emag shuttles again." From f3024d48ea5e5b83855a4c08bb29b9b5cbf5e582 Mon Sep 17 00:00:00 2001 From: Changelogs Date: Thu, 20 May 2021 00:27:46 +0000 Subject: [PATCH 256/259] Automatic changelog compile [ci skip] --- html/changelog.html | 22 +++++++++++----------- html/changelogs/.all_changelog.yml | 6 ++++++ html/changelogs/AutoChangeLog-pr-14653.yml | 4 ---- html/changelogs/AutoChangeLog-pr-14733.yml | 5 ----- 4 files changed, 17 insertions(+), 20 deletions(-) delete mode 100644 html/changelogs/AutoChangeLog-pr-14653.yml delete mode 100644 html/changelogs/AutoChangeLog-pr-14733.yml diff --git a/html/changelog.html b/html/changelog.html index d5472f772f..19aaf87564 100644 --- a/html/changelog.html +++ b/html/changelog.html @@ -50,6 +50,17 @@ -->
    +

    20 May 2021

    +

    qweq12yt updated:

    +
      +
    • Fixed void cloak voiding itself into oblivion.
    • +
    • You can now order emag shuttles again.
    • +
    +

    timothyteakettle updated:

    +
      +
    • ports rp's marking system
    • +
    +

    19 May 2021

    WanderingFox95 updated:

      @@ -750,17 +761,6 @@
      • fixes spriteless heretic book
      - -

      18 March 2021

      -

      Arturlang updated:

      -
        -
      • Combat mode right click and right click verb give's are now actualyl targeted
      • -
      -

      Hatterhat updated:

      -
        -
      • Hypospray vials are now printable from the medical techshift start.
      • -
      • Empty hypospray kits are now printable behind biological technology. tweak: Quantum electromag (T4 lasers) are now behind Advanced Bluespace like the rest of T4.
      • -
    GoonStation 13 Development Team diff --git a/html/changelogs/.all_changelog.yml b/html/changelogs/.all_changelog.yml index e9414f5d03..4bf762d148 100644 --- a/html/changelogs/.all_changelog.yml +++ b/html/changelogs/.all_changelog.yml @@ -29323,3 +29323,9 @@ DO NOT EDIT THIS FILE BY HAND! AUTOMATICALLY GENERATED BY ss13_genchangelog.py. - rscadd: New Alcohol Amaretto and various cocktails - rscadd: more drink mixture flavortext - soundadd: you're going to Baystation +2021-05-20: + qweq12yt: + - bugfix: Fixed void cloak voiding itself into oblivion. + - bugfix: You can now order emag shuttles again. + timothyteakettle: + - rscadd: ports rp's marking system diff --git a/html/changelogs/AutoChangeLog-pr-14653.yml b/html/changelogs/AutoChangeLog-pr-14653.yml deleted file mode 100644 index 4e8652eaf6..0000000000 --- a/html/changelogs/AutoChangeLog-pr-14653.yml +++ /dev/null @@ -1,4 +0,0 @@ -author: "timothyteakettle" -delete-after: True -changes: - - rscadd: "ports rp's marking system" diff --git a/html/changelogs/AutoChangeLog-pr-14733.yml b/html/changelogs/AutoChangeLog-pr-14733.yml deleted file mode 100644 index 807a92d285..0000000000 --- a/html/changelogs/AutoChangeLog-pr-14733.yml +++ /dev/null @@ -1,5 +0,0 @@ -author: "qweq12yt" -delete-after: True -changes: - - bugfix: "Fixed void cloak voiding itself into oblivion." - - bugfix: "You can now order emag shuttles again." From 743a4f02d69860009118fe18bd0f7ace83ca4270 Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Thu, 20 May 2021 13:33:53 -0500 Subject: [PATCH 257/259] Automatic changelog generation for PR #14738 [ci skip] --- html/changelogs/AutoChangeLog-pr-14738.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-14738.yml diff --git a/html/changelogs/AutoChangeLog-pr-14738.yml b/html/changelogs/AutoChangeLog-pr-14738.yml new file mode 100644 index 0000000000..5c51f8929b --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-14738.yml @@ -0,0 +1,4 @@ +author: "Putnam3145" +delete-after: True +changes: + - bugfix: "Fixed activity being attached to minds instead of mobs on antag attach." From 7fe075873ce53ed75057a970d581f25d5470c01b Mon Sep 17 00:00:00 2001 From: Changelogs Date: Fri, 21 May 2021 00:28:37 +0000 Subject: [PATCH 258/259] Automatic changelog compile [ci skip] --- html/changelog.html | 37 ++++------------------ html/changelogs/.all_changelog.yml | 3 ++ html/changelogs/AutoChangeLog-pr-14738.yml | 4 --- 3 files changed, 9 insertions(+), 35 deletions(-) delete mode 100644 html/changelogs/AutoChangeLog-pr-14738.yml diff --git a/html/changelog.html b/html/changelog.html index 19aaf87564..c41322865b 100644 --- a/html/changelog.html +++ b/html/changelog.html @@ -50,6 +50,12 @@ -->
    +

    21 May 2021

    +

    Putnam3145 updated:

    +
      +
    • Fixed activity being attached to minds instead of mobs on antag attach.
    • +
    +

    20 May 2021

    qweq12yt updated:

      @@ -730,37 +736,6 @@
      • Bluespace beaker filling icons for that narrow band between 90 and 80% full now actually exist.
      - -

      19 March 2021

      -

      DeltaFire15 updated:

      -
        -
      • Bluespace jars can no longer be printed / acquired from lathes / techwebs. tweak: The travelling animal trader now gives you your reward in a one-use bluespace jar.
      • -
      -

      Putnam3145 updated:

      -
        -
      • "Antag" role that can be toggled to disable all antags
      • -
      -

      SandPoot updated:

      -
        -
      • Tactitool Skirtleneck.
      • -
      • Adds the tactitool skirtleneck to the loadout.
      • -
      -

      kiwedespars updated:

      -
        -
      • New heretic path - Path of Void- it specializes in being extremely stealthy. tweak : Removed curse of blindness replaced with mask of madness. hey it even rhymes.
      • -
      • fixes heretic mass deletion during transmutation bug.
      • -
      • Fixes heretic brews being permanent.
      • -
      • Fixes void storm breaking after resurrecting. tweak: Heretic has received a minor textual facelift. tweak: Heretics who finish the Void Path and become an Aristocrat of the Void can now survive in the Void (space).
      • -
      • Heretics who research Aristocrats Way on the Void Path will no longer suffocate in their own storm when they ascend (no longer breathes).
      • -
      • Mark of Void and Seeking Blade are once again exclusive only to Void.
      • -
      • Carving knife now deals more damage on throw and can embed in your enemies. tweak: Grasp of Rust only rusts floors and machines on harm intent. tweak: when u choose a sac target as heretic it ll also tell the job of the sac
      • -
      • 2 new void spells, one a placeholder.
      • -
      • flesh mansus grasp buffed, now gives you 5u eldritch fluid when hitting someone.
      • -
      -

      zeroisthebiggay updated:

      -
        -
      • fixes spriteless heretic book
      • -
    GoonStation 13 Development Team diff --git a/html/changelogs/.all_changelog.yml b/html/changelogs/.all_changelog.yml index 4bf762d148..135e6db518 100644 --- a/html/changelogs/.all_changelog.yml +++ b/html/changelogs/.all_changelog.yml @@ -29329,3 +29329,6 @@ DO NOT EDIT THIS FILE BY HAND! AUTOMATICALLY GENERATED BY ss13_genchangelog.py. - bugfix: You can now order emag shuttles again. timothyteakettle: - rscadd: ports rp's marking system +2021-05-21: + Putnam3145: + - bugfix: Fixed activity being attached to minds instead of mobs on antag attach. diff --git a/html/changelogs/AutoChangeLog-pr-14738.yml b/html/changelogs/AutoChangeLog-pr-14738.yml deleted file mode 100644 index 5c51f8929b..0000000000 --- a/html/changelogs/AutoChangeLog-pr-14738.yml +++ /dev/null @@ -1,4 +0,0 @@ -author: "Putnam3145" -delete-after: True -changes: - - bugfix: "Fixed activity being attached to minds instead of mobs on antag attach." From 310dd7129ef1c8928f08c55d73aacfbbb2ee17d2 Mon Sep 17 00:00:00 2001 From: Changelogs Date: Sat, 22 May 2021 00:28:44 +0000 Subject: [PATCH 259/259] Automatic changelog compile [ci skip] --- html/changelog.html | 6 ------ 1 file changed, 6 deletions(-) diff --git a/html/changelog.html b/html/changelog.html index c41322865b..e2d94f4eb5 100644 --- a/html/changelog.html +++ b/html/changelog.html @@ -730,12 +730,6 @@
    • using the puddle ability when stunned wont break it
    - -

    20 March 2021

    -

    Hatterhat updated:

    -
      -
    • Bluespace beaker filling icons for that narrow band between 90 and 80% full now actually exist.
    • -
    GoonStation 13 Development Team
    [marking_list[2]] - [actual_name] ˄ ˅ X [color_marking_dat]

fkYT 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 diff --git a/sound/announcer/classic/aimalf.ogg b/sound/announcer/classic/aimalf.ogg index b7996916b4750ea73b7c5a7996005e8845b6419b..cd74872c6614cdd69330638229ee4c35f4617264 100644 GIT binary patch literal 241608 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®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